  /* ==================================================
      共通CSS
  ================================================== */
    :root{
      --green:#148f6a;         /*title*/
      --green-dark:#167565;    /*icon背景*/
      --green-blue:#03989F;    /*icon背景*/
      --soft-green:#eef4ef;    /* INFORMATION Q&A footerBG */
      --panel-green:#edf3ee;   /* Q&Aのパネル背景 */
      --entry-green:#dee8df;   /* EntrySTEP背景 */
      --footer-bg:#eef4ef; /* 薄いグリーン */
      --white:#fff;
      --news-bg: rgba(215, 229, 213, 0.5); /* News背景 */
      --text:#111;            /* 通常テキスト */
      --muted:#666;
      --line:#e6e6e6;
      --max:1200px;
      --inner-max:900px;
      --image-max:1000px;
      --main-font: "Josefin Sans","Zen Kaku Gothic New", sans-serif;
      --en: "Josefin Sans";
      --jp:"Zen Kaku Gothic New";
    }

    *{ box-sizing:border-box; }

    .mgTop10{margin-top: 10px;}
    .mgTop20{margin-top: 20px;}
    .mgTop30{margin-top: 30px;}
    .mgTop40{margin-top: 40px;}

    html,body{ height:100%; }
    body{
      margin:0;
      font-family: -apple-system, BlinkMacSystemFont, "Josefin Sans","Zen Kaku Gothic New", sans-serif;
      color:var(--text);
      background:var(--white);
    }

    /* Header
    =========================*/

    /* 通常ヘッダー */
    .site-header{
      position: relative;
      width:100%;
      background:var(--white);
      z-index:1000;
      height: 80px;
      transition: box-shadow .2s ease, transform .2s ease, background-color .2s ease;
      transform: translateY(-6px);
    }

    .header-inner{
      max-width:var(--max);
      margin:0 auto;
      height: 80px;
      padding:18px 24px;
      display:flex;
      align-items:center;
      justify-content:end;
      gap:28px;
    }

    /* ナビ */
    .gnav{
      display:flex;
      align-items:center;
      gap:28px;
      margin:0;
      padding:0;
      list-style:none;
      font-size:14px;
      font-weight:700;
    }
    .gnav a{ color:var(--text); text-decoration:none; }
    .gnav a:hover{ text-decoration:underline; }

    /* ロゴ切替 */
    .brand{ display:flex; align-items:center; text-decoration:none; position: absolute; left:60px;}
    .logo{ display:block; width:auto; }
    .logo--main{ height:28px; }     /* 通常時ロゴ（調整） */
    .logo--sticky{ display:none; height:28px; }

    /* ボタン縦並 */
    .header-actions{ display:flex; gap:10px; }

    /* メニュー追従時
    ========================= */
    .site-header.is-sticky{
      position:fixed;
      top:0; left:0; right:0;
      box-shadow:0 6px 18px rgba(0,0,0,.08);
      transform: translateY(0);
    }

    .site-header.is-sticky .header-inner{
      padding:10px 24px;
    }

    /* 追従時にロゴを切り替え */
    .site-header.is-sticky .logo--main{ display:none; }
    .site-header.is-sticky .logo--sticky{ display:block; }

    /* 追従時のページ詰まり防止 */
    body.has-sticky{ padding-top:64px; }


    .gnav{
      display:flex;
      align-items:center;
      gap:32px;
      margin:0;
      padding:0;
      list-style:none;
      font-size:11px;
      font-weight:700;
    }
    .gnav a{
      color:var(--text);
      text-decoration:none;
    }
    .gnav a:hover{ text-decoration:underline; }

    .header-actions{
      display:flex;
      gap:10px;
    }
    .btn{
      display:flex;
      flex-direction:column;
      align-items:center;
      justify-content:center;
      gap:8px;
      color:var(--white);
      text-decoration:none;
      font-weight:800;
      font-size:13px;
      padding:10px 12px;
      border-radius:0;
      line-height:1;
      white-space:nowrap;
    }
    .btn-c1{
      border:1px solid var(--green-blue);
      background:var(--green-blue);
    }
    .btn-c2{
      border:1px solid var(--green);
      background:var(--green);
    }
    .btn .icon{
      width:18px;
      height:18px;
      display:inline-block;
      border:1.5px solid var(--white);
      border-radius:2px;
      position:relative;
    }
    .btn .icon{
      position: relative;   /* ← 必須 */
    }
    
    .btn .icon.mail:before,
    .btn .icon.mail:after{
      content: "";
      position: absolute;
      width: 60%;
      height: 1.5px;
      background: var(--white);
      top: 50%;
      left: 50%;
      transform-origin: center;
    }
    
    .btn .icon.mail:before{
      transform: translate(-50%, -50%) rotate(35deg);
    }
    
    .btn .icon.mail:after{
      transform: translate(-50%, -50%) rotate(-35deg);
    }    

    .btn .icon.doc:before{
      content:"";
      position:absolute;
      left:3px; right:3px; top:3px;
      height:1.5px;
      background:var(--white);
      box-shadow:0 4px 0 var(--white), 0 8px 0 var(--white);
    }


  /* ==================================================
      index.php
  ================================================== */

    /* Main
    =========================*/
    .container{
      max-width:var(--max);
      margin:0 auto;
      padding:0 24px;
      overflow: hidden;
    }

    /* Hero */
    .hero{
      position:relative;
      padding:150px 0 10px;
    }

    .hero-grid{
      display:grid;
      /* 右カラムが調整 */
      grid-template-columns: 500px minmax(0, 1fr);
      gap:24px;
      align-items:start;
      min-height:620px;
    }

    .hero-copy{
      padding:0 0 0 30px;
      margin-top: -100px;
    }
    .hero-title{
      margin:0;
      font-size:56px;
      line-height:1.15;
      letter-spacing:0.02em;
      color:var(--green);
      font-family: var(--main-font);
      font-weight:900;
    }
    .hero-sub{
      margin:0px 0 0;
      font-family: var(--jp);
      font-size:22px;
      font-weight:900;
      color:#000;
      line-height:1.7;
      letter-spacing: 0.25rem;
      background:var(--white);
      display:inline-block;
      padding:0px 5px;
    }

    .hero-visual{
      position:relative;
      min-height:620px;
      width:100%;
      overflow:visible;
    }

    .hero-visual img{
      position:absolute;
      top:0px;
      left:-572px;
      width:auto;
      height:auto;
      max-width:none;
      display:block;
      transform: scale(1.0)
    }

    .hero-badge{
      position: absolute;
      right: 20px;
      top: 285px;
      width: 160px;
      height: 160px;
      border-radius: 50%;
      background: var(--green);
      color: var(--white);
      display:flex;
      flex-direction:column;
      align-items:center;
      justify-content:center;
      text-align:center;
      font-weight: 900;
      font-family: var(--jp);
      z-index: 5; 
    }
    
    .hero-badge .badge-top{
      font-size: 12px;
      line-height: 1.25;
      margin-bottom: 6px;
    }
    
    .hero-badge .badge-mid{
      font-size: 34px;
      line-height: 1;
      margin: 2px 0 4px;
    }

    .badge-mid{
      display:flex;
      align-items:flex-end;
      justify-content:center;
      gap:4px;
    }
    
    .badge-first{
      font-size:24px;     /* 第・期 */
      line-height:1;
    }
    
    .badge-second{
      font-size:32px;      /* 2 */
      line-height:1;
      font-weight:900;
    }
    
    
    .hero-badge .badge-btm{
      font-size: 18px;
      line-height: 1.2;
    }

    .hero-badge .badge-leaf{
      position: absolute;
      top: -30px; 
      left: 50%;
      transform: translateX(-50%);
      width: 60px;  
      height: 60px;
      background: url("../image/reaf.svg") no-repeat center / contain; 
      z-index: 6;
      pointer-events: none;
    }

    /* NEWS BOX
    ========================= */
    .news{
      position:absolute;
      left:24px;
      /*bottom:10px;*/
      width:1000px;
      background:var(--news-bg);
      border:1px solid #dfe6e1;
      padding:40px 22px 30px;
    }
    .news-head{
      display:flex;
      align-items:baseline;
      gap:14px;
      margin:0 0 10px;
    }
    .news-head .en{
      font-size:40px;
      font-weight:900;
      letter-spacing:0.02em;
      font-family: var(--en);
    }
    .news-head .jp{
      color:var(--green);
      font-weight:600;
      font-size:18px;
      letter-spacing:0.06em;
      font-family: var(--jp);
    }
    .news-list{
      margin:0;
      padding:0;
      list-style:none;
      display:flex;
      flex-direction:column;
      gap:10px;
      font-size:14px;
      font-weight:700;
    }
    .news-item{
      display:flex;
      gap:18px;
      align-items:flex-start;
    }
    .news-date{
      min-width:84px;
      color:#000;
      font-weight:900;
    }
    .news-text{
      color:#000;
      font-weight:800;
    }
    .news-more{
      margin-top:18px;
      display:inline-flex;
      align-items:center;
      gap:10px;
      color:var(--text);
      text-decoration:none;
      font-weight:600;
      font-size:16px;
    }
    .news-more:before{
      content:"▶";
      font-size:16px;
      color:var(--green-dark);
      transform:translateY(-1px);
    }

    /* Center section */
    .center{
      padding:300px 0 90px;
      text-align:center;
    }
    .center h2{
      margin:0 0 22px;
      color:var(--green);
      font-weight:900;
      font-size:28px;
      letter-spacing:0.08em;
      line-height:1.6;
    }
    .center p{
      font-size:18px;
      font-weight:700;
      line-height:3.5;
      color:var(--text);
    }

    .info-section{
      position: relative;
    }

    .section-inner{
      max-width: var(--max);
      margin: 80px auto 0;
      padding:0 24px;
    }

    .info-inner{
      position: relative;
      margin:0 auto;
      padding:50px 24px;
      background: var(--soft-green);
      left:50%;
      transform:translateX(-50%);
      width:100vw;
    }
    
    .section-head{
      text-align:center;
      padding: 60px 0 60px;
    }
    
    .section-title{
      margin:0;
      font-size: 40px;
      letter-spacing: -0.04em;
      font-weight: 900;
      color: var(--green);
      font-family: var(--en);
    }
    
    .section-sub{
      margin: 10px 0 0;
      font-size: 20px;
      font-weight: 800;
      letter-spacing: 0.12em;
      color:#000;
    }
    
    /* INFORMATION
    ========================= */

    
    .info-slider{
      position: relative;
      display:flex;
      align-items:center;
      justify-content:center;
      gap: 18px;
    }
    
    .nav-arrow{
      width: 44px;
      height: 44px;
      border-radius: 999px;
      border: none;
      background: var(--green);
      color:var(--white);
      font-size: 28px;
      font-weight: 900;
      line-height: 44px;
      cursor: pointer;
      flex: 0 0 auto;
    }
    
    .nav-arrow svg{
      display:block;
    }
    .info-cards{
      display:grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 36px;
      width: 100%;
      max-width: 980px;
    }
    
    .info-card{
      background:var(--white);
      border: 1px solid #dfe8e1;
      overflow:hidden;
    }
    
    .card-image{
      width:100%;
      height: 200px;
      background:#ddd;
    }
    
    .card-image img{
      width:100%;
      height:100%;
      object-fit: cover;
      display:block;
    }
    
    .card-body{
      position: relative;
      padding: 14px 16px 65px;
    }
    
    .card-title{
      margin:0 0 10px;
      font-size: 14px;
      font-weight: 900;
      line-height: 1.55;
      color:#000;
    }
    
    .card-tags{
      display:flex;
      gap: 10px;
      flex-wrap:wrap;
      margin-bottom: 12px;
      font-size: 12px;
      font-weight: 800;
      color: var(--green-dark);
    }
    
    .card-more{
      position: absolute;
      display:inline-flex;
      align-items:center;
      gap: 8px;
      font-size: 12px;
      font-weight: 900;
      color: var(--green-dark);
      text-decoration:none;
      bottom:12px;
    }
    
    .card-more::before{
      content:"▶";
      font-size: 11px;
      transform: translateY(-1px);
    }
    
    /*   Q&A
    ========================= */
    .qa-section{
      background:var(--white);
      padding-bottom: 90px;
    }
    
    .qa-head{
      padding-top: 80px;
    }
    
    .qa-list{
      margin-top: 24px;
      display:flex;
      flex-direction:column;
      gap: 18px;
    }
    
    .qa-item{
      margin: 10px 0;
      padding: 25px 0;
      display:flex;
      align-items:stretch;
      background: var(--panel-green);
      gap: 5px;
    }
    
    .qa-badge{
      width: 120px;
      height: 120px;
      background: var(--green);
      color:var(--white);
      font-weight: 900;
      font-family: var(--en);
      font-size: 44px;
      display:flex;
      align-items:center;
      justify-content:center;
      border-radius: 999px;
      transform: translateX(18px);
      z-index: 2;
    }
    
    .qa-panel{
      flex:1;
      padding: 22px 26px 22px 44px;
      display:flex;
      flex-direction:column;
      justify-content:center;
      border: 1px solid #dfe8e1;
    }
    
    .qa-question{
      margin:0 0 10px;
      font-size: 21px;
      font-weight: 900;
      color:#000;
    }
    
    .qa-text{
      margin:0;
      font-size: 16px;
      line-height: 1.9;
      font-weight: 700;
      color:#2b2b2b;
    }
    
    /* ==================================================
      footer
  ================================================== */
    
    .site-footer{
      position: relative;
      background: var(--soft-green);
      padding: 64px 0 48px;
    }
    
    /* 右上に見える黒い帯（装飾） */
    .footer-bar{
      position:absolute;
      top:0;
      right:120px;     /* 画像の位置感に合わせた */
      width:240px;
      height:18px;
    }
    
    .footer-inner{
      max-width: var(--max);
      margin: 0 auto;
      padding: 0 24px;
      text-align:center;
    }
    
    .footer-title{
      font-family: var(--en);
      margin:0;
      font-size: 40px;
      letter-spacing: 0.06em;
      font-weight: 900;
      color: var(--green);
    }
    
    .footer-sub{
      margin: 8px 0 0;
      font-size: 20px;
      font-weight: 900;
      letter-spacing: 0.14em;
      color:#000;
    }
    
    .footer-lead{
      margin: 34px 0 0;
      font-size: 15px;
      font-weight: 800;
      letter-spacing: 0.08em;
      color:#000;
    }
    
    .footer-actions{
      margin: 34px auto 0;
      display:flex;
      justify-content:center;
      gap: 60px;             /* 画像の左右間隔 */
      flex-wrap:wrap;
    }
    
    .footer-btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      width: 320px;
      height: 74px;
      border-radius: 999px;
      background: var(--green);
      color:var(--white);
      text-decoration:none;
      font-weight: 900;
      letter-spacing: 0.10em;
      font-size: 18px;
    }
    
    .footer-note{
      margin: 44px 0 0;
      font-size: 12px;
      font-weight: 700;
      color:#222;
    }
    
    .footer-copy{
      margin: 10px 0 0;
      font-size: 12px;
      font-weight: 800;
      color:#000;
    }
    
    /* TOPボタン（右上の丸） */
    .footer-top{
      position:absolute;
      top: -22px;       /* 画像のように少し上へ */
      right: 34px;
      width: 84px;
      height: 84px;
      border-radius: 999px;
      background: var(--green);
      color:var(--white);
      text-decoration:none;
    
      display:flex;
      flex-direction:column;
      align-items:center;
      justify-content:center;
      gap: 6px;
    
      z-index: 5;
    }
    
    .footer-top-arrow{
      width: 14px;
      height: 14px;
      border-left: 3px solid var(--white);
      border-top: 3px solid var(--white);
      transform: rotate(45deg);
      margin-top: 4px;
    }
    
    .footer-top-text{
      font-weight: 900;
      letter-spacing: 0.08em;
      font-size: 12px;
      line-height:1;
    }
    
    /* レスポンシブ（最低限） */
    @media (max-width: 820px){
      .footer-title{ font-size: 36px; }
      .footer-actions{ gap: 18px; }
      .footer-btn{ width: min(320px, 86vw); }
      .footer-bar{ right: 100px; width: 180px; }
    }
    

    /* ====== Responsive (最低限) ====== */
    @media (max-width: 980px){
      .info-cards{
        grid-template-columns: 1fr;
        max-width: 520px;
        gap: 18px;
      }
      .nav-arrow{ display:none; }
    
      .qa-badge{
        width: 110px;
        font-size: 34px;
        transform: translateX(10px);
      }
      .qa-panel{
        padding-left: 34px;
      }
    }

