@charset "utf-8";

body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #f9f9f9;
}




/* ヘッダー */

header {
    background: #2e7d32;
    color: white;
    padding: 30px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}



.logo {
    font-size: 32px;      
    font-weight: 800;       
    color: #f2feeb;        
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo .apple {
    font-size: 38px;        
}

/* ▼ ハンバーガーボタン（公式っぽく極細ラインに） */
#hanba {
    position: fixed;
    top: 30px;
    right: 40px;
    width: 70px;        
    height: 70px;       
    background: #306338;
    color: #fff;
    border-radius: 50%;
    font-size: 45px;    
    cursor: pointer;
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* 開いた時の × ボタンも綺麗に */
#hanba.open {
    background-color: #2f8e00;  
}

/* ▼ スライドメニュー */
#menu {
    position: fixed;
    top: 0;
    right: -300px; 
    width: 250px;
    height: 100vh;
    background: #ffffff;
    box-shadow: -2px 0 8px rgba(0,0,0,0.2);
    padding: 60px 25px;
    box-sizing: border-box; 
    transition: right 0.4s ease;
    z-index: 1000;
}

/* 開いたとき */
#menu.open {
    right: 0;
}

#menu h3 {
    margin-bottom: 20px;
    font-size: 20px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
}

#menu ul {
    list-style: none;
    padding: 0;
}

#menu li {
    margin: 20px 0;
}

#menu a {
    text-decoration: none;
    font-size: 18px;
    color: #333;
}

#menu ul li a {
    display: inline-block;
    transition: transform 0.3s ease, color 0.3s ease;
}

#menu ul li a:hover {
    transform: translateY(-5px);
    color: #4CAF50; 
}

#hanba {
    border: none !important;
    outline: none !important;
}

#hanba:focus {
    outline: none !important;
    border: none !important;
}





/* メインビジュアル */
.main-visual {
    width: 100%;
    height: 100%;
    background: #ccc;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #333;
}

/* ニュース & ピックアップ */
.content-box {
    display: flex;
    padding: 20px;
    gap: 20px;
    padding-bottom: 50px;
}
.news, .pickup {
    background: white;
    flex: 1;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.news h3, .pickup h3 {
    margin-top: 0;
}
ul {
    padding-left: 20px;
}

/* ホバー時 */
.news:hover {
    background-color: #0f3d2e; /* 深いミセスグリーン */
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}


/* hover時の文字色 */
.news:hover .news-text p,
.news:hover .news-text h4 {
    color: #ffffff;
}



.mg-footer {
    background: #2e7d32;
    color: #fff;
    padding: 40px 20px;
    text-align: center;
    font-family: "Helvetica", "Arial", sans-serif;
}

.mg-footer .footer-inner {
    max-width: 900px;
    margin: 0 auto;
}

.mg-footer .copy {
    font-size: 14px;
    margin-bottom: 20px;
    opacity: 0.8;
}

.mg-footer .sns-links a {
    color: #fff;
    text-decoration: none;
    padding: 0 10px;
    font-size: 15px;
    opacity: 0.9;
    transition: 0.3s;
}

.mg-footer .sns-links a:hover {
    opacity: 1;
    text-decoration: underline;
}







#toTop {
    display: none;             
    position: fixed;           
    bottom: 30px;
    right: 45px;
    width: 50px;
    height: 50px;
    font-size: 24px;
    text-align: center;
    background: #306338;
    color: #fff;
    border-radius: 50%;
    line-height: 50px;
  }




  
  
/*メイン画像の切り替え*/

.slider {
    width: 100%;      
    overflow: hidden;  
    position: relative;
    margin: 0 auto;
}




.slider {
    position: relative;
    width: 100%;
    height: 600px; 
    overflow: hidden;
  }
  
  .slides img {
    position: absolute;
    inset: 0;
    width: 90%;
    height: auto;
    object-fit: cover;
    display: none;   
    margin: 0 auto;
  }




/* ボタンのデザイン */
.prev, .next {
    position: absolute;
    top: 50%;                 
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: #fff;
    border: none;
    padding: 15px 20px;
    font-size: 20px;
    cursor: pointer;
}

/* 左右ボタン */
.prev {
    left: 10px;
}

.next {
    right: 10px;
}

.back{
    background: #2e7d32;
}




/* 共通 */
#nav-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(46, 125, 50, 0.3);
    background: rgba(255, 255, 255, 0.85);
    color: #2e7d32;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
  
    display: flex;
    align-items: center;
    justify-content: center;
  
    backdrop-filter: blur(4px);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.08);
  }
  
  
  /* フォーカス（キーボード操作） */
  #nav-btn:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.35);
  }
  



















/* ----- サブスライダー ----- */


.slider2 {
    width: 1086px; /* 300px × 3 + 6px × 6（余白） */
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    top: 70px;
}

/* 横並び */
.slides2 {
    display: flex;
    transition: transform 0.4s ease;
}

/* 画像 */
.slides2 img {
    width: 350px;
    height: auto;
    display: block;
    margin: 0 6px;
    flex-shrink: 6;
}





/*     メンバー紹介のCSS          */

.member-card {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    max-width: 800px;
    margin: 20px auto;
    gap: 20px;
}

.member-image img {
    width: 200px;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
}

.member-info {
    flex: 1;
}

.member-info h2 {
    margin-bottom: 12px;
    font-size: 1.8rem;
    border-left: 5px solid #4CAF50; 
    padding-left: 10px;
}

.profile-link {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 16px;
    background: #4CAF50;
    color: #fff;
    border-radius: 6px;
    text-decoration: none;
}

.profile-link:hover {
    background: #45a049;
}








/*       大きな見出しのデザイン             */

