body{
    margin: 0;
    padding: 0;
    font-family: 'Noto Sans JP', sans-serif;
    background-color: #f5f5f5;
    color: #333;
}
h1, h2, h3, .logo, .nav-list a, .keywords, .step-num, .footer-logo{
    font-family: 'Inter', sans-serif;
}

/*共通の最大幅設定追加*/
.concept-inner,
.steps-inner,
.voices-inner,
.message-inner{
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 1.5rem;
}
.section-title{
    margin-bottom: 5rem;
}
p label option button{
    font-family: 'Noto Sans JP', sans-serif;
}
/*ヘッダー*/
.header{
    padding: 0 1.5rem;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 5;
    background: transparent;
    padding: 0.5rem 1rem;
}
.header-inner{
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 50px;
}
header .logo{
    font-size: 2rem;
    font-weight: bold;
    color: #2e7d32;
}
.nav-list{
    display: flex;
    list-style: none;
    gap: 1rem;
    padding-right: 35px;
}
.nav-list a{
    text-decoration: none;
    color: #ccc;
    font-size: 0.85rem;
}
.nav-list a:hover{
    color: #2e7d32;
}

@media screen and (min-width: 768px) {
    .nav-list{
        gap:2rem;
    }
    .nav-list a{
        font-size: 1rem;
    }
}

/*ヒーローセクション*/
.hero{
    height: 100vh;
    background-image: url(../img/hero3.jpg);
    background-size: contain;
      background-size: cover;
  background-repeat: no-repeat;
  background-position: center;

    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 1rem;
    z-index: 11;
}
.hero-inner{
    max-width: 500px;
}
.logo{
    font-size: 5rem;
    text-shadow: 5px 5px 6px rgba(0,0,0,0.15);
    font-weight: bold;
    margin-bottom: 1rem;
    color: #2e7d32;
}
.catch{
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color:#fff;
}
.btn{
    display: inline-block;
    padding: 0.8rem 2rem;
    background-color: #81c784;
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-size: 1rem;
    transition: background-color 0.3s;
}
.btn:hover{
    background-color: #66bb6a;
}

/*コンセプトセクション*/
.products{
    text-align: center;
}
.concept{
    background-color: #fff;
    padding:4rem 1.5rem;
    text-align: center;
}
.concept-title{
    font-size: 1.8rem;
    color:#2e7d32;
    margin-bottom: 1.5rem;
}
.concept-text{
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    color:#555;
}
.keywords{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}
.keywords span{
    background-color: #e0f2f1;
    color:#2e7d32;
    padding:0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.95rem;
    font-weight: 500;
}

/*商品紹介セクション*/
.products-inner {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
    width: 100%;
    max-width: 1000px;
}

.product-card {
    background: #fff;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    width: 100%; 
    max-width: 300px;
}

.product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
}

@media screen and (min-width: 768px) {
  .products-inner {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
    gap: 2rem;
    max-width: 700px;   /* カード2枚＋gap分の幅に調整 */
    margin: 70px auto;     /* 親要素自体を中央寄せ */
  }
  .product-card {
    width: 100%;
    max-width: 300px; /* 最大幅を指定 */
    flex: 1 1 300px;  /* 基準幅300pxで均等に伸縮 */
    text-align: center;
    justify-content: center;
    align-items: center;
  }
}
/*定期便ステップセクション*/
.steps{
    background-color: #fff;
    padding: 4rem 1.5rem;
    text-align: center;
}
.step-lead{
    font-size: 1rem;
    margin-bottom: 2.5rem;
    color:#555;
    line-height: 2;
}
.step-lead span{
    font-weight: bold;
}
.step{
    margin-bottom: 2rem;
}
.step-num{
    display: inline-block;
    background-color: #c8e6c9;
    color:#2e7d32;
    font-weight: bold;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}
.step-text{
    font-size: 1rem;
    color: #333;
}
.step1{
    width: 100%;
    max-width: 200px;
    height: auto;
    display: block;
    margin: 0 auto;
}
.step2{
    width: 100%;
    max-width: 150px;
    height: auto;
    display: block;
    margin: 0 auto;
}
.step3{
    width: 100%;
    max-width: 200px;
    height: auto;
    display: block;
    margin: 0 auto;
}
.step4{
    width: 100%;
    max-width: 160px;
    height: auto;
    display: block;
    margin: 0 auto;
}
.step img{
    padding: 50px;
}
@media screen and (min-width: 768px){
    .step-group{
        display: flex;
        padding-top: 50px;
    }
    .step{
    flex:1;
    }
    .step-lead{
        padding-top: 20px;
    }
}

/*ユーザーの声セクション*/
.voices{
    background-color: #f5f5f5;
    padding: 4rem 1.5rem;
    text-align: center;
}
.voice-card{
    background-color: #fff;
    border-left: 4px solid #81c784;
    padding: 1.5rem;
    margin-bottom: 2rem;
    text-align: left;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}
.voice-text{
    font-size: 1rem;
    color: #444;
    margin-bottom: 1rem;
    line-height: 1.6;
}
.voice-name{
    font-size: 0.9rem;
    color: #888;
    font-style: italic;
}

/*お問い合わせ*/
.form-section {
  background-color: #f3f3f3;
  padding: 4rem 1.5rem;
  text-align: center;
}

.form-inner {
  max-width: 600px;
  margin: 0 auto;
}

.apply-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  text-align: left;
}

.apply-form label {
  font-weight: bold;
  color: #333;
}

.apply-form input,
.apply-form select,
.apply-form textarea {
  padding: 0.8rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  width: 100%;
  box-sizing: border-box;
}

.submit-btn {
  background-color: #2e7d32;
  color: #fff;
  padding: 1rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
}

.submit-btn:hover {
  background-color: #256128;
}

/*メッセージセクション*/
.message{
    background-color: #fff;
    padding: 4rem 1.5rem;
    text-align: center;
}
.message-lead{
    font-size: 1.1rem;
    color: #2e7d32;
    margin-bottom: 1.5rem;
    font-weight: 500;
}
.message-text{
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
    text-align: left;
}
@media screen and (min-width: 768px){
    .message-text{
        text-align: center;
    }
}

/*フッター*/
.footer{
    background-color: #f0f4f0;
    text-align: center;
    padding: 3rem 1.5rem;
    color: #666;
    font-size: 0.9rem;
}
.footer-logo{
    font-size: 1.4rem;
    font-weight: bold;
    color: #2e7d32;
    margin-bottom: 0.5rem;
}
.footer-text{
    margin-bottom: 1rem;
}
.footer-copy{
    font-size: 0.75rem;
    color: #aaa;
}