/* ==================================================
      about.php  (WHAT'S ECO SUPPORT)
  ================================================== */

.container-about{
  max-width:var(--inner-max);
  margin:0 auto;
  padding:0 24px;
  overflow: hidden;
}

.eco-support{
  padding:80px 0 90px;
  text-align:center;
}

.eco-title{
  color: var(--green);
  font-size: 40px;
  font-weight: 900;
  letter-spacing:0.08em;
  margin:0;
}

.eco-sub{
  margin-top:5px;
  font-size:20px;
  font-weight:700;
  letter-spacing:0.15em;
}

.eco-description{
  margin:35px auto 100px;
  max-width:750px;
  font-size:15px;
  line-height:2.0;
  font-weight:600;
}

/* 3カラム */
.container-image{
  max-width:var(--image-max);
  margin:0 auto;
  padding:0 24px;
  overflow: hidden;
}

.eco-columns{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  position:relative;
}

.eco-item{
  padding:0 40px;
}

.eco-en{
  color:var(--green);
  font-weight:900;
  letter-spacing:0.08em;
  margin-bottom:10px;
}

.eco-item h3{
  font-size:18px;
  margin-bottom:20px;
}

.eco-item img{
  width:110px;
  margin:0 auto 20px;
  display:block;
}

.eco-text{
  font-size:13px;
  line-height:2;
  text-align: left;
}


