/* ====================================  
   Design Tokens
   ==================================== */
:root {
  --color-text: #464646;    /* 本文テキスト */
  --color-key:  #009F44;    /* ブランドキー色 */
  --color-muted:#6C757D;    /* 補助グレー */

  --fz-body-pc: 16px;
  --fz-body-sp: 14px;
  --fw-body: 500; 
}

/* ====================================  
   Base
   ==================================== */
html { scroll-behavior: smooth; }

body {
  color: var(--color-text);
  font-size: var(--fz-body-sp); 
  font-weight: var(--fw-body); 
  line-height: 1.75;
  font-family: "not sans jp", sans-serif;
  background: #fff;
  margin: 0;
}
@media (min-width: 768px){
  body { font-size: var(--fz-body-pc); }  /* PC: 16px */
}

/* ====================================  
   Typography
   ==================================== */
h1, h2, h3, h4 {
  font-weight: 700;
  color: var(--color-text);
  margin: 0 0 var(--space-3);
}

/* SPサイズ（デフォルト） */
h1 { font-size: 24px; line-height: 1.25; }
h2 { font-size: 20px; line-height: 1.3; }
h3 { font-size: 18px; line-height: 1.35; }
h4 { font-size: 16px; line-height: 1.4; }

/* PCサイズ */
@media (min-width: 768px){
  h1 { font-size: 36px; }
  h2 { font-size: 28px; }
  h3 { font-size: 22px; }
  h4 { font-size: 18px; }
}

/* ====================================  
   Links
   ==================================== */
a {
  color: currentColor;
  text-decoration: underline;
  transition: opacity .2s;
}
a:hover,
a:focus {
  opacity: .7;
}
:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 2px;
}

/* ====================================  
   images 
   ==================================== */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Lists */
ul, ol {
  padding-left: 1.5em;
}

/* ====================================  
   Buttons (共通スタイル) 
   ==================================== */
/* 基本ボタン */
.common-btn{
  position: relative;
  display: inline-block;  
  padding: 14px 65px;
  border: 0px solid var(--color-text);
  border-radius: 0px;
  font-size: 14px;
  color: var(--color-text);
  font-weight: 600;  
  line-height: 1;
  text-align: center;
  text-decoration: none;
  background-color: #fff;
}
@media (min-width:768px){
  .common-btn{ font-size:16px; } 
}
/* 右アイコン（緑丸＋白矢印のSVG） */
.common-btn-arrow::after{
  content: "";
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background: url("../images/right-arrow.svg") center / contain no-repeat;
}
/* Hover動作：ちょっと浮く */
.common-btn:hover,
.common-btn:focus{
  transform: translateY(-2px);
  opacity: .85;
}

/* 緑背景ボタン */
.common-btn--green {
  position: relative;
  display: inline-block;
  padding: 14px 65px;
  background-color: var(--color-key); /* 緑背景 */
  color: #fff; /* 白文字 */
  border: none;
  border-radius: 0;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-align: center;
  text-decoration: none;
}

@media (min-width:768px){
  .common-btn--green { font-size:16px; }
}

/* 白丸 + 緑矢印 */
.common-btn--green.common-btn-arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background-color: #fff;            /* 白丸 */
  border-radius: 50%;                /* 丸にする */
  background-image: url("../images/right-arrow-green.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px auto;        /* 矢印を丸に収める */
}

/* ホバー */
.common-btn--green:hover,
.common-btn--green:focus {
  transform: translateY(-2px);
  opacity: .9;
}


/* ====================================  
   見出し（固定ページ）
   ==================================== */
/* === Page Head (H1帯) === */
.page-head{
  background:#f0f0f0;
  margin-inline: calc(50% - 50vw);
  margin-bottom: 40px;
}
.page-head .container-main{
  display:flex;
  align-items:center;
  min-height: 100px;
}
@media (min-width: 768px){
  .page-head .container-main{ min-height: 160px; } 
  .page-head{ margin-bottom: 80px; } 
}

