body {
  font-family:serif;
}


/* ==========================================
   Header
========================================== */


.header{
    position: fixed;
    top: 0;
    left: 0;

    width: 100%;

    height: clamp(60px, 7vh, 90px);
    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 0 5%;

    z-index: 1000;

    background: transparent;

    transition:
        background-color .5s ease,
        box-shadow .5s ease,
        opacity .8s ease,
        transform .8s ease;
}
.header.is-scroll{

    background:#F2F2F2;

    box-shadow:0 2px 12px rgba(0,0,0,.08);

}

/* ==========================================
   ロゴ
========================================== */
.logo__link{
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    color: #000;
    height: 100%;
}
.logo{
    display: flex;
    align-items: center;
    height: 100%;
    flex:0 0 300px;
}

.logo img{
    height: 100%;      /* 好みに応じて40～55px程度 */
    width: 100%;
    display: block;
}
.logo p{
    font-size: 25px;
}
.logo span{
    font-size: 1.2rem;
    font-weight: 700;
    white-space: nowrap;
}
/* ==========================================
   PCメニュー
========================================== */
.navigation{

    margin-right:10%;

}.navigation__list{

    display:flex;

    align-items:center;

    gap:30px;

    list-style:none;

}

.navigation__link{

    color:#000;

    font-size:1rem;

    font-weight:500;
    white-space:nowrap;
    text-decoration:none;

    line-height:1;

    position:relative;

    transition:.3s;

}
/* ==========================================
   下線アニメーション
========================================== */
.navigation__link::after{

    background:#000;

}

.navigation__link:hover::after{
    width:100%;

}
/* ==========================================
   ハンバーガーボタン
========================================== */
.hamburger-menu{
    display:none;
    width:42px;
    height:42px;
    border:none;
    background:none;
    cursor:pointer;
    position:relative;
}

.hamburger-menu__bar{
    position:absolute;
    left:7px;
    width:28px;
    height:2px;
    background:#fff;
    transition:.35s;
}

.hamburger-menu__bar:nth-child(1){
    top:11px;
}
.hamburger-menu__bar:nth-child(2){
    top:20px;
}
.hamburger-menu__bar:nth-child(3){
    top:29px;
}
.hamburger-menu.is-active .hamburger-menu__bar:nth-child(1){
    top:20px;
    transform:rotate(45deg);
}
.hamburger-menu.is-active .hamburger-menu__bar:nth-child(2){
    opacity:0;
}
.hamburger-menu.is-active .hamburger-menu__bar:nth-child(3){
    top:20px;
    transform:rotate(-45deg);
}

/*==================================================
Loading背景画面設定
===================================*/

#loading-screen{
    position:fixed;
    inset:0;

    display:flex;
    justify-content:center;
    align-items:center;

    background:#1B2E24;

    z-index:9999;

    opacity:1;
    visibility:visible;

    transition:
        opacity 1.5s ease,
        visibility 1.5s ease;
}

#loading-image{

    width:100%;
    height:100%;
    object-fit:cover;

    opacity:1;

    transition:opacity 1.5s ease;

}

#loading-screen.fade-out{

    opacity:0;
    visibility:hidden;

}

#loading-screen.fade-out #loading-image{

    opacity:0;

}

.header{

    opacity:0;
    transform:translateY(-25px);

    transition:
        opacity .8s ease,
        transform .8s ease,
        background .4s;

}

.header.show{

    opacity:1;
    transform:translateY(0);

}
/*==================================================
 Loading背景画面設定ここまで
===================================*/



/*==================================
Hero
==================================*/

.hero{

    position:relative;
    width:100%;
    height:100vh;




}

.hero-text{

    position:relative;

    width:100%;
    height:100vh;

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    text-align:center;

    color:#fff;

    z-index:10;

    will-change:transform;

}

.hero-en{

    font-size:14px;

    letter-spacing:0.4em;

    margin-bottom:20px;

}

.hero-title{

    font-size:61px;

    font-weight:500;

    line-height:1.8;
    margin-bottom:0;

}

.hero-sub{

    font-size:21px;

    margin-top:5px;

    letter-spacing:0.1em;

}
.hero-bg{

    position:fixed;

    top:0;
    left:0;

    width:100%;
    height:100vh;

    background:url("img/tophaikei.png") center center/cover no-repeat;

    z-index:-1;

}

/*==================================
 SCROLL
==================================*/

.scroll{
    position:absolute;
    left:50%;
    bottom:40px;
    transform:translateX(-50%);
    margin-top: 80px;
    display:flex;
    flex-direction:column;
    align-items:center;
    z-index:20;
}

.scroll-text{
    color:#fff;
    font-size:10px;
    letter-spacing:0.3em;
    margin-bottom:10px;
}