/*  活動イメージ
=================================*/
.activity{
  padding:0px 0 0px;
  text-align:center;
}

.activity-title{
  color:var(--green);
  font-size:20px;
  font-weight:800;
  letter-spacing:0.15em;
  margin-bottom:25px;
}

.activity-inner{
  background:var(--soft-green);
  left:50%;
  transform:translateX(-50%);
  width:100vw;
  position: relative;
  padding: 130px;
  margin: -225px 0 50px 0;
  z-index: -1;
}

.activity-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
}

.activity-card img{
  width:280px;
  height: 180px;
  /*aspect-ratio:4/3;*/
  object-fit:cover;
}

.activity-card h3{
  color:var(--green);
  font-size:18px;
  margin-bottom:15px;
}

.activity-card p{
  font-size:13px;
  line-height:2;
  text-align: left;
}


/*  共通見出し（COURSE / INTRODUCTION）
========================= */
.section-head{
  text-align:center;
  padding: 0px 0 20px;
}
.section-head--spaced{
  padding: 110px 0 50px;
}

.section-title{
  margin:0;
  color: var(--green);
  font-size: 40px;
  font-weight: 900;
  font-family: var(--en);
}

.section-sub{
  margin: 10px 0 0;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0.18em;
  color:#000;
}

.section-lead{
  margin: 30px auto 0;
  max-width: 760px;
  font-size: 18px;
  font-weight: 700;
  line-height: 2.2;
  letter-spacing: 0.10em;
  color:#000;
}

