/* 全局样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Noto Serif SC', 'Microsoft YaHei', serif;
}

body {
    background-color: #f9f5f0;
    color: #333;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 排版 */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    color: #8b5a2b;
}
h2 {
    font-size: clamp(22px, 4vw, 30px);
}

h3 {
    font-size: clamp(18px, 3vw, 24px);
}

p {
    margin-bottom: 15px;
}

a {
    text-decoration: none;
    color: #8b5a2b;
    transition: color 0.3s;
}

a:hover {
    color: #d4a373;
}

/* 按钮样式 */
.btn {
    display: inline-block;
    background-color: #d4a373;
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background-color: #8b5a2b;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btn.small {
    padding: 8px 20px;
    font-size: 14px;
}

/* 导航栏 */
header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #8b5a2b;
}

.logo span {
    color: #d4a373;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
}

.nav-links a:hover, .nav-links a.active {
    color: #d4a373;
}

.hamburger {
    display: none;
    cursor: pointer;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 5px 0;
    transition: all 0.3s;
}

/* 英雄区域 */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/main-background3.jpg');
    background-size: cover;
    background-position: center;
    height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
}
.hero h1 {
    font-size: clamp(30px, 5vw, 48px); 
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    color:white
}

.hero p {
    font-size: clamp(16px, 2.5vw, 20px);
    max-width: 700px;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* 内容区域共用样式 */
.section-title {
    font-size: clamp(24px, 5vw, 36px); 
    margin-bottom: 20px;
    text-align: center;
}

.section-subtitle {
    font-size: 20px;
    color: #666;
    margin-bottom: 50px;
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.light-bg {
    background-color: #f1e8e0;
}

/* 关于我们 */
.about-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 50px;
    flex-wrap: wrap; 
    gap: 40px; 
}

.about-text {
    flex: 1 1 400px; 
    min-width: 300px; 
    padding-right: 0;
}

.about-image {
    flex: 1 1 400px; 
    min-width: 300px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* 服务卡片 */
.services-intro {
    padding-top: 50px;
    text-align: center;
}
.service-content, .company-content, .career-content {
    display: flex;
    align-items: center;
    margin-bottom: 50px;
    flex-wrap: wrap; 
    gap: 30px; 
}

.service-text, .service-image, 
.company-text, .company-image,
.career-text, .career-image {
    flex: 1 1 400px; 
    min-width: 300px; 
    padding: 0 !important; 
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-content {
    padding: 20px;
}

.service-title {
    font-size: 22px;
    margin-bottom: 10px;
    color: #8b5a2b;
}

/* 节气卡片 */
.season-card {
    background: linear-gradient(135deg, #f8edeb, #fae1dd);
    border-radius: 10px;
    padding: 40px;
    margin-top: 50px;
    display: flex;
    align-items: center;
    text-align: left;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.season-info {
    flex: 2;
    padding-right: 40px;
}

.season-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.season-image img {
    width: 100%;
    height: auto;
    display: block;
}

.season-name {
    font-size: 32px;
    color: #d4a373;
    margin-bottom: 20px;
}

.season-date {
    font-size: 18px;
    color: #666;
    margin-bottom: 20px;
}
.recipe-card .btn {
    display: none;
}
.season-item .btn {
    display: none;
}
.intro-section {
    padding: 30px 0px; 
}

/* 联系表单 */
.contact-info {
    display: flex;
    justify-content: space-between;
    margin-top: 50px;
}

.contact-form {
    flex: 1;
    padding-right: 50px;
}
.consulting-detail-image {
    
    flex: 1 1 400px;    
    min-width: 300px;   
    
    height: auto; 
    
    /* 装飾：角丸と影 */
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    padding: 0; 
}

.consulting-detail-image img {
    width: 100%;
    height: auto; /* 比率を維持 */
    display: block;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ホバー時の拡大エフェクト */
.service-content:hover .consulting-detail-image img {
    transform: scale(1.05);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: #d4a373;
    outline: none;
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

.contact-details {
    flex: 1;
    background-color: #f9f5f0;
    padding: 40px;
    border-radius: 10px;
}

.contact-details h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #8b5a2b;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.contact-item i {
    margin-right: 15px;
    color: #d4a373;
    font-size: 20px;
}

/* 页脚 */
footer {
    background-color: #8b5a2b;
    color: white;
    padding: 50px 0 20px;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.footer-links a {
    color: white;
    margin: 0 15px;
}

.footer-links a:hover {
    text-decoration: underline;
}

.social-links {
    margin-bottom: 30px;
}

.social-links a {
    display: inline-block;
    margin: 0 10px;
    color: white;
    font-size: 20px;
    transition: transform 0.3s;
}

.social-links a:hover {
    transform: translateY(-3px);
}

.copyright {
    font-size: 14px;
    opacity: 0.8;
}

/* 咨询服务页面特定样式 */
.service-section {
    padding: 50px 0;
}

.service-content {
    display: flex;
    align-items: center;
    margin-bottom: 50px;
}

.service-content.reversed {
    flex-direction: row-reverse;
}

.service-text {
    flex: 1;
    padding: 0 50px;
}
.service-image {
    height: 300px;
    overflow: hidden;
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.service-image img {
    width: 100%;
    height: auto;
    display: block;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.testimonial {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.quote {
    font-style: italic;
    margin-bottom: 20px;
}

.client {
    display: flex;
    align-items: center;
}

.client img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 15px;
    object-fit: cover;
}

.steps {
    display: flex;
    justify-content: space-between;
    margin-top: 50px;
    flex-wrap: wrap;
}

.step {
    flex: 1;
    min-width: 150px;
    text-align: center;
    margin: 10px;
    padding: 20px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: #d4a373;
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    font-weight: bold;
    margin: 0 auto 15px;
}

.cta {
    text-align: center;
    margin-top: 50px;
    padding: 40px;
    background-color: #8b5a2b;
    color: white;
    border-radius: 10px;
}

.cta h3 {
    margin-bottom: 20px;
    font-size: 24px;
}

/* 关于我们页面特定样式 */
.company-content {
    display: flex;
    align-items: flex-start;
    margin-bottom: 50px;
}

.company-text {
    flex: 1;
    padding-right: 50px;
}

.company-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.company-image img {
    width: 100%;
    height: auto;
    display: block;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.value {
    text-align: center;
    padding: 30px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.value:hover {
    transform: translateY(-10px);
}

.value i {
    font-size: 40px;
    color: #d4a373;
    margin-bottom: 20px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.team-member {
    background-color: white;
    padding: 30px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.team-member img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
}

.title {
    color: #d4a373;
    font-weight: 500;
    margin-bottom: 15px;
}

.stats {
    display: flex;
    justify-content: space-around;
    margin-top: 50px;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
    margin: 20px;
}

.number {
    font-size: 48px;
    font-weight: bold;
    color: #8b5a2b;
    display: block;
    margin-bottom: 10px;
}

.partner-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 50px;
}

.partner-logos img {
    max-width: 150px;
    margin: 20px;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s;
}

.partner-logos img:hover {
    filter: grayscale(0);
    opacity: 1;
}

.career-content {
    display: flex;
    align-items: center;
}

.career-text {
    flex: 1;
    padding-right: 50px;
}

.open-positions {
    margin: 30px 0;
}

.open-positions li {
    margin-bottom: 20px;
    list-style: none;
}

.open-positions h4 {
    margin-bottom: 5px;
}

.career-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.career-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* 联系我们页面特定样式 */
.contact{
    padding-bottom:30px;
}
.contact-form h2 {
    margin-bottom: 30px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.info-item i {
    font-size: 24px;
    color: #d4a373;
    margin-right: 15px;
    margin-top: 5px;
}

.social-media {
    margin-top: 40px;
}

.social-media h3 {
    margin-bottom: 15px;
}

.map {
    margin-top: 50px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.faq-container {
    max-width: 800px;
    margin: 50px auto 0;
}

.faq-item {
    margin-bottom: 15px;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.faq-question {
    width: 100%;
    padding: 20px;
    text-align: left;
    background-color: white;
    border: none;
    cursor: pointer;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question i {
    transition: transform 0.3s;
}

.faq-question.active i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 20px;
    background-color: white;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-answer p {
    padding: 20px 0;
}

/* 节气料理页面特定样式 */
.season-tabs {
    display: flex;
    justify-content: center;
    margin: 50px 0;
}

.tab-btn {
    padding: 10px 20px;
    margin: 0 10px;
    background-color: #f1e8e0;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

.tab-btn:hover, .tab-btn.active {
    background-color: #d4a373;
    color: white;
}

.season-content {
    display: none;
}

.season-content.active {
    display: block;
}

.season-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.season-item {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.seasonal-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.seasonal-image img {
    width: 100%;
    height: auto;
    display: block;
}

.recipes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.recipe-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.recipe-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.recipe-card h3 {
    margin: 20px 20px 10px;
}

.recipe-card p {
    margin: 0 20px 20px;
    color: #666;
}
/* 我妈介绍 */
.mymom {
  display: flex;
  flex-wrap: wrap; /* 自動折り返し */
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding: 40px 0;
}

.mymom-right {
  flex: 1 1 300px; 
  display: flex;
  justify-content: center;
}

.mymom-right img {
  width: 100%;
  max-width: 350px; 
  height: auto;
  border-radius: 10px; 
}
.contact-section {
    padding-bottom: 30px;
}
.contact-content {
    display: flex;
    flex-wrap: wrap; 
    gap: 50px;      
    justify-content: space-between;
}
.contact-form, 
.contact-content .contact-info {
    flex: 1 1 400px; 
    width: 100%;     
    display: block;  
    margin-top: 0;   
}
.contact-form {
    flex: 999 1 400px; 
}