.page-title{
  display:flex;
  align-items:baseline;
  gap: 8px;
  margin:0;
  color: var(--color-text);
}
.page-title__en{ font-weight:700; font-size: 24px; letter-spacing:.04em; }
.page-title__ja{ font-weight:600; font-size: 10px; letter-spacing:.02em; }

@media (min-width: 768px){
  .page-title{ gap: 14px; }
  .page-title__en{ font-size: 36px; }
  .page-title__ja{ font-size: 14px; }
}

@media (max-width: 767.98px){
  .container-main,
  .container-narrow{ padding-inline: 16px; }
}

/* === H1（投稿） === */
.single-topic .entry-title {
  font-weight: 700;
  color: var(--color-text);
  font-size: 28px;
  margin-top: 30px; 
  margin-bottom: 24px;
}
@media (min-width: 768px){
  .single-topic .entry-title { font-size: 36px; }
   margin-top: 60px; 
   margin-bottom: 32px;
}

/* === H2 / H3 / H4（固定ページ・投稿 共通） === */
.entry-content h2,
.entry-content h3,
.entry-content h4{
  margin: 0;
  font-weight: 600;
  color: var(--color-text);
}

.entry-content h2{
  position: relative;
  padding-bottom: .75rem;
}
.entry-content h2::after{
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 3px;
  background: var(--color-key);
}

.entry-content h3{
  color: var(--color-key);
}

.entry-content h4{
  color: var(--color-taxt);
}
.entry-content p {
  margin-bottom: 0px; 
}

/* =========================
   h2見出し（TOP）
   ========================= */
/* 通常 */
  .top-heading {
  display: flex;
  flex-direction: column;      /* 縦並び */
  align-items: center;         /* センター寄せ */
  justify-content: center;
  color: var(--color-text);
  text-align: center;
  margin-bottom: 2rem;
}

/* 英語タイトル */
.top-heading__en {
  font-weight: 700;
  font-size: 20px;             /* SPデフォルト */
  letter-spacing: 0.05em;
  line-height: 1.2;
}

/* 日本語タイトル */
.top-heading__ja {
  font-weight: 600;
  font-size: 10px;
  margin-top: 6px;             /* 英語との間隔 */
  letter-spacing: 0.04em;
}

/* PC調整 */
@media (min-width: 768px) {
  .top-heading__en {
    font-size: 34px;
  }
  .top-heading__ja {
    font-size: 12px;
    margin-top: 8px;
  }
}
/* =========================
   h3見出し（TOP）
   ========================= */
.top-m-heading {
  color: #FFFFFF;
  font-weight: 700;
  margin-right: .25em;
}
   
/* ====================================  
   コンテンツ幅
   ==================================== */
.container-main {
  max-width: 1100px;          /* サイトの基準幅 */
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--bs-gutter-x, 0.75rem);   /* ← これ追加 */
  padding-right: var(--bs-gutter-x, 0.75rem);  /* ← これ追加 */
}

.container-narrow{
  max-width: 900px;          /* 狭め幅 */
  margin-left: auto;
  margin-right: auto;
}


}

/* ====================================  
   ヘッダー
   ==================================== */