/*  COURSE
========================= */
.course{
  background: var(--white);
}

.course-steps{
  display: grid;
  grid-template-columns: 1fr 35px 1fr 35px 1fr;
  align-items: start;
  gap: 0px;
  padding: 40px 0 30px;
  width: var(--inner-max);
  margin: 0 auto;
}

.course-step{
  text-align: center;
  padding: 0 15px;
}

.course-step-kicker{
  margin:0;
  color: var(--green);
  font-weight: 900;
  letter-spacing: 0.10em;
  font-size: 18px;
  font-family: var(--jp);
}

.course-step-num{
  margin: 2px 0 0;
  color: var(--green);
  font-weight: 900;
  letter-spacing: 0.06em;
  font-size: 43px;
  line-height: 1.1;
  font-family: var(--jp);
}

.course-step-ico{
  margin: 18px auto 0;
  width: 140px;
  height: 100px;
  display:flex;
  align-items:center;
  justify-content:center;
}
.course-step-ico img{
  width:100%;
  height:100%;
  object-fit: contain;
  display:block;
}

.course-step-title{
  margin: 35px 0 0;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0.14em;
  color:#000;
}

.course-step-text{
  margin: 10px 0 0;
  font-size: 12px;
  font-weight: 700;
  line-height: 2.1;
  letter-spacing: 0.06em;
  color:var(--text);
  text-align: left;
}