.scroll-line{
    width:1px;
    height:80px;
    background:rgba(255,255,255,.3);
    position:relative;
    overflow:hidden;
}

.scroll-line::after{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:30px;
    background:#fff;
    animation:scrollLine 2s infinite;
}

@keyframes scrollLine{
    0%{
        top:-30px;
        opacity:0;
    }
    20%{
        opacity:1;
    }
    100%{
        top:80px;
        opacity:0;
    }
}

/*==================================
ABOUT
==================================*/

.about{
    background:#fff;
    padding:160px 8%;
}
.about-wrap{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:100px;
}

.about-img{
    width:45%;
    opacity:0;
    transform:translateX(-80px);
    transition:1.2s ease;
}
.about-img.show{
    opacity:1;
    transform:translateX(0);
}

.about-content{
    width:55%;
    background:#F2F2F2;
    padding:70px;
    border-radius:20px;
    box-shadow:0 20px 50px rgba(0,0,0,.12);
    position:relative;
    z-index:2;
}
.about-en{
    font-size:15px;
    letter-spacing:.3em;
    color:#888;
    margin-bottom:1px;
}

.about-title{
    font-size:40px;
    font-weight:400;
    line-height:1.6;
    margin-top: 1px;
    margin-bottom:40px;
}

.about-text{
    font-size:20px;
    line-height:2;
    color:#444;
}

.about-line{
    width:100%;
    height:1px;
    background:#ccc;
    margin:50px 0;
}

.about-info{
    display:flex;
    justify-content:space-between;
    gap:30px;
}

.info-box{
    flex:1;
}

.info-en{
    font-size:15px;
    letter-spacing:.2em;
    color:#888;
    margin-bottom:15px;
}

.info-ja{
    font-size:20px;
    line-height:1.4;
}

.about-img{
    width:45%;
}

.about-img img{
    width:100%;
    height:700px;
    object-fit:cover;
    display:block;
    box-shadow:0 25px 60px rgba(0,0,0,.18);
}

/*==================================
COMMITMENT
==================================*/
/*==================================
セクションタイトル
==================================*/

.sec-title{
    text-align:center;
    margin-bottom:80px;
}

.sec-en{
    font-size:15px;
    letter-spacing:.35em;
    color:#BFD6C8;
    margin-bottom:18px;
}

.sec-ja{
    font-size:40px;
    font-weight:400;
    color:#fff;
    line-height:1.5;
}
.commitment{
    background:#1C3226;
    padding:150px 8%;
}
.ct-wrap{
    display:flex;
    justify-content:space-between;
    gap:40px;
    margin-top:70px;
}

.ct-card{
    flex:1;
    overflow:hidden;
    border-radius:24px;
    background:#335C46;
    box-shadow:0 20px 50px rgba(0,0,0,.25);
    transition:.4s;
}

.ct-card:hover{
    transform:translateY(-10px);
}

.ct-card img{
    width:100%;
    height:260px;
    object-fit:cover;
    display:block;
}

.ct-body{
    background:#335C46;
    color:#fff;
    padding:40px;
}

.ct-no{
    font-size:14px;
    letter-spacing:.25em;
    color:#BFD6C8;
    margin-bottom:15px;
}

.ct-body h3{
    font-size:28px;
    font-weight:500;
    margin-bottom:25px;
    line-height:1.5;
}

.ct-body p{
    font-size:16px;
    line-height:2;
}

/*==================================
Commitment Animation
==================================*/
.ct-card{
    opacity:0;
    transform:translateY(80px) scale(.95);
    transition:
        opacity .9s ease,
        transform .9s ease;
}

/* 表示 */
.ct-card.show{
    opacity:1;
    transform:translateY(0) scale(1);
}


/* ==========================================
   取り組みについて
========================================== */
/*==================================
EFFORTS
==================================*/
.ef-ja{
    font-size:40px;
    font-weight:400;
    color:#454545;
    line-height:1.5;
}
.ef-en{
    font-size:15px;
    letter-spacing:.35em;
    color:#454545;
    margin-bottom:18px;
}
.efforts{
    background:#EEF3ED;
    padding:140px 0;
}

.effort{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:90px;
    align-items:center;
    margin:140px 0;
}

.effort.reverse .effort-text{
    order:2;
}

.effort.reverse .effort-img{
    order:1;
}

/*------------------------
画像
------------------------*/

.effort-img{
    overflow:hidden;
    filter:drop-shadow(0 20px 45px rgba(0,0,0,.18));
}

.effort-img img{
    width:100%;
    height:550px;
    display:block;
    object-fit:cover;
}
.effort-img{
    opacity:0;
    transform:translateY(60px);
    transition:1s;
}