.site-header .navbar{
  min-height: 60px;       
  padding-top: .75rem;  
  padding-bottom: .75rem;
}
@media (min-width: 992px){
  .site-header .navbar{
    min-height: 80px;      
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
}

.ne-logo{ height: 30px; width: auto; } 

.site-header .nav-link{
  font-weight: 600;
  color: #464646;  
  text-decoration: none;
}
.site-header .nav-link:hover,
.site-header .nav-link:focus{
  color: #464646;
  opacity: .7;
  text-decoration: none;
}

/* ENGLISHリンク（PC/SM共通） */
.lang-link{
  font-size: 12px;
  color: #000000;
  font-weight: 400;
  text-decoration: none;
}
.lang-link:hover{ opacity: .7; }

/* ハンバーガー（シンプル3本線） */
.navbar-toggler:focus{ box-shadow:none; }

@media (max-width: 991.98px){
  .site-header .navbar-toggler{
    display: flex;
    align-items: center;                          /* ← 縦中央 */
    justify-content: center;                      /* ← 横も中央 */
                          /* ナビと同じ高さにしてズレ防止 */
    padding: 0 .75rem;                            /* クリック領域だけ残す */
    border: 0;
    box-shadow: none;
  }
}

.ne-burger{
  display:inline-block;
  width:28px; height:2px; background:#464646;
  position:relative;
}
.ne-burger::before, .ne-burger::after{
  content:""; position:absolute; left:0; right:0; height:2px; background:#464646;
}
.ne-burger::before{ top:-8px; }
.ne-burger::after { top: 8px; }

/* ====================================  
   セクション間マージン
   ==================================== */
/* 追加ユーティリティ（Bootstrap拡張） */
.py-6 { padding-top: 50px !important; padding-bottom: 50px !important; }  


/* レスポンシブ版（必要なら） */
@media (min-width: 768px){
  .py-md-6 { padding-top: 90px !important; padding-bottom: 90px !important; }
}

.bottom-space{ padding-bottom: 80px !important; }  

/* =========================
   お問い合わせフォーム
========================= */
/* MW WP Form Bootstrap対応 */
.recruit-contact .form-label {
  font-weight: 600;
  color: var(--color-text);
}

.recruit-contact .form-control {
  border-radius: 6px;
  border: 1px solid var(--color-muted);
  padding: 0.625rem 0.75rem;
}

.recruit-contact .form-control:focus {
  border-color: var(--color-key);
  box-shadow: 0 0 0 0.2rem rgba(20, 153, 102, 0.15);
}

/* ===============================
   PRODUCT CARD DESIGN（修正版）
   =============================== */
.card.product-card {
  position: relative;
  border-radius: 12px;
  border-bottom-right-radius: 0; /* 右下だけ鋭角 */
  background: #fff;
}
/* 右下の三角 */
.card.product-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 50px 50px;
  border-color: transparent transparent var(--color-key, #008b4b) transparent;
}

/* 白丸＋矢印アイコン（中央寄せ修正版） */
.card.product-card .card-arrow {
  position: absolute;
  bottom: 15px; /* 三角の高さ/幅の半分程度 */
  right: 15px;
  transform: translate(50%, 50%); /* 三角形の中に中央寄せ */
  width: 16px;
  height: 16px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.card.product-card .card-arrow svg {
  width: 12px;
  height: 12px;
  fill: var(--color-key, #008b4b);
}
/* タイトル */
.card.product-card h3 {
  font-weight: 400;
  font-size: 1rem;
  color: #464646;
  text-align: center;
  margin-bottom: 1rem;
}

/* ===============================
   PRODUCT CARD DESIGN
   =============================== */
.card.product-card {
  position: relative;
  border-radius: 12px;
  border-bottom-right-radius: 0; /* 右下だけ鋭角 */
  background: #fff;
}
/* 右下の三角 */
.card.product-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 50px 50px;
  border-color: transparent transparent var(--color-key, #008b4b) transparent;
}

/* 白丸＋矢印アイコン（中央寄せ修正版） */
.card.product-card .card-arrow {
  position: absolute;
  bottom: 15px; /* 三角の高さ/幅の半分程度 */
  right: 15px;
  transform: translate(50%, 50%); /* 三角形の中に中央寄せ */
  width: 16px;
  height: 16px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.card.product-card .card-arrow svg {
  width: 12px;
  height: 12px;
  fill: var(--color-key);
}
/* タイトル */
.card.product-card h3 {
  font-weight: 500;
  font-size: 14px;
  color: #464646;
  text-align: center;
  margin-bottom: 1rem;
  line-height: 1.6;
}

/* ====================================
   TOPICブロック調整
   ==================================== */
/* カテゴリラベル*/
.topic-card .badge {
  background: var(--color-key) ;
  color: #fff; 
  font-weight: 600;
}

/* 日付 */
.topic-card time {
  color: var(--color-text);
  font-size: 14px;
  font-weight: 400;
}

/* タイトル */
.topic-card__title {
  color: var(--color-text);
  font-weight: 500;
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 1rem;
}
@media (min-width:768px){
  .topic-card__title{ font-size:16px; } 
}

.ratio-3x2 {
  --bs-aspect-ratio: 66.66%;
}

/* ===============================
   背景色
   =============================== */
.bg-gray {
  background-color: #f0f0f0;
}

.bg-green {
  background: linear-gradient(
    to top,                         /* 下→上 */
    rgba(0, 159, 68, 0.40) 0%,      /* キーカラー（濃さ15%） */
    rgba(0, 159, 68, 0.05) 50%,     /* 中間はさらに薄く */
    #fff 100%                       /* 上は白 */
  );
}

/* ===============================
   スマホで画面が揺れ動かないように
   =============================== */
html {
  overflow-y: scroll;
  scrollbar-gutter: stable both-edges;
}

body {
  overflow-x: hidden;
}

/* ===============================
   RECRUIT SECTION
   =============================== */
.recruit-box {
  background-color: var(--color-key, #008b4b);
}

/* 角丸 */
.recruit-box {
  border-radius: 16px;
  overflow: hidden;
}

/* 画像エリア */
.recruit-box img {
  object-fit: cover;
}

/* SP時は縦並び */
@media (max-width: 767.98px) {
  .recruit-box {
    flex-direction: column;
  }
}

/* ===============================
   フェード
   =============================== */
.fadein {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

.fadein.show {
  opacity: 1;
  transform: translateY(0);
}

body:not(.home) .fadein {
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
}

/* ===============================
   トピックスライダー
   =============================== */
.topic-gallery {
  max-width: 900px;
  margin: 0 auto 30px;
}

.topic-main {
  width: 100%;
  margin-bottom: 16px;
}
.topic-main__frame {
  width: 100%;
  aspect-ratio: 3 / 2;
  background: #e5e5e5;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.topic-main__frame img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* サムネイル */
.topic-thumb {
  width: 100%;
}
.topic-thumb__frame {
  width: 100%;
  aspect-ratio: 3 / 2;
  background: #f0f0f0;
  overflow: hidden;
  cursor: pointer;
}
.topic-thumb__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity .3s;
}
.topic-thumb .swiper-slide-thumb-active img {
  opacity: 0.7;
}

/* PC時：サムネイル5枚並列 */
@media (min-width: 768px) {
  .topic-thumb .swiper-slide {
    width: calc(20% - 4px);
    margin-right: 5px;
  }
}

/* ===============================
   プロダクトのデザインを戻したら後で消す
   =============================== */
/* ▼ カード（PC：横並び / SP：縦並び） */
.product-card {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  align-items: center;
  gap: 16px;
  height: 100%;
}

/* PCは横並び、SPは縦並びへ切り替え */
.product-card {
  display: flex;
  flex-direction: row; /* PC */
}

@media (max-width: 767px) {
  .product-card {
    flex-direction: column; /* SPは縦並び */
    text-align: center;
    padding: 14px;
  }
}

/* ▼ アイコン */
.product-card .icon-wrap img {
  width: 48px;
  height: auto;
}

@media (max-width: 767px) {
  .product-card .icon-wrap img {
    width: 40px; /* SPは少し小さく */
  }
}

/* ▼ テキスト */
.product-card .text-wrap {
  flex: 1;
}

.product-card .title {
  font-weight: 700;
  margin-bottom: 3px;
}

.product-card .sub {
  font-size: 14px;
  color: #666;
  margin: 0;
}

@media (max-width: 767px) {
  .product-card .sub {
    font-size: 13px;
  }
}

.border-on { border: 1px solid #e5e5e5; }

/* ===============================
   SERCVICE
   =============================== */
/* ▼ SERVICE セクション全体（背景画像） */
.service-section {
  background: url("/wp-content/themes/neat-eng/assets/images/service-bg.png") center/cover no-repeat;
  position: relative;
}

/* ▼ グリーン透過ボックス */
.service-box {
  background: rgba(0, 159, 68, 0.80);    /* 緑80%透明*/

  border-radius: 16px;
}