.course-step--arrow{
  display:flex;
  align-items:center;
  justify-content:center;
  font-size: 32px;
  color: var(--green);
  padding-top: 110px; /* 数字とアイコンの間 */
}

.course-recommend{
  margin: 40px auto 0;
  max-width: 720px;
  text-align:center;
}

.course-recommend-title{
  margin: 0 0 14px;
  font-weight: 900;
  letter-spacing: 0.12em;
  color:#000;
}

.course-recommend-list{
  margin: 0 auto;
  padding: 26px 100px;
  list-style: none;
  background: var(--soft-green);
  display: grid;
  gap: 14px;
  text-align: left;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.8;
  letter-spacing: 0.06em;
  width: 577px;
}

.course-recommend-list li{
  position: relative;
  padding-left: 45px;
}
.course-recommend-list li::before{
  content:"";
  position:absolute;
  left:0;
  top:-3px;
  width:34px;
  height:26px;
  background:url("/image/check.svg") no-repeat center/contain;
}

/* INTRODUCTION（講師紹介）
========================= */
.intro{
  background: var(--white);
  padding-bottom: 110px;
}

.intro-grid{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
  align-items: start;
  padding-top: 10px;
  width: var(--inner-max);
  margin: 0 auto;
}

.intro-card{
  text-align: center;
}

.intro-photo{
  margin: 0 auto;
  width: 240px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  overflow: hidden;
}
.intro-photo img{
  width:100%;
  height:100%;
  object-fit: cover;
  display:block;
}

.intro-title{
  margin: 26px 0 0;
  color: var(--green);
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0.10em;
}

.intro-text{
  margin: 14px 0 0;
  font-size: 14px;
  font-weight: 700;
  line-height: 2.0;
  letter-spacing: 0.06em;
  color:#000;
  text-align: center;
}


.intro-achievements{
  margin: 22px 0 0;
  background: var(--soft-green);
  padding: 22px 22px;
  text-align: left;
}

.intro-achievements-title{
  margin: 25px 0 -5px;
  color: var(--green);
  font-weight: 900;
  letter-spacing: 0.12em;
  text-align:center;
}

.intro-achievements-text{
  margin:0;
  font-size: 14px;
  font-weight: 700;
  line-height: 2.0;
  letter-spacing: 0.06em;
  color:#000;
}