.effort-img.show{
    opacity:1;
    transform:translateY(0);
}
/*------------------------
文章
------------------------*/

.effort-text{
    background:#F7F8F5;
    padding:60px;
    box-shadow:0 20px 45px rgba(10,10,10,1);
}

.effort-text span{
    color:#7D9A84;
    font-size:16px;
    letter-spacing:2px;
}

.effort-text h3{
    font-size:34px;
    color:#1C3226;
    margin:15px 0 30px;
}

.effort-text p{
    font-size:18px;
    line-height:2;
    color:#444;
}

/*------------------------
フェード
------------------------*/

.fade{
    opacity:0;
    transform:translateY(60px);
    transition:0.9s cubic-bezier(.22,.61,.36,1);
}

.fade.show{
    opacity:1;
    transform:translateY(0);
}

/*------------------------
スマホ
------------------------*/

@media(max-width:768px){
.effort{
    grid-template-columns:1fr;
    gap:30px;
    margin:80px 0;
}

.effort.reverse .effort-text{
    order:2;
}

.effort.reverse .effort-img{
    order:1;
}

.effort-img img{
    height:280px;
}

.effort-text{
    padding:35px;
}
.effort-text h3{
    font-size:28px;
}

.effort-text p{
    font-size:16px;
}

}


/*==================================
PRODUCT
==================================*/
.pd-ja{
    font-size:40px;
    font-weight:400;
    color:#335C46;
    line-height:1.5;
}
.pd-en{
    font-size:15px;
    letter-spacing:.35em;
    color:#335C46;
    margin-bottom:18px;
}
.product{
    background:#F7F4ED;
    padding:150px 8%;
}

.pd-wrap{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:40px;

    max-width:1200px;
    margin:0 auto;
}

.pd-card{
    flex:1;
    overflow:hidden;
    border-radius:24px;
    background:#335C46;
    box-shadow:0 20px 50px rgba(0,0,0,.25);
    transition:.4s;
}

.pd-card:hover{
    transform:translateY(-10px);
}

.pd-card img{
    width:100%;
    height:260px;
    object-fit:cover;
    display:block;
}

.pd-body{
    background:#335C46;
    color:#fff;
    padding:40px;
}

.pd-no{
    font-size:14px;
    letter-spacing:.25em;
    color:#BFD6C8;
    margin-bottom:15px;
}

.pd-body h3{
    font-size:28px;
    font-weight:500;
    margin-bottom:25px;
    line-height:1.5;
}

.pd-body p{
    font-size:16px;
    line-height:2;
}

/*==================================
Commitment Animation
==================================*/
.pd-card{
    opacity:0;
    transform:translateY(80px) scale(.95);
    transition:
        opacity .9s ease,
        transform .9s ease;
}

/* 表示 */
.pd-card.show{
    opacity:1;
    transform:translateY(0) scale(1);
}


/*==================================
コンタクト　セクション
==================================*/
.contact-section {
  background-color: #1b2e24;
  color: #FBF9F6;
  padding: 6rem 1.5rem;
}

/* コンテナレイアウト（デスクトップで2カラム） */
.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 768px) {
  .contact-container {
    grid-template-columns: 1fr 1fr;
  }
}

/* 左側情報エリアのスタイル */
.section-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  opacity: 0.6;
  display: block;
  margin-bottom: 0.5rem;
}

.section-title {
  font-size: 1.875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
}

.contact-lead {
  font-size: 1.125rem;
  color: #d1d5db;
  line-height: 1.75;
  margin-bottom: 2rem;
}

.info-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.info-label {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 11px;
  color: #6b7280;
  letter-spacing: 0.1em;
}

.info-value {
  font-size: 1rem;
  color: #d1d5db;
}

.email-link {
  color: #FBF9F6;
  text-decoration: none;
}

.email-link:hover {
  text-decoration: underline;
}

/* ボタンのスタイル */
.shop-buttons {
  margin-top: 1rem;
  display: flex;
  gap: 1rem;
}

.btn {
  display: inline-block;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #ffffff;
  text-decoration: none;
  border-radius: 4px;
  transition: opacity 0.2s;
}

.btn:hover {
  opacity: 0.9;
}

.btn-rakuten {
  background-color: #bf360c;
}

.btn-satofull {
  background-color: #e65100;
}