.mga-title {
    font-size: 2.4rem;
    text-align: center;
    font-weight: 700;
    color: #2f7d32;
    letter-spacing: 0.08em;
    margin: 40px 0 30px;
    padding-bottom: 12px;
    padding-top: 80px;

    border-bottom: 4px solid transparent;
    background: linear-gradient(to right, #7ad67a, #4caf50, #7ad67a);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 3px 10px rgba(76, 175, 80, 0.25);
}

/* 下のライン（淡いグラデーションの下線） */
.mga-title::after {
    content: "";
    display: block;
    width: 160px;
    height: 4px;
    margin: 10px auto 0;
    border-radius: 8px;
    background: linear-gradient(to right, #a7e7a7, #4caf50, #a7e7a7);
}




/*        ニュースのとこのデザイン            */

.news {
    display: flex;
    align-items: flex-start; 
    gap: 16px;               
    margin-bottom: 24px;
    padding: 30px 20px;
}

/* 日付の円（前に作ったやつでOK） */
.date-circle {
    width: 70px;
    height: 70px;
    background: #e8f7e8;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    color: #2f7d32;
    font-size: 1.2rem;
}

/* 右側のテキストを縦並びに */
.news-text p {
    margin: 0;
    font-size: 0.85rem;
    font-weight: 700;
    color: #4caf50; 
}

.news-text h4 {
    margin: 4px 0 0;
    font-size: 1rem;
    line-height: 1.4;
}





/* フォーム全体のカード風デザイン */
#contactForm {
    max-width: 500px;
    margin: 40px auto;
    padding: 25px 30px;
    background: #ffffff;
    border: 3px solid #4caf50; 
    animation: fadeIn 0.5s ease;
}

/* 見やすいラベル */
label {
    font-weight: bold;
    display: block;
    margin-top: 15px;
    color: #2e6e32; 
    letter-spacing: 0.03em;
}

/* 入力欄 */
input[type="text"],
input[type="email"],
textarea {
    width: 100%;
    padding: 10px;
    margin-top: 6px;
    border: 2px solid #c8e6c9;
    border-radius: 10px;
    background: #f9fff9;
    font-size: 1rem;
    transition: 0.2s;
}

input:focus,
textarea:focus {
    border-color: #66bb6a;
    background: #ffffff;
    outline: none;
    box-shadow: 0 0 8px rgba(76, 175, 80, 0.3);
}

/* チェックボックス行 */
#checkBtn {
    margin-left: 10px;
    transform: scale(1.2);
    accent-color: #4caf50; 
}

/* 送信ボタン */
.btn {
    margin-top: 25px;
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, #81c784, #4caf50); 
    color: white;
    font-size: 1.1rem;
    font-weight: bold;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: 0.25s;
}

.btn2 {
    margin-top: 25px;
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, #81c784, #4caf50); 
    color: white;
    font-size: 1.1rem;
    font-weight: bold;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: 0.25s;
}

.btn:hover {
    background: linear-gradient(135deg, #66bb6a, #43a047);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(76, 175, 80, 0.3);
}

/* エラーメッセージ */
.error {
    margin-top: 15px;
    color: #d32f2f;
    font-weight: bold;
    white-space: pre-line;
}






/*       ミセスの歴史のとこ         */


.schedule {
    max-width: 800px;
    margin: auto;
    padding: 20px 400px;
    background-color: #428f47;
  }
  
  .schedule-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .schedule-item {
    width: 100%;   
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    background: #2b422dd3; 

    border-radius: 8px;
    padding: 14px 18px;
    margin-bottom: 16px;
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.1);

    display: grid;
    grid-template-columns: 90px 140px 1fr; 
    column-gap: 12px;
  }

  .schedule-item:hover {
    transform: translateY(-3px);
}

  .event-LIVE {
    flex: 0 0 80px;
    font-weight: bold;
    color: #e0fe68;
  }

  .event-RADIO {
    flex: 0 0 80px;
    font-weight: bold;
    color: #a233b0;
  }

  .event-TV {
    flex: 0 0 80px;
    font-weight: bold;
    color: #33c9da;
  }
  
  
  .event-date {
    flex: 0 0 140px;
    color: #efefef;
  }
  
  .event-detail {
    flex: 1;
    color: #eee6e6;
  }
  
  @media (max-width: 600px) {
    .schedule-item {
      flex-direction: column;
      align-items: flex-start;
    }
    .event-type,
    .event-date {
      margin-bottom: 6px;
    }
  }

  .mga-title2 {
    font-size: 2.4rem;
    text-align: center;
    font-weight: 700;
    color: #e8ffe5; 
    letter-spacing: 0.08em;
    margin: 40px 0 30px;
    padding-bottom: 12px;
    background: linear-gradient(
        to right,
        #f2fff0, 
        #d8ffd6,
        #f2fff0
    );
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;

    text-shadow: 0 3px 10px rgba(200, 255, 200, 0.35);
}

/* 下のライン（柔らかい淡黄緑グラデーション） */
.mga-title2::after {
    content: "";
    display: block;
    width: 160px;
    height: 4px;
    margin: 10px auto 0;
    border-radius: 8px;

    background: linear-gradient(
        to right,
        #f4fff4, 
        #d8ffd6, 
        #f4fff4
    );
}

  

/* スクロール前（非表示） */
.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.9s ease, transform 0.9s ease;
  }
  
  /* 表示状態 */
  .fade-in.is-show {
    opacity: 1;
    transform: translateY(0);
  }

  .page-title {
    font-size: 52px;        
    font-weight: 700;        
    letter-spacing: 0.18em;   
    color: #000;
    text-align: center;
  
    max-width: 1000px;
    margin: 90px auto 70px;
    padding-left: 20px;
  
    font-family: "Helvetica Neue", "Noto Sans JP", sans-serif;
  
  }


  
  
  