/* =========================
  Responsive
========================= */
@media (max-width: 980px){
  .section-head{
    padding: 70px 0 30px;
  }
  .section-title{
    font-size: 32px;
  }

  .course-steps{
    grid-template-columns: 1fr;
    gap: 26px;
    padding: 20px 0 10px;
  }
  .course-step--arrow{
    display:none;
  }

  .intro-grid{
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .intro-text{
    text-align: center; /* スマホは読みやすく中央でもOK。左にしたければ削除 */
  }
}

/* Entry
=================================*/

.entry{
  background: var(--soft-green);
  padding: 80px 0 110px;
}

/* ENTRYは上の余白を少し詰め気味に */
.section-head--entry{
  padding: 0 0 40px;
}

.entry-flow{
  max-width: 820px;
  margin: 0 auto;
  padding-top: 25px;
}

.entry-step{
  position:relative;
  display:flex;
  align-items:center;
  justify-content:center;
  background-color:var(--entry-green);
  padding:10px 20px;
}


.entry-step-no{
  position:absolute;
  left:22px;
  margin:0;
  font-family: var(--en);
  color: var(--green);
  font-weight:900;
  letter-spacing:0.18em;
  font-size:14px;
}


.entry-step-text{
  margin:0;
  font-weight:900;
  letter-spacing:0.18em;
  font-size:18px;
  text-align:center;
}


/* STEP04だけ文字がグリーン */
.entry-step-text--green{
  color: var(--green);
}


/* 矢印（三角形） */
.entry-arrow{
  width: 0;
  height: 0;
  margin: 10px auto;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 14px solid var(--green);
}

.entry-goal{
  background: var(--green);
  padding: 18px 22px;
  margin-top: 6px;
}

.entry-goal-text{
  margin:0;
  text-align:center;
  color: #fff;
  font-weight: 900;
  letter-spacing: 0.22em;
  font-size: 18px;
}

/* CTAボタン */
.entry-cta{
  display:flex;
  justify-content:center;
  margin-top: 70px;
}

.entry-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width: 340px;
  height: 78px;
  border-radius: 999px;
  background: var(--green);
  color:#fff;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-decoration:none;
  transition: transform .15s ease, opacity .15s ease;
}

.entry-btn:hover{
  transform: translateY(-2px);
  opacity: .92;
}


/* ==================================================
  news.php
================================================== */

.page-news{
  padding:90px 0 120px;
  background:#fff;
}

/* tabs */
.page-news-tabs{
  display:flex;
  justify-content:center;
  gap:48px;
  margin:40px 0 70px;
}

.page-news-tab{
  background:none;
  border:none;
  font-weight:900;
  letter-spacing:0.15em;
  font-size:13px;
  cursor:pointer;
  color:#000;
}

.page-news-tab.is-active{
  color:var(--green);
}

/* list */
.page-news-list{
  display:block;
}

.page-news-item{
  display:grid;
  grid-template-columns:300px 1fr;
  gap:60px;
  align-items:center;
  padding:50px 0;
  border-bottom:1px solid rgba(0,0,0,0.2);
  text-decoration:none;
  color:inherit;
}

.page-news-item:last-child{
  border-bottom: none;
}

.page-news-thumb img{
  width:280px;
  height: 180px;
  aspect-ratio:16/10;
  object-fit:cover;
  display:block;
}

.page-news-meta{
  font-size:12px;
  letter-spacing:0.12em;
  margin-bottom:14px;
}

.page-news-body{
  min-width: 0; /* 長いタイトル折り返し */
}

.page-news-title{
  font-size:20px;
  font-weight:900;
  letter-spacing:0.08em;
  line-height:1.8;
}

/* PAGE NEWS PAGINATION
========================= */
.page-news-pagination{
  display:flex;
  justify-content:center;
  margin-top: 80px;
}

.page-news-pagination-list{
  display:flex;
  align-items:center;
  gap: 18px;
  list-style:none;
  padding:0;
  margin:0;
  font-family: var(--jp);
}

.page-news-pagination-list li{
  font-weight:900;
  letter-spacing:0.15em;
  font-size:16px;
}

/* link */
.page-news-pagination-list a{
  text-decoration:none;
  color:#000;
  padding:6px 10px;
  transition:.2s;
}

/* current */
.page-news-pagination-list .is-current span{
  color:var(--green);
}

/* dots */
.page-news-pagination-list .dots span{
  opacity:.6;
}

/* next矢印 */
.page-news-pagination-list .next a{
  font-size:18px;
  padding-left:6px;
}



/* =========================
  responsive
========================= */
@media(max-width:900px){

  .page-news-item{
    grid-template-columns:1fr;
    gap:20px;
    padding:30px 0;
  }

  .page-news-tabs{
    gap:18px;
    flex-wrap:wrap;
  }

  .page-news-title{
    font-size:18px;
  }
}