/* 右側フォームのスタイル */
.contact-form {
  background-color: #243e30;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-label {
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.form-input, .form-textarea {
  width: 90%;
  background-color: #1b2e24;
  border: 1px solid #374151;
  border-radius: 4px;
  padding: 0.75rem 1rem;
  font-size: 1.125rem;
  color: #ffffff;
  font-family: inherit;
  transition: border-color 0.2s;
}

.form-input:focus, .form-textarea:focus {
  outline: none;
  border-color: #8ba895;
}

.submit-btn {
  width: 100%;
  background-color: #8ba895;
  color: #1b2e24;
  font-size: 1rem;
  font-weight: 600;
  padding: 0.75rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-family: inherit;
  transition: background-color 0.2s, color 0.2s;
}

.submit-btn:hover {
  background-color: #FBF9F6;
}

/* スクロールフェードインアニメーション用 */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s ease, transform 1s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/*==================================
フッター　セクション
==================================*/
.site-footer {
  background-color: #121f18;
  color: rgba(251, 249, 246, 0.8);
  padding: 3rem 1.5rem 1.5rem 1.5rem;
  border-top: 1px solid #0b1410;
}

/* メインコンテンツ部分のレイアウト */
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

@media (min-width: 768px) {
  .footer-container {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
}

/* 左側：ブランドエリアのスタイル */
.footer-brand {
  max-width: 24rem;
}

.footer-logo {
  font-size: 1.25rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.footer-description {
  font-size: 0.875rem;
  color: #9ca3af;
  line-height: 1.5;
}

/* 右側：リンクグループ全体のレイアウト */
.footer-links-group {
  display: flex;
  gap: 4rem;
}

/* 各ナビゲーションブロック */
.footer-nav {
  display: flex;
  flex-direction: column;
}

.nav-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: #6b7280;
  margin-bottom: 1rem;
}

.nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.nav-link {
  font-size: 0.875rem;
  color: rgba(251, 249, 246, 0.8);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-link:hover {
  color: #ffffff;
}

/* 下部：コピーライトエリア */
.footer-bottom {
  max-width: 1200px;
  margin: 3rem auto 0 auto;
  padding-top: 1.5rem;
  border-top: 1px solid #1b2e24;

}

.copyright {
  font-size: 0.75rem;
  color: #6b7280;
}



/* ==========================================
   タブレット対応
========================================== */
@media screen and (max-width:992px){

.pd-wrap{

    grid-template-columns:repeat(2,1fr);

}

}






/* ==========================================
   ｽﾏﾎ対応
========================================== */
@media screen and (max-width:768px){
/* ==========================================
   トップ画面について
========================================== */
.hero-sub{
    font-size:14px;
}
.hero-en{
    font-size:11px;
} 
.hero-title{
    font-size:38px;
}
.hero-bg{
    background-image:url("img/tophaikei-sf.png");
    background-size:cover;
    background-repeat:no-repeat;
    background-position:70% center;
    
} 

/* ==========================================
   ロゴについて
========================================== */
.logo{
    flex:0 0 auto;
}

.logo img{
    width:auto;
    height:42px;
}

.logo span{
    font-size:16px;
}    
    
.navigation{

    position:fixed;
    top:0;
    right:-100%;          /* 最初は画面外 */

    width:80%;
    max-width:320px;

    height:100vh;

    background:#F2F2F2;

    transition:right .4s ease;

    padding-top:90px;

    z-index:999;

}

.navigation.is-active{

    right:-10%;

}

.navigation__list{
    flex-direction:column;
    gap:0;
}

.navigation__link{
    display:block;
    padding:18px 30px;
}

.hamburger-menu{
    display:block;
    width:42px;
    height:42px;
    margin-right:5px;
    flex-shrink:0;
        position:relative;

    z-index:1001;
    
    
}
    .header{
            box-sizing:border-box;
    }
.ct-wrap{
    flex-direction:column;
}

.ct-card{
    width:100%;
}
/* ==========================================
   取り組み　ｽﾏﾎは画像が上、文章が下
========================================== */
 .effort{

    display:grid;
    grid-template-columns:1fr;

}

.effort-img{

    order:1;

}

.effort-text{

    order:2;

}

.effort.reverse .effort-img{

    order:1;

}

.effort.reverse .effort-text{

    order:2;

}

.effort-text h3{
    font-size:26px;
}

.effort-text p{
    font-size:15px;
    line-height:1.9;
}
    
/* ==========================================
   本原農園について
========================================== */
.about-wrap{
    flex-direction:column;
    gap:40px;
}

.about-img{
    width:100%;
}

.about-img img{
    height:320px;
}

.about-content{
    width:100%;
    padding:35px;
}

.about-title{
    font-size:30px;
}

.about-text{
    font-size:16px;
}

.about-info{
    flex-direction:column;
    gap:25px;
}
    

.pd-wrap{
    grid-template-columns:1fr;
}
.pd-card{
    width:100%;
}    

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}
html,
body{
    width:100%;
    overflow-x:hidden;
}
img{
    display:block;
    max-width:100%;
}


}