/* =========================
  Responsive
========================= */
@media (max-width: 980px){
  .news{
    padding: 70px 0 90px;
  }

  .news-tabs{
    gap: 18px;
    flex-wrap: wrap;
    margin: 20px 0 40px;
  }

  .news-item{
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 28px 0;
  }

  .news-title{
    font-size: 18px;
    letter-spacing: 0.06em;
  }
}


/* =========================
  Responsive
========================= */
@media (max-width: 980px){
  .entry{
    padding: 60px 0 80px;
  }

  .entry-step{
    grid-template-columns: 110px 1fr;
    padding: 12px 16px;
  }

  .entry-step-text{
    font-size: 16px;
    letter-spacing: 0.12em;
  }

  .entry-btn{
    width: min(340px, 90vw);
    height: 70px;
  }
}




/* ===============================
   Responsive
=================================*/
@media(max-width:900px){

  .eco-columns{
    grid-template-columns:1fr;
  }

  .eco-columns::before,
  .eco-columns::after{
    display:none;
  }

  .activity-grid{
    grid-template-columns:1fr;
  }

}

/* ==================================================
  download.php
================================================== */

.container-download {
  max-width: var(--inner-max);
  margin: 0 auto;
  padding: 0 24px;
  overflow: hidden;
}

.page-download{
  background: #fff;
  padding: 90px 0 120px;
}

.section-head--download{
  padding: 0 0 40px;
}

/* grid: 3列 */
.page-download-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 46px 46px;
  margin-top: 20px;
}

/* card */
.page-download-item{
  text-align:left;
}

.page-download-thumb{
  margin:0 0 16px;
}

.page-download-thumb img{
  width:100%;
  height:auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display:block;
}

/* title with icon */
.page-download-title{
  margin: 0 0 12px;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0.10em;
  text-align: center;
  font-family: var(--jp);
}

.page-download-link{
  color: var(--green);
  text-decoration:none;
  align-items:center;
  display:inline-flex;
  align-items:center;
  gap: 5px;
}

.page-download-ico{
  width: 24px;
  height: 32px;
  display:inline-block;
  background: url("/image/download.svg") no-repeat center/contain;
  transform: translateY(2px);
}

/* text */
.page-download-text{
  margin:0;
  font-size: 13px;
  font-weight: 700;
  line-height: 2.0;
  letter-spacing: 0.06em;
  color:var(--text);
}

/* bottom button */
.page-download-cta{
  display:flex;
  justify-content:center;
  margin-top: 70px;
}

.page-download-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width: 320px;
  height: 85px;
  border-radius: 999px;
  background: var(--green);
  color:#fff;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-decoration:none;
  transition: transform .15s ease, opacity .15s ease;
}


/* =========================
  Responsive
========================= */
@media (max-width: 980px){
  .page-download{
    padding: 70px 0 90px;
  }

  .page-download-grid{
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .page-download-btn{
    width: min(420px, 90vw);
    height: 74px;
  }
}

/* ==================================================
  contact.php
================================================== */
.page-contact{
  background:#fff;
  padding: 90px 0 120px;
}

.section-head--contact{
  padding: 0 0 50px;
}

/* form width */
.page-contact-form{
  max-width: 880px;
  margin: 0 auto;
}

/* grid */
.page-contact-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 28px;
}

/* field */
.page-contact-field{
  display:flex;
  flex-direction: column;
  gap: 10px;
}

.page-contact-field--full{
  grid-column: 1 / -1;
}

.page-contact-label{
  font-weight: 800;
  letter-spacing: 0.10em;
  font-size: 14px;
  color:#000;
}

.page-contact-required{
  color: var(--green);
  font-weight: 900;
  margin-left: 8px;
}

/* inputs */
.page-contact-input,
.page-contact-select,
.page-contact-textarea{
  width:100%;
  border: 1px solid rgba(0,0,0,0.35);
  border-radius: 2px;
  padding: 14px 14px;
  font-size: 14px;
  letter-spacing: 0.06em;
  background:#fff;
  outline: none;
}

.page-contact-textarea{
  padding: 16px 14px;
  resize: vertical;
  min-height: 170px;
}

/* select arrow */
.page-contact-selectwrap{
  position: relative;
}
.page-contact-selectwrap::after{
  content:"";
  position:absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 10px solid var(--green);
  pointer-events:none;
}
.page-contact-select{
  appearance: none;
  -webkit-appearance: none;
  padding-right: 44px;
}

/* focus */
.page-contact-input:focus,
.page-contact-select:focus,
.page-contact-textarea:focus{
  border-color: var(--green);
  box-shadow: 0 0 0 2px rgba(0,0,0,0.06);
}

/* privacy */
.page-contact-privacy{
  margin-top: 34px;
  display:flex;
  justify-content:center;
}

.page-contact-check{
  display:flex;
  align-items:center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  font-size: 13px;
}

.page-contact-check input{
  width: 16px;
  height: 16px;
  accent-color: var(--green);
}

.page-contact-check span{
  color:#000;
}
.page-contact-check span b{
  color: var(--green);
}

/* actions */
.page-contact-actions{
  display:flex;
  justify-content:center;
  margin-top: 26px;
}

.page-contact-submit{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width: 360px;
  height: 80px;
  border: 0;
  border-radius: 999px;
  background: var(--green);
  color:#fff;
  font-weight: 900;
  letter-spacing: 0.18em;
  cursor:pointer;
  transition: transform .15s ease, opacity .15s ease;
}

.page-contact-submit:hover{
  transform: translateY(-2px);
  opacity: .92;
}

.page-contact-submit:focus-visible{
  outline: 2px solid var(--green);
  outline-offset: 6px;
}

/* responsive */
@media (max-width: 980px){
  .page-contact{
    padding: 70px 0 90px;
  }

  .page-contact-grid{
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .page-contact-submit{
    width: min(360px, 90vw);
    height: 72px;
  }
}

/* ==================================================
  news-detail.php
================================================== */
.page-news-detail{
  background:#fff;
  padding: 90px 0 120px;
}

.page-news-detail-head{
  text-align:center;
  padding-bottom: 40px;
}

.page-news-detail-title{
  margin:0;
  color: var(--green);
  font-size: 40px;
  font-weight: 900;
  letter-spacing: 0.08em;
  font-family: var(--en);
}

.page-news-detail-sub{
  margin: 10px 0 0;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.18em;
  color:#000;
}

/* article width */
.page-news-detail-article{
  max-width: 760px;
  margin: 0 auto;
}

/* title + meta */
.page-news-detail-h1{
  margin: 10px 0 22px;
  font-size: 24px;
  letter-spacing: 0.08em;
  line-height: 2.0;
  color:var(--text);
  text-align:center;
}

.page-news-detail-meta{
  margin: 0 0 30px;
  font-size: 14px;
  letter-spacing: 0.14em;
  color:#000;
  text-align:center;
}

/* hero image */
.page-news-detail-hero{
  margin: 0 0 34px;
}
.page-news-detail-hero img{
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display:block;
}

/* body text */
.page-news-detail-body{
  font-size: 18px;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.06em;
  color:var(--text);
}
.page-news-detail-body p{
  margin: 0 0 18px;
}

/* sections */
.page-news-detail-section{
  margin-top: 34px;
}

/* h2 with circle */
.page-news-detail-h2{
  margin: 0 0 12px;
  font-size: 24px;
  letter-spacing: 0.12em;
  color:#000;
  display:flex;
  align-items:center;
  gap: 10px;
}
.page-news-detail-h2::before{
  content:"";
  width: 14px;
  height: 14px;
  border: 2px solid #000;
  border-radius: 50%;
  display:inline-block;
}

/* list with dot */
.page-news-detail-list{
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0px;
}
.page-news-detail-list li{
  position: relative;
  padding-left: 16px;
}
.page-news-detail-list li::before{
  content:"・";
  position:absolute;
  left:0;
  top: 0;
}

/* split area (text + image) */
.page-news-detail-split{
  display:grid;
  grid-template-columns: 1fr 335px;
  gap: 34px;
  align-items: start;
}

.page-news-detail-sideimg{
  margin: 0px 0 0;
}
.page-news-detail-sideimg img{
  width: 335px;
  height: 245px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display:block;
}

/* bottom button */
.page-news-detail-cta{
  display:flex;
  justify-content:center;
  margin-top: 44px;
}

.page-news-detail-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width: 320px;
  height: 84px;
  border-radius: 999px;
  background: var(--green);
  color:#fff;
  letter-spacing: 0.18em;
  text-decoration:none;
  transition: transform .15s ease, opacity .15s ease;
}


/* =========================
  Responsive
========================= */
@media (max-width: 980px){
  .page-news-detail{
    padding: 70px 0 90px;
  }

  .page-news-detail-title{
    font-size: 34px;
  }

  .page-news-detail-article{
    max-width: 92vw;
  }

  .page-news-detail-split{
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .page-news-detail-sideimg{
    margin: 0;
  }

  .page-news-detail-btn{
    width: min(420px, 90vw);
    height: 74px;
  }
}


  /* =========================
        JavaScript スクロールアニメーション
    ========================= */
    .animate-on-scroll{
      opacity:0;
      transform:translateY(40px);
      transition:all .8s ease;
    }
    
    .animate-on-scroll.visible{
      opacity:1;
      transform:translateY(0);
    }