@charset "utf-8";
/* ===============================================================

  共通部分 

=============================================================== */ :root {
  --h_color: #00a53d;
}
html {
  scroll-padding-top: 150px;
  overflow-x: hidden;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch
}
body {
  margin: 0;
  padding: 0;
  font-family: "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
  font-size: 16px;
  color: #242633;
  background: #e6f9e5;
  line-height: 1.6;
  font-feature-settings: "palt";
}
@media (min-width: 768px) {
  body {
    font-size: 18px;
    line-height: 1.8;
  }
}
/*
  テキスト設定
================================================ */
/* [ ▼ h1 ] ---------- */
.underlayer .page_title_area {
  position: relative;
  width: 100%;
  height: 275px; /* ここで高さを決める */
  z-index: 5;
}
.underlayer .page_title_area_noimg {
  position: relative;
  width: 100%;
  height: 140px;
  z-index: 5;
  background: linear-gradient(90deg, #55ba4f 0%, #00a53d 100%);
  border-radius: 0 0 40px 40px;
}
@media (min-width: 768px) {
  .underlayer .page_title_area_noimg {
    height: 200px;
    border-radius: 0 0 80px 80px;
  }
}
.bg_layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; /* 親と同じ 275px になる */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  /* 切り抜き */
  clip-path: inset(0 0 0 0 round 0 0 40px 40px);
  -webkit-clip-path: inset(0 0 0 0 round 0 0 40px 40px);
  z-index: 1;
}
@media (min-width: 768px) {
  .bg_layer {
    clip-path: inset(0 0 0 0 round 0 0 40px 40px);
    -webkit-clip-path: inset(0 0 0 0 round 0 0 40px 40px);
  }
}
h1.page_title {
  position: absolute;
  left: 50%;
  /* 親要素(275px)の底辺を基準に、半分外に出す */
  bottom: -1.083rem;
  transform: translate(-50%, 50%);
  margin: 0;
  padding: 0;
  text-align: center;
  white-space: nowrap;
  z-index: 10;
  line-height: 1;
}
/* --- <span>NEWS</span> ふち文字 --- */
h1 .en_title {
  margin-bottom: 1rem;
  font-family: "Archivo Narrow", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  display: block;
  font-size: 5.5rem;
  letter-spacing: 0.1em;
  color: #e6f9e5;
  /* 8方向のtext-shadow */
  text-shadow:
    2px 2px 0 #008800, -2px 2px 0 #008800, 2px -2px 0 #008800, -2px -2px 0 #008800, 2px 0px 0 #008800, -2px 0px 0 #008800, 0px 2px 0 #008800, 0px -2px 0 #008800;
}
@media (max-width: 768px) {
  h1 .en_title {
    font-size: 3.5rem;
  }
}
/* --- <span>ニュース一覧</span> --- */
h1 .jp_title {
  display: block;
  font-size: 1.166rem;
  font-weight: bold;
  color: #008800;
}
h2 {
  margin-bottom: 5rem;
  font-weight: 800;
  letter-spacing: 3px;
  line-height: 1em;
  font-size: 2.666rem;
  text-align: left;
}
@media (min-width: 768px) {
  h2 {
    font-size: 3.666rem;
  }
}
/* タイトル全体のコンテナ */
.section_title {
  color: #003814;
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.title_upper {
  display: flex;
  align-items: center;
  gap: 15px;
}
.title_line {
  display: inline-block;
  width: 10px;
  height: 1px;
  background-color: #003814;
  flex-shrink: 0;
}
@media (min-width: 768px) {
  .title_line {
    width: 114px;
  }
}
.title_en {
  font-size: 14px;
  font-family: "Archivo Narrow", sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  line-height: 1;
}
.title_jp {
  padding-left: 24px;
  font-size: 1.6rem;
  font-weight: bold;
}
@media (min-width: 768px) {
  .title_jp {
    padding-left: 129px;
  }
}
.bg_green_gradation .section_title {
  color: #fff;
}
.bg_green_gradation .title_line {
  background-color: #fff;
}
h3 {
  margin-bottom: .6em;
  border-radius: 3px;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--h_color);
  line-height: 1.4;
}
@media (min-width: 992px) {
  h3 {
    font-size: 2rem;
  }
}
@media (min-width: 1200px) {
  h3 {
    font-size: 2.388rem;
  }
}
h4 {
  display: block;
  color: var(--h_color);
  font-size: 1.4rem;
  font-weight: 800;
  line-height: 1.4;
  margin-bottom: 40px; /* 下のコンテンツとの余白 */
  padding-left: 0; /* 左寄せ用の余白をリセット */
}
@media (min-width: 992px) {
  h4 {
    font-size: 1.8rem;
  }
}
.dot_deco {
  position: relative;
  display: inline-block;
  padding-bottom: 25px;
  text-align: center;
}
/* ★テキストの下にSVGを配置（擬似要素） */
.dot_deco::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  /* SVG画像の設定 */
  width: 74px;
  height: 12px;
  background-image: url('../images/common/dot_deco.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
h5 {
  display: block;
  text-align: center; /* テキストを中央寄せ */
  font-size: 1.4rem;
  font-weight: 800;
  line-height: 1.4;
  margin-bottom: 40px; /* 下のコンテンツとの余白 */
  padding-left: 0; /* 左寄せ用の余白をリセット */
}
@media (min-width: 992px) {
  h5 {
    font-size: 1.8rem;
  }
}
p {
  text-align: left;
  line-height: 1.6em;
}
a:hover {
  text-decoration: none;
}
.caution {
  font-size: .85em;
}
/*
  各デバイス設定
================================================ */
/* スマホのみ非表示 */
@media (max-width: 767px) {
  .hideSp {
    display: none;
  }
}
/* タブレットのみ非表示 */
@media screen and (min-width: 768px) and (max-width: 991px) {
  .hideTab {
    display: none;
  }
}
/* パソコンのみ非表示 */
@media (min-width: 992px) {
  .hidePc {
    display: none;
  }
}
/* スマホミニのみ改行させる */
@media (max-width: 379px) {
  .brSpMini::before {
    content: "\A";
    white-space: pre;
  }
}
/* スマホのみ改行させる */
@media (max-width: 767px) {
  .brSp::before {
    content: "\A";
    white-space: pre;
  }
}
/* タブレットのみ改行させる */
@media screen and (min-width: 768px) and (max-width: 991px) {
  .brTab::before {
    content: "\A";
    white-space: pre;
  }
}
/* パソコンのみ改行させる */
@media (min-width: 992px) {
  .brPc::before {
    content: "\A";
    white-space: pre;
  }
}
/*
  要素設定
===================================================== */
/* [ ▼ 背景色 ] ---------- */
.bg_mint {
  background-color: #c7ebdb;
}
.bg_ice {
  background-color: #f5fbff;
}
.bg_green_gradation {
  color: #fff;
  background: linear-gradient(90deg, #55ba4f 0%, #00a53d 100%);
}
/* [ ▼ 背景角丸 ] ---------- */
.bg_radius_top {
  border-radius: 50px 50px 0 0;
}
@media (min-width: 768px) {
  .bg_radius_top {
    border-radius: 100px 100px 0 0;
  }
}
/* [ ▼ 画像レスポンシブ ] ---------- */
.img_fluid {
  max-width: 100%;
  height: auto;
}
/* [ ▼ 注意書き ] ---------- */
.caution {
  font-size: .85em;
}
/* [ ▼ マージン設定 ] ---------- */
.m_b_1 {
  margin-bottom: 1rem;
}
/* [ ▼ 順番入れ替え ] ---------- */
.order_1 {
  order: 1;
}
.order_2 {
  order: 2;
}
@media screen and (max-width: 767px) {
  .order_1 {
    order: 2;
  }
  .order_2 {
    order: 1;
  }
}
/* [ ▼ コンテナ内上下中央揃え ] ---------- */
.containerFull.align-items_center, .container.align-items_center {
  align-items: center;
}
/* [ ▼ テキスト寄せ ] ---------- */
.text_center {
  text-align: center;
}
.text_right {
  text-align: right;
}
/* [ ▼ 詳しく見るボタン ] ---------- */
/* 新しいボタンクラス */
a.more_btn {
  display: inline-flex;
  align-items: center;
  /* これで中身を両端に寄せる */
  justify-content: space-between;
  background-color: #008800;
  color: #fff;
  text-decoration: none;
  padding: 12px 15px 12px 30px;
  border-radius: 50px;
  font-weight: bold;
  transition: all 0.3s ease;
}
@media screen and (max-width: 991px) {
  a.more_btn {
    width: 100%;
  }
}
@media screen and (min-width: 992px) {
  a.more_btn {
    min-width: 320px;
  }
}
a.more_btn:hover {
  background-color: #00a000;
}
.bg_green_gradation a.more_btn {
  background-color: #efefef;
  color: #008800;
}
.bg_green_gradation a.more_btn:hover {
  background-color: #f3fff3;
}
.bg_green_gradation a.more_btn .arrow_btn {
  background-color: #008800;
}
.bg_green_gradation a.more_btn .arrow_icon_right {
  background-image: url("../images/common/icon_arrow_wht.svg");
}
/*
  動画
===================================================== */
.movie_box {
  position: relative;
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
}
.movie_box::after {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  content: "";
  display: block;
  width: 80px;
  height: 80px;
  z-index: 100;
  background-image: url("../images/common/play.svg");
  background-size: contain;
  pointer-events: none;
}
@media (min-width: 992px) {
  .movie_box::after {
    width: 148px;
    height: 148px;
  }
}
.movie_box:hover::after {
  cursor: pointer;
}
.movie_box img {
  width: 100%;
  height: auto;
  transition: .4s ease;
  filter: brightness(60%);
  opacity: .9;
}
.movie_box img:hover {
  cursor: pointer;
  filter: none;
  opacity: 1;
}
.ed-modal {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  z-index: 9999;
}
div#modalOverlay {
  width: 100%;
  height: 100%;
  display: flex;
  cursor: pointer;
}
.ed-closeModal {
  position: absolute;
  top: -35px;
  right: 5px;
  cursor: pointer;
  width: 1.5rem;
  height: 1.5rem;
  opacity: 0.5;
}
.ed-closeModal::before, .ed-closeModal::after {
  content: "";
  width: 35px;
  height: 2px;
  background: #fff;
  position: absolute;
  top: 0;
  transform: rotate(45deg);
  transform-origin: top left;
}
.ed-closeModal::before {
  left: 0;
}
.ed-closeModal::after {
  right: 0;
  transform: rotate(-45deg);
  transform-origin: top right;
}
.modalContent {
  width: 100%;
  max-width: 800px;
  margin: auto;
  position: relative;
}
.video_int {
  width: 100%;
  position: relative;
  height: 0;
  padding-bottom: 56.25%;
  overflow: hidden;
  filter: drop-shadow(0px 2px 5px #313131);
}
.video iframe, .video_int iframe {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
}
/* ===============================================================

  下層ページ共通

=============================================================== */
/*
  ページ内メニュー
================================================ */
.page_menu_area {
  margin-bottom: 5rem;
}
@media (min-width: 768px) {
  .page_menu_area {
    margin-bottom: 10rem;
  }
}
a.page_menu {
  display: block;
  position: relative;
  z-index: 1;
  width: 100%;
  padding: .8em 0;
  border-radius: 30px 0 30px 0;
  font-weight: bold;
  color: #fff;
  background: linear-gradient(135deg, #55ba4f 48%, #89c3eb 100%);
  text-align: center;
  transition: all 0.3s ease;
}
.page_menu_area div div:not(:last-child) {
  margin-bottom: 1rem;
}
a.page_menu:hover {
  filter: brightness(1.15) saturate(1.1);
}
/* ===============================================================

  ヘッダー

=============================================================== */
/* ========================================================
  共通
======================================================== */
header {
  position: relative;
  font-size: 1rem;
  font-weight: 800;
}
header nav.g_nav img {
  width: 300px;
}
nav.g_nav ul {
  list-style-type: none;
}
header nav.g_nav ul li {
  letter-spacing: .01em;
}
.site_logo h1 {
  margin-bottom: 0;
}
.site_logo img {
  height: auto;
  width: 100%;
  transition: width 0.4s ease;
}
/* ========================================================
  固定ヘッダー（JS制御）
======================================================== */
.js_header {
  position: fixed !important;
  top: 0;
  left: 0;
  width: 100%;
  transition: background 0.4s ease, box-shadow 0.4s ease, padding 0.4s ease;
  z-index: 9999;
}
.js_header.is_scrolled {
  background: rgba(0, 136, 0, 0.95);
  padding: 10px 0 !important;
  min-height: auto;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.underlayer .js_header.is_scrolled .hamburger span {
  background: #fff !important;
}
.js_header.is_scrolled .sns_nav {
  transform: translateY(0);
}
/* ========================================================
  PC用スタイル（1200px以上）
======================================================== */
@media (min-width: 1200px) {
  header {
    position: absolute;
    width: 100%;
    min-height: 64px;
    padding: 20px 0;
    z-index: 999;
  }
  .js_header.is_scrolled .site_logo img {
    width: 80%;
  }
  nav.g_nav {
    height: 100%;
  }
  nav.g_nav ul {
    display: flex;
    justify-content: flex-end;
    align-items: center !important;
    margin: 0 0 0 auto;
    padding: 0 30px;
    width: 100%;
    max-width: 72%;
    font-size: 1em;
    overflow: visible !important;
  }
  nav.g_nav ul li {
    position: relative;
    filter: drop-shadow(2px 2px 30px rgb(2 57 2 / .6)) drop-shadow(-2px -2px 30px rgb(2 57 2 / .6));
    overflow: visible !important;
  }
  nav.g_nav ul li.site_logo {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 30px;
  }
  nav.g_nav ul li:not(:first-of-type) {
    padding: 0 2em;
  }
  nav.g_nav ul li a {
    display: block;
    padding: 8px 0;
    color: #fff;
    text-align: center;
    text-decoration: none;
    line-height: 1.2;
    transition: all 0.3s;
  }
  nav.g_nav ul li a:hover {
    opacity: 1 !important;
    text-shadow:
      0 0 5px rgba(67, 137, 96, 0.8), 0 0 10px rgba(0, 165, 61, 0.5), 0 0 20px rgba(0, 128, 0, 0.3);
  }
  .sns_nav {
    position: absolute;
    right: calc(30px + 2em);
    display: flex;
    align-items: center;
  }
  .sns_nav ul {
    display: flex;
    align-items: center;
    gap: 1em;
    position: relative;
    margin: 0;
    padding: 0;
    list-style: none;
  }
  .sns_nav a img {
    width: 20px;
  }
}
@media (min-width: 1660px) {
  nav.g_nav ul {
    max-width: 80%;
  }
}
@media screen and (min-width: 1200px) and (max-width: 1300px) {
  nav.g_nav ul li:not(:first-of-type) {
    padding: 0 1.6em;
  }
}
/* ========================================================
  タブレット（992px〜1199px）
======================================================== */
@media screen and (min-width: 992px) and (max-width: 1199px) {
  header {
    position: absolute;
    width: 100%;
    min-height: 64px;
    padding: 20px 0;
    z-index: 999;
  }
  nav.g_nav {
    height: 100%;
  }
  /* ロゴ：左右中央 */
  nav.g_nav ul li.site_logo {
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    text-align: center;
    filter: none;
  }
  /* メインメニュー：ロゴの下・左右中央・均等並び */
  nav.g_nav ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center !important;
    align-items: center !important;
    margin: 0 auto !important;
    padding: 0 120px 0 !important; /* 左右にsns_nav分の余白 */
    width: 100% !important;
    max-width: 100% !important;
    font-size: .875em;
    overflow: visible !important;
    margin-top: 80px !important; /* ロゴの高さ分下げる */
  }
  nav.g_nav ul li {
    position: relative;
    filter: drop-shadow(2px 2px 30px rgb(2 57 2 / .6)) drop-shadow(-2px -2px 30px rgb(2 57 2 / .6));
    overflow: visible !important;
  }
  nav.g_nav ul li:not(:first-of-type) {
    padding: 0 1em;
    margin-top: 0;
  }
  nav.g_nav ul li a {
    display: block;
    padding: 8px 0;
    color: #fff;
    text-align: center;
    text-decoration: none;
    line-height: 1.2;
    transition: all 0.3s;
  }
  nav.g_nav ul li a:hover {
    opacity: 1 !important;
    text-shadow:
      0 0 5px rgba(67, 137, 96, 0.8), 0 0 10px rgba(0, 165, 61, 0.5), 0 0 20px rgba(0, 128, 0, 0.3);
  }
  /* SNSナビ：右上に固定 */
  .sns_nav {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    align-items: center;
  }
  .sns_nav ul {
    display: flex;
    align-items: center;
    gap: 1em;
    margin: 0;
    padding: 0;
    list-style: none;
  }
  .sns_nav a img {
    width: 20px;
  }
  /* サブメニュー：折り返し・中央配置 */
  .sub_menu_inner ul {
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 20px 40px !important;
    padding: 1rem 30px !important;
  }
}
/* ========================================================
  PC サブメニュー（992px以上共通）
======================================================== */
@media (min-width: 992px) {
  header, .js_header, nav.g_nav, nav.g_nav ul, .has_sub {
    overflow: visible !important;
  }
  .sub_menu {
    display: none;
    position: fixed !important;
    left: 0 !important;
    top: 64px;
    width: 100vw !important;
    transform: none !important;
    margin: 0 !important;
    padding: 0 !important;
    background: rgba(179, 226, 213, 0.95) !important;
    z-index: 9998 !important;
    box-sizing: border-box !important;
    opacity: 0;
    transition: opacity 0.4s ease, transform 0.4s ease !important;
    visibility: hidden;
  }
  .sub_menu::before {
    display: none !important;
  }
  .sub_menu.is-active {
    opacity: 1 !important;
    transform: translateY(0) !important;
    visibility: visible !important;
  }
  .sub_menu_inner {
    width: 100% !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 0 30px !important;
    box-sizing: border-box !important;
  }
  .sub_menu_inner ul {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 20px 50px !important;
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 1rem 0 !important;
    list-style: none !important;
  }
  .sub_menu_inner ul li {
    padding: 0 !important;
    margin: 0 !important;
    filter: none !important;
    background: none !important;
    position: static !important;
    transform: none !important;
    opacity: 1 !important;
  }
  .sub_menu_inner ul li a {
    display: flex !important;
    align-items: center !important;
    color: #3a342c !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    padding: 10px 15px !important;
    white-space: nowrap !important;
    text-decoration: none !important;
    transition: color 0.3s !important;
  }
  .sub_menu_inner ul li a:hover {
    color: #438960 !important;
  }
  .sub_menu_inner ul li a:hover span {
    background: #438960;
  }
  .sub_menu_inner ul li a span {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 20px;
    height: 20px;
    background: #3a342c;
    border-radius: 50%;
    margin-right: 8px;
    flex-shrink: 0;
    transition: 0.3s !important;
  }
  .sub_menu_inner ul li a span::after {
    content: '→';
    color: #fff;
    font-size: 9px;
    line-height: 1;
  }
}
/* ========================================================
  SP・TAB用スタイル
======================================================== */
@media (max-width: 991px) {
  header .sp_logo {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 70px;
    z-index: 9999;
    background: transparent;
    transition: background 0.3s;
  }
  header .sp_logo img {
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
    width: 50%;
    z-index: 9999;
  }
}
@media screen and (min-width: 576px) and (max-width: 767px) {
  header .sp_logo img {
    width: 40%;
  }
}
@media screen and (min-width: 768px) and (max-width: 991px) {
  header .sp_logo img {
    width: 30%;
  }
}
@media (max-width: 991px) {
  .hamburger {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 150;
    width: 30px;
    height: 30px;
    cursor: pointer;
  }
  .underlayer .hamburger span {
    background: #fff;
    transition: .5s ease-out;
  }
  .underlayer .hamburger.scrolled span {
    background: #fff;
  }
  .underlayer .hamburger.is-active span {
    background: #fff;
  }
  .hamburger span {
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 2px;
    background: #fff;
    transition: transform .5s;
  }
  .hamburger.is-active span {
    background: #fff;
  }
  .hamburger span:nth-child(1) {
    top: 30%;
  }
  .hamburger span:nth-child(2) {
    top: 60%;
  }
  .hamburger span:nth-child(3) {
    top: 90%;
  }
  .hamburger.is-active span:nth-child(1) {
    top: 50%;
    transform: translate(-50%, -50%) rotate(135deg);
  }
  .hamburger.is-active span:nth-child(2) {
    opacity: 0;
  }
  .hamburger.is-active span:nth-child(3) {
    top: 50%;
    transform: translate(-50%, -50%) rotate(-135deg);
  }
  .drawer {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 130;
    width: 100%;
    height: 100vh;
    background: linear-gradient(to right, rgba(194, 218, 110, 0.95), rgba(53, 188, 98, 0.95));
    transform: translateY(-100%);
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    visibility: visible;
    opacity: 1;
  }
  .drawer.is-active {
    transform: translateY(0);
  }
  .drawer_inner {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    padding: 0 20px;
    border: 1px solid;
  }
  nav.g_nav ul {
    display: flex;
    flex-direction: column;
    gap: 1em;
    margin: 0 0 0 -1.2rem;
    padding: 0;
  }
  nav.g_nav ul li {
    padding-bottom: 1em;
    letter-spacing: .25em;
  }
  nav.g_nav ul li a {
    display: block;
    color: #fff;
  }
  header > .sns_nav {
    display: none;
  }
  .sp_sns_nav {
    margin-top: 2rem;
    background: none !important;
  }
  .sp_sns_nav ul {
    flex-direction: row !important;
    justify-content: center;
    gap: 20px !important;
  }
  .sp_sns_nav img {
    width: 30px !important;
  }
  .g_nav ul li {
    opacity: 0;
    transform: translateY(20px);
    transition: 0.4s;
  }
  .drawer.is-active .g_nav ul li {
    opacity: 1;
    transform: translateY(0);
  }
  /* SP サブメニュー（アコーディオン） */
  .sub_menu {
    display: none;
    padding-left: 1.5rem;
    margin-top: 0.5rem;
  }
  .has_sub.is-open .sub_menu {
    display: block;
  }
  .has_sub > a {
    position: relative;
    padding-right: 30px;
  }
  .has_sub > a::after {
    content: '';
    position: absolute;
    right: 10px;
    top: 50%;
    width: 8px;
    height: 8px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: translateY(-50%) rotate(135deg);
    transition: transform 0.3s;
  }
  .has_sub.is-open > a::after {
    transform: translateY(-50%) rotate(-45deg);
  }
  .sub_menu ul li {
    background: none !important;
    padding-bottom: 0.5em !important;
    letter-spacing: 0.1em !important;
    font-size: 0.9em;
  }
}
@media screen and (max-width: 991px) {
  .sns_nav {
    display: none !important;
  }
  header.js_header {
    height: 70px !important;
    background: transparent;
    padding: 0 !important;
    z-index: 9998 !important;
  }
  .sp_logo {
    position: absolute;
    left: 20px;
    top: 50% !important;
    transform: translateY(-50%);
    z-index: 100;
  }
  .sp_logo img {
    height: 25px;
    width: auto;
  }
  .hamburger {
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: fixed;
    right: 0;
    top: 0;
    width: 70px;
    height: 70px;
    background: rgba(0, 136, 0, 1);
    z-index: 10001;
    cursor: pointer;
    gap: 7px;
  }
  .hamburger span {
    display: block;
    width: 30px;
    height: 2px;
    background: #fff;
    transition: 0.3s ease;
    position: static;
    transform: none;
    left: auto;
    top: auto;
  }
  .hamburger.is-active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }
  .hamburger.is-active span:nth-child(2) {
    opacity: 0;
  }
  .hamburger.is-active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }
  .drawer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, rgba(85, 186, 79, 1), rgba(137, 195, 235, 1)) !important;
    z-index: 9000;
    transform: translateY(-100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-x: hidden;
    overflow-y: auto;
    padding: 80px 0 calc(100px + env(safe-area-inset-bottom));
    box-sizing: border-box;
    visibility: visible;
    opacity: 1;
  }
  header.is_scrolled .drawer {
    background: linear-gradient(135deg, rgba(85, 186, 79, 1), rgba(137, 195, 235, 1)) !important;
  }
  .drawer.is-active {
    transform: translateY(0);
  }
  .drawer_inner {
    display: block;
    padding: 0;
    height: auto;
    border: none;
  }
  nav.g_nav, nav.g_nav > ul, nav.g_nav > ul > li {
    transform: none !important;
    left: auto !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }
  nav.g_nav .site_logo {
    position: absolute !important;
    left: 20px;
    top: -55px;
    transform: none !important;
    z-index: 10;
    border-bottom: none !important;
    filter: none !important;
  }
  nav.g_nav .site_logo img {
    width: 180px !important;
    height: auto !important;
  }
  nav.g_nav {
    height: auto !important;
    display: block !important;
  }
  nav.g_nav > ul {
    display: flex !important;
    flex-direction: column !important;
    padding: 0 20px !important;
    justify-content: flex-start !important;
    align-items: flex-start !important;
    gap: 0 !important;
    margin: 0 !important;
  }
  nav.g_nav > ul > li {
    width: 100% !important;
    height: auto !important;
    padding: 0 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    display: block !important;
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    letter-spacing: 0.05em;
  }
  nav.g_nav > ul > li > a {
    display: flex !important;
    justify-content: space-between;
    align-items: center;
    padding: 20px 10px !important;
    color: #fff !important;
    font-size: 1.1rem;
    font-weight: bold;
    text-decoration: none;
  }
  .has_sub > a::after {
    content: "";
    width: 8px;
    height: 8px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: rotate(135deg);
    transition: 0.3s;
    margin-right: 5px;
    flex-shrink: 0;
    position: static;
  }
  .has_sub.is-open > a::after {
    transform: rotate(-45deg);
  }
  /* サブメニュー：アコーディオン */
  .sub_menu {
    display: grid !important;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.4s ease;
    overflow: hidden !important;
    position: static !important;
    width: 100% !important;
    left: auto !important;
    transform: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    background: rgba(0, 0, 0, 0.1) !important;
    padding: 0 !important;
    top: auto !important;
    z-index: auto !important;
  }
  .has_sub.is-open .sub_menu {
    grid-template-rows: 1fr;
  }
  nav.g_nav ul li.has_sub:hover > .sub_menu, .has_sub.is-open .sub_menu, .sub_menu:active, .sub_menu:focus {
    transform: none !important;
    left: auto !important;
    width: 100% !important;
    opacity: 1 !important;
    visibility: visible !important;
  }
  .sub_menu_inner {
    min-height: 0;
    background: transparent !important;
    width: 100% !important;
    padding: 0 15px !important;
    left: 0 !important;
    transform: none !important;
    max-width: 100% !important;
    margin: 0 !important;
  }
  .sub_menu ul {
    display: block !important;
    gap: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
  }
  .sub_menu li {
    display: block !important;
    width: 100% !important;
    height: auto !important;
    padding: 0 !important;
    background: none !important;
    filter: none !important;
    opacity: 1 !important;
    transform: none !important;
    border-bottom: none !important;
    letter-spacing: 0.1em;
  }
  .sub_menu a {
    display: block !important;
    height: auto !important;
    padding: 15px 10px !important;
    color: #fff !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.95rem !important;
    white-space: normal !important;
    text-decoration: none;
  }
  .sub_menu ul li:last-child a {
    border-bottom: none;
  }
  .sub_menu a span {
    display: none !important;
  }
  /* アニメーション無効化（SPでは不要） */
  .g_nav ul li {
    opacity: 1 !important;
    transform: none !important;
  }
  .drawer.is-active .g_nav ul li {
    opacity: 1 !important;
    transform: none !important;
  }
}
/* ===============================================================

  トップページ

=============================================================== */
/*
  共通
================================================ */
/* [ ▼ h2タイトル ] ---------- */
.toplayer .page_title_area {
  position: relative;
}
.toplayer .page_title {
  position: absolute;
  margin: 0;
  padding: 0;
  line-height: 1.1;
  text-align: center;
  white-space: nowrap;
  z-index: 10;
}
.toplayer .en_title {
  font-family: "Archivo Narrow", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  display: block;
  font-size: 5.5rem;
  letter-spacing: 0.1em;
}
@media (max-width: 767px) {
  .toplayer .en_title {
    font-size: 3.5rem;
  }
}
/*
  ヒーローエリア
================================================ */
.headImg_box {
  display: flex;
  flex-direction: row-reverse;
  width: 100%;
  height: 85vh;
  align-items: stretch;
  overflow: hidden;
}
/* wrap */
.top_videoArea {
  position: relative;
  flex: 1;
  height: 100%;
  overflow: hidden;
}
/* video */
.videoBox {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
}
.videoBox .video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* img */
.imgBox {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
}
/* overlay */
.overlay::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(to bottom, rgba(85, 186, 76, 0.2) 0%, rgba(85, 186, 76, 0.2) 50%, rgba(0, 20, 10, 0.7) 80%, rgba(2, 57, 2, 0.9) 100%);
  mix-blend-mode: multiply;
}
/* text */
/* コピーを配置するコンテナ */
.main_copy_container {
  position: absolute;
  bottom: -1.2%;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  z-index: 10;
}
@media screen and (min-width: 768px) and (max-width: 991px) {
  .main_copy_container {
    width: 90%;
  }
}
@media screen and (min-width: 992px) and (max-width: 1199px) {
  .main_copy_container {
    width: 90%;
  }
}
@media screen and (min-width: 1200px) and (max-width: 1399px) {
  .main_copy_container {
    width: 95%;
  }
}
@media (min-width: 1400px) {
  .main_copy_container {
    width: 80%;
  }
}
.copy_text {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0;
  padding: 0;
  color: #fff;
  font-weight: bold;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  line-height: 1;
}
@media (max-width: 91px) {
  .copy_text {
    font-size: 1.25rem;
  }
}
@media screen and (min-width: 768px) and (max-width: 991px) {
  .copy_text {
    font-size: 3rem;
  }
}
@media screen and (min-width: 992px) and (max-width: 1199px) {
  .copy_text {
    font-size: 4rem;
  }
}
@media (min-width: 1200px) {
  .copy_text {
    font-size: 5.125rem;
  }
}
/* --- 回転アニメーションの定義 --- */
@keyframes rotateChar {
  0% {
    transform: rotateY(0deg);
  }
  100% {
    transform: rotateY(360deg);
  }
}
.copy_text span {
  display: inline-block;
  perspective: 500px;
}
.copy_text span {
  position: relative;
  display: inline-block;
  cursor: default;
}
/*
  スクロールダウン
================================================ */
.scroll_down_wrap {
  position: relative;
  width: 100px;
  background: #55ba4f;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  flex-shrink: 0;
}
/* 縦棒とテキストの位置調整 */
.scroll_down {
  position: relative;
  margin-bottom: 0;
  width: 2px;
  height: 160px;
}
.scroll_down a {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  bottom: 180px;
  color: #fff;
  font-size: 14px;
  font-family: "Archivo Narrow", sans-serif;
  letter-spacing: .2em;
  writing-mode: vertical-lr;
  text-decoration: none;
  text-transform: uppercase;
}
.scroll_down:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: -5px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #fff;
  animation:
    circlemove 2.6s ease-in-out infinite, cirlemovehide 2.6s ease-out infinite;
}
@keyframes circlemove {
  0% {
    bottom: 160px;
  }
  100% {
    bottom: 0px;
  }
}
@keyframes cirlemovehide {
  0% {
    opacity: 0
  }
  50% {
    opacity: 1;
  }
  80% {
    opacity: 0.9;
  }
  100% {
    opacity: 0;
  }
}
.scroll_down:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1px;
  height: 160px;
  background: #fff;
}
/*
  スマホ設定上書き
================================================ */
/* 767px以下のスマホ設定 */
@media screen and (max-width: 767px) {
  /* 1. スクロールダウンの緑色の帯ごと消す */
  .scroll_down_wrap {
    display: none;
  }
  /* 2. 全体の高さを横幅と同じ高さに */
  .headImg_box {
    flex-direction: column;
    height: auto;
    aspect-ratio: 1 / 1;
  }
  /* 3. 動画エリアを親（正方形）いっぱいに広げる */
  .top_videoArea {
    width: 100%;
    height: 100%;
  }
  /* 4. コピー（文字）の位置やサイズをスマホ用に微調整 */
  .main_copy_container {
    bottom: 5%;
    width: 90%;
  }
  .copy_text {
    font-size: 1.8rem;
  }
}
/*
  ニュース（トップ）
================================================ */
.top_news_section {
  margin-right: 10%;
  padding: 60px 50px 60px 8%;
  border-bottom-right-radius: 100px;
  background: linear-gradient(135deg, #55ba4f 30%, #89c3eb 100%);
}
.news_container {
  display: flex;
  align-items: flex-start;
  width: 95%;
  margin: 0 auto;
  gap: 30px;
}
/* NEWS タイトル */
.news_title {
  font-size: 1rem;
  line-height: 1;
  margin: 0;
  font-family: "Archivo Narrow", sans-serif;
}
.toplayer .news_title {
  font-size: 3rem;
  color: #fff;
}
/* 中央の横棒 */
.news_divider {
  flex-shrink: 0;
  width: 80px;
  height: 1px;
  background-color: #fff;
  margin-top: 1.5rem;
}
/* ニュースリストエリア */
.news_body {
  flex: 1;
}
.news_list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.news_item {
  border-bottom: 1px solid #99d895 !important;
}
.news_item_link {
  display: flex;
  align-items: center;
  padding: 20px 0;
  text-decoration: none;
  transition: background-color 0.3s;
}
.news_list li:first-child .news_item_link {
  padding-top: 10px;
}
/* 日付 */
.news_date {
  margin-right: 30px;
}
.toplayer .news_date {
  color: #fff !important;
}
/* 記事タイトル */
.news_item_title {
  flex: 1;
  font-size: 16px;
  font-weight: bold;
  padding-right: 20px;
  color: #fff;
}
/* MOREボタン（角丸白背景） */
.news_more_btn {
  display: inline-flex;
  align-items: center;
  color: #00a53d;
  background-color: #fff;
  padding: 5px 5px 5px 20px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: bold;
  box-shadow: 0 2px 5px rgba(0, 56, 20, 0.05);
  transition: all 0.3s;
}
.news_item_link .news_more_btn {
  margin-left: 1.5rem;
}
.news_item_link:hover .news_more_btn {
  background-color: #00a53d;
  color: #fff;
}
.arrow_btn_small {
  position: relative;
  width: 24px;
  height: 24px;
  background-color: #00a53d;
  border-radius: 50%;
  margin-left: 10px;
}
.news_item_link:hover .arrow_btn_small {
  background-color: #fff;
}
.news_item_link .arrow_icon_right {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 8px;
  transform: translate(-50%, -50%) rotate(-90deg);
  background: url("../images/common/icon_arrow_wht.svg") no-repeat center/contain !important;
}
.news_item_link:hover .arrow_icon_right {
  background: url("../images/common/icon_arrow.svg") no-repeat center/contain !important;
}
/*
  スマホ上書き
================================================ */
@media screen and (max-width: 991px) {
  /* 1. 全体の余白と角丸の調整 */
  .top_news_section {
    margin-right: 0;
    padding: 40px 20px;
    border-bottom-right-radius: 50px;
  }
  /* 2. 横並びを縦並びにする */
  .news_container {
    flex-direction: column;
    gap: 15px;
  }
  /* 3. NEWSタイトルと横棒の調整 */
  .toplayer .news_title {
    font-size: 2.2rem;
  }
  .news_divider {
    width: 40px;
    margin-top: 5px;
    margin-bottom: 10px;
  }
  /* 4. ニュースリストの各記事を「縦」に整理 */
  .news_item_link {
    flex-wrap: wrap;
    padding: 15px 0;
  }
  .news_date {
    width: 100%;
    margin-bottom: 5px;
    font-size: 0.85rem;
  }
  .news_item_title {
    width: 100%;
    font-size: 15px;
    padding-right: 0;
    margin-bottom: 15px;
    line-height: 1.5;
  }
  /* 5. MOREボタンを右下に配置 */
  .news_more_btn {
    margin-left: auto;
    padding: 4px 4px 4px 15px;
  }
}
/*
  会社案内（トップ）
================================================ */
.toplayer #company .en_title {
  color: #e6f9e5;
  text-shadow:
    2px 2px 0 #008800, -2px 2px 0 #008800, 2px -2px 0 #008800, -2px -2px 0 #008800, 2px 0px 0 #008800, -2px 0px 0 #008800, 0px 2px 0 #008800, 0px -2px 0 #008800;
}
.toplayer #company {
  margin-top: 5rem;
  margin-bottom: 5rem;
}
.toplayer #company .page_title {
  left: 0;
  bottom: -2rem;
}
.company_img_layout {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3.5;
  margin-top: 50px;
}
.toplayer .company_img_layout h2 {
  margin-bottom: 0;
}
.toplayer #company .page_title {
  bottom: -2.5rem;
}
/* 1. 緑（最背面） */
.bg_box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  width: 70%;
  height: 80%;
  background-color: #55af79;
  z-index: 1;
}
/* 2. 01: 左下 (緑の上に重なる) */
.img_01 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 426px;
  height: 323px;
  object-fit: cover;
  z-index: 2;
  opacity: 0;
}
/* 3. 02: 右上 (01の上に重なる) */
.img_02 {
  position: absolute;
  top: 0;
  right: 0;
  width: 293px;
  height: 222px;
  object-fit: cover;
  z-index: 3;
  opacity: 0;
}
/* 4. 03: PNG (最前面) */
.img_03 {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 25%;
  width: 56px;
  height: 261px;
  /* CSSのtransformはJSと競合するので、一旦外すかJS側で制御 */
  z-index: 4;
  opacity: 0;
  filter: drop-shadow(0 0 1px rgba(0, 43, 0, 0.9)) drop-shadow(0 0 5px rgba(0, 43, 0, 0.7)) drop-shadow(0 0 20px rgba(0, 0, 43, 0.5)) drop-shadow(0 0 30px rgba(0, 0, 43, 0.3));
}
/* 親コンテナ：company_img_layout と同じ比率・設定 */
.two-piece_img_layout {
  position: relative;
  width: 100%;
  max-width: 600px; /* companyより少し小さめにするなら調整 */
  aspect-ratio: 4 / 3.5;
  margin-top: 50px;
}
/* 1. 緑（最背面）：中央から広がる設定 */
.two-piece_bg_box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0); /* GSAPで1にする */
  width: 70%;
  height: 80%;
  background-color: #55af79;
  z-index: 1;
}
/* 2. 画像：左下に固定 */
.img_04 {
  position: absolute;
  top: 0;
  left: 0;
  width: 80%;
  height: auto;
  aspect-ratio: 426 / 323;
  object-fit: cover;
  z-index: 2;
  opacity: 0; /* GSAPで1にする */
}
.top_company_txt_wrap {
  width: 90%;
  margin: 0 0 0 auto;
}
/*
  スマホ上書き
================================================ */
@media screen and (max-width: 767px) {
  /* 1. コンテナ：縦に少し伸ばして画像を見やすくする */
  .company_img_layout {
    aspect-ratio: 1 / 1;
  }
  .toplayer .company_img_layout {
    margin-top: 30px;
  }
  .underlayer .company_img_layout {
    aspect-ratio: 1 / 1;
    margin-top: 0;
  }
  /* 2. 背景の緑箱：少し大きくしてインパクトを出す */
  .bg_box {
    width: 85%;
    height: 70%;
  }
  /* 3. 画像01（メイン）：横幅いっぱいに近くする */
  .img_01 {
    width: 80%; /* 固定px(426px)を解除して%指定に */
    height: auto;
    aspect-ratio: 426 / 323;
    bottom: 5%;
    left: 0;
  }
  /* 4. 画像02（サブ）：右上に配置しつつサイズ調整 */
  .img_02 {
    width: 60%; /* 固定px(293px)を解除 */
    height: auto;
    aspect-ratio: 293 / 222;
    top: 5%;
    right: 0;
  }
  .underlayer .img_02 {
    top: 0;
  }
  /* 5. 画像03（PNG/アクセント）：位置を微調整 */
  .img_03 {
    width: 40px;
    height: auto;
    left: 15%;
    z-index: 5;
  }
  /* 6. テキストエリアの調整 */
  .top_company_txt_wrap {
    width: 100%; /* スマホでは全幅使う */
    margin: 20px 0 0 0;
  }
  /* 7. 二枚組レイアウト */
}
/* [ ▼ オフィスツアー ] ---------- */
.officetour {
  width: 100%;
  overflow: hidden;
  padding: 50px 0;
}
.loop-slider-wrapper {
  display: flex !important; /* 強制的に横並び */
  width: max-content !important; /* 中身の合計幅を維持 */
}
.loop-slider-item {
  width: 300px; /* 固定サイズ */
  flex-shrink: 0; /* 圧縮禁止 */
  padding: 0;
}
.loop-slider-item img {
  width: 100%;
  height: auto;
  display: block;
}
/*
  事業内容（トップ）
================================================ */
.toplayer #service .bg_green_gradation {
  padding-top: 5rem;
  padding-bottom: 1px;
}
@media (min-width: 768px) {
  .toplayer #service .bg_green_gradation {
    padding-top: 8rem;
  }
}
.toplayer #service .page_title_area {
  background: yellow;
}
.toplayer #service .page_title_area::before {
  content: "";
  position: absolute;
  top: -1rem;
  left: -1rem;
  width: 332px;
  height: 305px;
  background-image: url("../images/top/service_deco.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  display: inline-block;
}
.toplayer #service .page_title {
  left: 50%;
  transform: translateX(-50%);
  color: transparent !important;
  -webkit-text-stroke: 1px #fff;
  text-stroke: 2px #fff;
}
.top_service_contents_wrap {
  margin-top: 2.5rem;
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .top_service_contents_wrap {
    margin-top: 5rem;
    margin-bottom: 5rem;
  }
}
.toplayer #service h3 {
  color: #fff;
}
.top_service_section {
  width: 90%;
  margin: 0 0 0 auto;
}
@media screen and (max-width: 767px) {
  .top_service_section {
    width: 100%;
    margin-top: 50px;
  }
}
.service_item {
  padding: 50px 0;
  border-bottom: 1px solid #008800;
}
.service_item:first-child {
  padding-top: 0;
}
.service_item:last-child {
  border-bottom: none;
}
.service_item a {
  color: #fff;
}
/* ホバー時の全体的な反応 */
.service_item a:hover .arrow_btn_circle {
  background-color: #d4c4a3;
}
.service_item a:hover .arrow_icon_right {
  filter: brightness(0) invert(1);
}
/* 1行目の横並び設定 */
.service_main_row {
  display: flex;
  align-items: center; /* 垂直中央揃え */
  margin-bottom: 20px; /* 説明文との間隔 */
  transition: 0.3s ease;
}
/* 画像サイズ */
.service_img {
  width: 186px;
  height: 124px;
  margin-right: 30px;
  flex-shrink: 0;
}
.service_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: filter 0.3s ease;
}
/* タイトルエリア */
.service_title_area {
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}
.service_label {
  font-size: 13px;
  font-weight: bold;
  margin-bottom: 2px;
}
.service_name {
  font-size: 22px;
  font-weight: bold;
  margin: 0;
  color: #fff;
}
/* 右端のボタン */
.service_btn_wrap {
  margin-left: auto;
}
.arrow_btn_circle {
  position: relative;
  width: 46px;
  height: 46px;
  background-color: #f0f0f0;
  border-radius: 50%;
  transition: all 0.3s;
}
/* 2行目の説明文：インデントを入れずに画像の下から開始 */
.service_description {
  width: 100%;
}
.service_description p {
  font-size: 15px;
  line-height: 1.8;
  margin: 0;
  /* 必要に応じて最大幅を制限して読みやすく */
  max-width: 1000px;
}
.service_img, .service_label, .service_name, .arrow_btn_circle .arrow_btn {
  transition: all 0.3s ease; /* これで画像・文字・アイコンの背景が動くようになります */
}
a .service_main_row:hover .service_img {
  filter: brightness(1.15) saturate(1.3);
}
a .service_main_row:hover .service_label, a .service_main_row:hover .service_name {
  text-shadow:
    0 0 5px rgba(212, 196, 163, 0.7), /* 内側の強い光 */ 0 0 15px rgba(212, 196, 163, 0.5), /* 外側の柔らかい光 */ 0 0 30px rgba(212, 196, 163, 0.3); /* さらに広い範囲の拡散光 */
}
a .service_main_row:hover .arrow_btn_circle .arrow_btn {
  background-color: #d4c4a3;
}
/*
  採用情報（トップ）
================================================ */
#recruit .bg_green_gradation {
  background: linear-gradient(135deg, #55ba4f 48%, #89c3eb 100%);
}
#recruit .page_title_area {
  position: relative;
  height: 100%;
}
#recruit .page_title_area .page_title {
  color: transparent !important;
  -webkit-text-stroke: 2px #fff; /* 2pxの太さで白 */
  text-stroke: 2px #fff;
}
.recruit_section_wrap {
  position: relative;
  margin-top: calc(6rem + 50px);
  padding-top: 6rem;
  padding-bottom: calc(8rem + 74px);
}
@media (min-width: 768px) {
  .recruit_section_wrap {
    margin-top: 8rem;
    padding-top: 8rem;
  }
}
.recruit_section_wrap .award_img {
  position: absolute;
  top: -70px;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .recruit_section_wrap .award_img {
    width: calc(100% - 14px);
  }
}
@media (min-width: 768px) {
  .recruit_section_wrap .award_img {
    top: -90px;
  }
}
.toplayer #recruit h3 {
  color: #fff;
}
/* --- レイアウト基盤 --- */
.person_swiper_container {
  position: relative;
  width: 100%;
  z-index: 10;
}
@media screen and (max-width: 767px) {
  .person_swiper_container {
    margin-top: 50px;
  }
}
.photo-swiper {
  /* 右側へのはみ出し設定 */
  width: calc(100% + (100vw - 100%) / 2);
  margin-right: calc((100vw - 100%) / -2);
  overflow: visible !important;
  clip-path: inset(-100px -100vw -100px 0);
}
/* スッスッと動かすための質感を定義 */
.photo-swiper .swiper-wrapper {
  transition-timing-function: cubic-bezier(0.25, 1, 0.5, 1) !important;
}
.photo-swiper .swiper-slide {
  width: 272px !important;
  height: 367px !important;
}
@media (min-width: 768px) {
  .photo-swiper .swiper-slide {
    width: 340px !important;
    height: 530px !important;
  }
}
.photo-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 5px;
  box-shadow: 10px 10px 20px rgba(0, 68, 0, 0.3);
}
/* --- コントロールエリア（一行配置） --- */
.swiper-controls {
  display: flex !important;
  flex-direction: row !important;
  align-items: center;
  justify-content: space-between;
  margin-top: 30px;
  width: 100%;
  position: relative;
  z-index: 20;
}
/* --- プログレスバー（3つの横長四角） --- */
.custom-pagination {
  display: flex !important;
  flex-direction: row !important;
  gap: 10px;
  flex: 1;
}
.custom-pagination .swiper-pagination-bullet {
  display: block !important;
  width: 40px !important;
  height: 4px !important;
  background: #71ce6a !important;
  border-radius: 0 !important;
  opacity: 1 !important;
  margin: 0 !important;
  transition: all 0.4s ease;
}
.custom-pagination .swiper-pagination-bullet-active {
  background: #f6f6f6 !important;
  width: 80px !important;
}
/* --- ナビゲーションボタン（前後矢印） --- */
.navigation-btns {
  display: flex !important;
  flex-direction: row !important;
  gap: 15px;
  flex-shrink: 0;
}
.navigation-btns .swiper-button-prev-custom, .navigation-btns .swiper-button-next-custom {
  display: flex !important;
  width: 64px;
  height: 64px;
  background-color: #f5f5f5;
  border-radius: 50%;
  cursor: pointer !important;
  justify-content: center;
  align-items: center;
  position: relative !important;
  top: auto !important;
  left: auto !important;
  right: auto !important;
  margin-top: 0 !important;
  z-index: 1000;
  pointer-events: auto !important;
  opacity: 1 !important;
  visibility: visible !important;
  transition: 0.3s;
}
@media (min-width: 768px) {
  .navigation-btns .swiper-button-prev-custom, .navigation-btns .swiper-button-next-custom {
    width: 44px;
    height: 44px;
  }
}
/* 無効化クラスの強制打ち消し */
.swiper-button-lock, .swiper-button-disabled {
  pointer-events: auto !important;
  opacity: 1 !important;
  cursor: pointer !important;
}
/* アイコン：マスク画像指定 */
.navigation-btns .arrow_icon_left, .navigation-btns .arrow_icon_right {
  display: block !important;
  width: 28px;
  height: 20px;
  background-color: #008800;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
  transition: 0.3s;
}
@media (min-width: 768px) {
  .navigation-btns .arrow_icon_left, .navigation-btns .arrow_icon_right {
    width: 14px;
    height: 10px;
  }
}
.navigation-btns .arrow_icon_left {
  -webkit-mask-image: url("../images/common/icon_arrow.svg");
  mask-image: url("../images/common/icon_arrow.svg");
  transform: rotate(90deg);
}
.navigation-btns .arrow_icon_right {
  -webkit-mask-image: url("../images/common/icon_arrow.svg");
  mask-image: url("../images/common/icon_arrow.svg");
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-90deg);
}
/* バーのアクティブ状態の切り替えを滑らかに */
.custom-pagination .swiper-pagination-bullet {
  display: block !important;
  width: 40px !important;
  height: 4px !important;
  background: #71ce6a !important;
  border-radius: 0 !important;
  opacity: 1 !important;
  transition: width 0.3s ease, background-color 0.3s ease !important;
}
.custom-pagination .swiper-pagination-bullet-active {
  background: #f6f6f6 !important;
  width: 60px !important;
}
/* --- 前提：緑のグラデーションエリア --- */
.bg_green_gradation {
  position: relative;
  z-index: 1;
}
/* --- エントリーエリア全体 --- */
.entry_section_wrap {
  position: relative;
  width: 100%;
  margin-top: -100px;
  z-index: 2;
}
.entry_content_box {
  background-color: #008800;
  width: 70%;
  margin-left: auto;
  border-radius: 100px 0 0 100px;
  padding: 60px 0;
  box-shadow: -10px 10px 30px rgba(0, 0, 0, 0.05);
}
/* --- 内部：1200pxの右端ラインを基準にする --- */
.entry_inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 140px;
}
/* 他の場所の .page_title の設定を打ち消す */
.entry_title_trigger .page_title {
  position: static !important;
  text-align: right !important;
  white-space: nowrap;
  display: block;
  line-height: 1;
}
/* タイトルエリア全体を右端に固定する */
.entry_title_trigger {
  position: absolute;
  top: -3.5em;
  right: 140px; /* entry_innerのpaddingに合わせる */
  transform: translateY(-50%);
  z-index: 20;
  pointer-events: none;
  width: auto;
}
.entry_title_trigger .page_title_area {
  text-align: right;
  margin: 0;
}
/* --- 他のテキスト要素 --- */
.entry_sub_title {
  font-size: 28px;
  font-weight: bold;
  color: #fff;
  margin: 0;
  flex-shrink: 0;
}
.entry_text {
  font-size: 16px;
  color: #fff;
  margin: 0;
  flex: 1;
  text-align: right;
}
/* --- ボタン --- */
.btn_entry_round {
  display: inline-flex;
  align-items: center;
  background-color: #fff;
  color: #008800;
  padding: 12px 12px 12px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  white-space: nowrap;
  flex-shrink: 0;
  transition: 0.3s;
}
.btn_entry_round:hover {
  background-color: #e1d7c3;
  color: #008800;
}
.btn_entry_round span {
  margin-right: 20px;
}
/*
  スマホ上書き
================================================ */
@media screen and (max-width: 991px) {
  /* 1. 緑の箱：横幅いっぱいにして左側の丸みを調整 */
  .entry_content_box {
    width: 95%; /* 画面端に少し余白を残して全幅に近いサイズに */
    border-radius: 50px 0 0 50px; /* 丸みをスマホサイズに */
    padding: 40px 20px;
    margin-top: -150px; /* 重なり(-100px)が強すぎる場合は調整 */
  }
  /* 2. 内部：縦並びにして中央寄せにする */
  .entry_inner {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 0; /* PC用の広いpaddingを解除 */
    max-width: 100%;
  }
  /* 3. タイトル(RECRUIT)：位置を中央上部に固定 */
  .entry_title_trigger {
    position: relative;
    top: 0;
    right: 0;
    transform: none;
    text-align: center;
    width: 100%;
    margin-bottom: 10px;
    pointer-events: auto; /* クリックできるように戻す */
  }
  .entry_title_trigger .page_title {
    text-align: center !important;
    font-size: 2.5rem;
  }
  /* 4. サブタイトル(ENTRY)とテキスト */
  .entry_sub_title {
    font-size: 22px;
    text-align: center;
  }
  .entry_text {
    text-align: center; /* 中央寄せ */
    font-size: 14px;
    line-height: 1.6;
    width: 100%;
  }
  /* 5. ボタン */
  .btn_entry_round {
    padding: 15px 15px 15px 30px;
    width: 100%;
    justify-content: space-between;
  }
  .entry_section_wrap {
    margin-top: -50px; /* 上のコンテンツとの重なり */
  }
}
/* ===============================================================

  会社案内

=============================================================== */
/*
  企業理念
================================================ */
.underlayer #philosophy .bg_mint {
  margin-top: 2.5rem;
  padding-top: 75px;
  padding-bottom: 0px;
}
@media (min-width: 768px) {
  .underlayer #philosophy .bg_mint {
    margin-top: 5rem;
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
/*
  代表挨拶
================================================ */
#message {
  padding-top: 5rem;
  padding-bottom: 5rem;
}
@media (min-width: 768px) {
  #message {
    padding-top: 10rem;
    padding-bottom: 10rem;
  }
}
/*
  経営理念
================================================ */
#management .bg_ice {
  padding-top: 5rem;
  padding-bottom: 5rem;
}
@media (min-width: 768px) {
  #management .bg_ice {
    padding-top: 10rem;
    padding-bottom: 10rem;
  }
}
/*
  ISO認定
================================================ */
#iso .bg_green_gradation {
  padding-top: 5rem;
  padding-bottom: 5rem;
}
@media (min-width: 768px) {
  #iso .bg_green_gradation {
    padding-top: 10rem;
    padding-bottom: 10rem;
  }
}
.iso_area {
  max-width: 700px;
  margin: 0 auto;
}
.iso_image_unit {
  position: relative;
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .iso_image_unit {
    margin-bottom: 1.5rem;
  }
}
.iso_label {
  position: absolute;
  top: .5em; /* 画像のすぐ上に配置 */
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
  /* テキスト装飾 */
  font-family: "Archivo Narrow", sans-serif;
  font-weight: bold;
  font-size: 2rem;
  line-height: 1;
  white-space: nowrap;
  /* 透明・白ふち */
  color: transparent !important;
  -webkit-text-stroke: 1px #fff;
  text-stroke: 1px #fff;
}
.iso_image_unit img {
  display: block;
  width: 100%; /* または固定px */
  height: auto;
}
dl.iso_declaration dt {
  margin-bottom: 1rem;
  padding: .25em 1em;
  font-weight: normal;
  border-radius: 50vh;
  background: #008800;
  text-align: center;
}
/*
  品質方針
================================================ */
#quality .bg_ice {
  padding-top: 5rem;
  padding-bottom: 5rem;
}
@media (min-width: 768px) {
  #quality .bg_ice {
    padding-top: 10rem;
    padding-bottom: 10rem;
  }
}
/*
  SDGs
================================================ */
#sdgs .bg_mint {
  padding-top: 5rem;
  padding-bottom: 5rem;
}
@media (min-width: 768px) {
  #sdgs .bg_mint {
    padding-top: 10rem;
    padding-bottom: 10rem;
  }
}
@media screen and (max-width: 767px) {
  .sdgs_logo {
    display: block;
    max-width: 300px;
    margin: 0 auto;
    margin-bottom: 2rem;
  }
}
.SDGs_contents {
  margin-top: 5rem;
}
.SDGs_box {
  background: #fff;
  border-radius: 30px;
  height: 100%;
  padding: 3rem;
}
@media screen and (max-width: 767px) {
  .SDGs_contents .container:not(:first-child) {
    gap: 2rem;
  }
}
.SDGs_box h5 {
  margin-bottom: 1rem;
  font-size: 1.5rem;
  padding-bottom: 15px; /* 線との間の余白 */
  position: relative;
  color: #438960;
  background-image: radial-gradient(#438960 2.5px, transparent 3px); /* ドットの色とエッジのボケ調整 */
  background-position: bottom left;
  background-size: 14px 14px; /* 背景のタイルを間隔を含めたサイズ（14px四方）にする */
  background-repeat: repeat-x;
  text-align: center;
}
.SDGs_box img {
  margin-bottom: 1.5rem;
}
.SDGs_box p {
  margin-bottom: 0;
  font-size: .98rem;
}
.SDGs_center_txt {
  max-width: 700px;
  margin: 0 auto 3rem;
  text-align: center;
}
.SDGs_icon {
  text-align: center;
}
.award_box {
  position: relative;
  max-width: 800px;
  margin: 100px auto 0;
  padding: 65px 40px 40px;
  text-align: center;
  border-radius: 30px;
  background: #fff;
}
@media (min-width: 768px) {
  .award_box {
    margin: 150px auto 0;
    padding: 90px 60px 40px;
    border-radius: 20px;
  }
}
.award_box p {
  margin-bottom: 0;
  font-size: .85rem;
}
@media (min-width: 768px) {
  .award_box p {
    font-size: .95rem;
    text-align: center;
  }
}
.award_box img {
  position: absolute;
  top: -65px;
  left: 50%;
  transform: translateX(-50%);
}
@media (min-width: 768px) {
  .award_box img {
    top: -90px;
  }
}
/*
  会社概要
================================================ */
.underlayer #company {
  padding-top: 5rem;
  padding-bottom: 5rem;
}
@media (min-width: 768px) {
  .underlayer #company {
    padding-top: 10rem;
    padding-bottom: 10rem;
  }
}
.profile_box {
  padding: 30px;
  border-radius: 20px;
  background: #fff;
}
@media (min-width: 768px) {
  .profile_box {
    padding: 50px;
  }
}
.profile_box dl {
  font-size: .98rem;
}
@media (max-width: 767px) {
  .profile_box dl dt {
    padding: 10px 0px 5px;
  }
  .profile_box dl dd {
    padding: 5px 0px calc(.5rem + 10px);
    border-bottom: 1px solid #7cc1c5;
  }
}
@media (min-width: 768px) {
  .profile_box dl {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
  }
  .profile_box dl dt, .profile_box dl dd {
    box-sizing: border-box;
  }
  .profile_box dl dt {
    display: flex;
    align-items: center;
    width: 8rem;
    padding: 20px;
    border-bottom: 1px solid #7cc1c5;
  }
  .profile_box dl dd {
    display: flex;
    align-items: center;
    width: calc(100% - 8rem);
    margin-left: 0;
    margin-bottom: 0;
    padding: 20px;
    border-bottom: 1px solid #7cc1c5;
  }
}
/* ===============================================================

  事業内容・製品案内

=============================================================== */
/*
  製品案内
================================================ */
.underlayer #products .bg_green_gradation {
  padding-top: 2.5rem;
  padding-bottom: 50px;
}
@media (min-width: 768px) {
  .underlayer #products .bg_green_gradation {
    margin-top: 5rem;
    padding-bottom: 100px;
  }
}
/* [ ▼ 製品選択 ] ---------- */
.select_products_area {
  padding-top: 20px;
  padding-bottom: 5rem;
}
@media (min-width: 768px) {
  .select_products_area {
    padding-top: 100px;
    padding-bottom: 10rem;
  }
}
.selection_button {
  display: flex;
  align-items: center;
  padding-bottom: 1rem;
  border-bottom: 2px solid #008800;
  cursor: pointer;
  transition: 0.3s ease;
  width: 100%;
  color: #fff;
}
/* 左：画像 */
.button_img {
  width: 186px;
  height: 124px;
  margin-right: 20px;
  flex-shrink: 0;
}
.button_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: filter 0.3s ease;
}
/* 中央：テキスト */
.button_text {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}
.button_text .en {
  font-family: "Archivo Narrow", sans-serif;
  font-size: 0.7rem;
  font-weight: bold;
  letter-spacing: 0.05em;
}
.button_text .jp {
  font-size: 1.5rem;
  font-weight: bold;
  margin-top: 2px;
}
.select_products_area .arrow_btn {
  width: 68px;
  height: 68px;
}
.button_img, .button_text, .arrow_btn {
  transition: all 0.3s ease;
}
a .selection_button:hover .button_img {
  filter: brightness(1.15) saturate(1.3);
}
a .selection_button:hover .button_text {
  text-shadow:
    0 0 5px rgba(212, 196, 163, 0.7), /* 内側の強い光 */ 0 0 15px rgba(212, 196, 163, 0.5), /* 外側の柔らかい光 */ 0 0 30px rgba(212, 196, 163, 0.3); /* さらに広い範囲の拡散光 */
}
a .selection_button:hover .arrow_btn {
  background-color: #d4c4a3;
}
@media screen and (max-width: 767px) {
  .selection_button {
    flex-wrap: wrap;
    flex-direction: row;
    align-items: center;
    padding-bottom: 1rem;
  }
  .select_products_area .col-12:not(:last-of-type) .selection_button {
    margin-bottom: 1.5rem;
  }
  /* 1段目：画像を100%にして強制的に改行させる */
  .button_img {
    width: 100% !important;
    height: auto;
    aspect-ratio: 186 / 124;
    margin-right: 0 !important;
    margin-bottom: 15px;
  }
  /* 2段目左：テキスト */
  .button_text {
    flex: 1;
    display: flex;
    flex-direction: column;
  }
  /* 2段目右：矢印 */
  .select_products_area .arrow_btn {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    margin-left: auto;
  }
  .button_text .jp {
    font-size: 1.2rem;
  }
}
/* [ ▼ 製品詳細 ] ---------- */
.products_contents:not(:last-child) {
  margin-bottom: 5rem;
}
.products_box {
  height: 100%;
  background: #fff;
  border-radius: 20px;
  padding: 30px;
  color: #242633;
}
@media (min-width: 768px) {
  .products_box {
    padding: 4rem;
  }
}
.products_box h5 {
  margin-bottom: 1.5rem;
  font-size: 1.35rem;
  color: #00a53d;
  text-align: left;
}
@media (min-width: 768px) {
  .products_box h5 {
    font-size: 2rem;
  }
}
.products_box img {
  width: 100%;
  height: auto;
  margin-bottom: 1rem;
}
.products_detail dl {
  margin-bottom: 0;
  font-size: .98rem;
}
@media (max-width: 767px) {
  .products_detail dl dt {
    padding: 10px 0 5px;
  }
  .products_detail dl dd {
    padding: 5px 0 calc(.5rem + 10px);
    border-bottom: 1px solid #7cc1c5;
    font-size: 0.9rem;
  }
}
@media (min-width: 768px) {
  .products_detail dl {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
  }
  .products_detail dl dt, .products_detail dl dd {
    box-sizing: border-box;
  }
  .products_detail dl dt {
    display: flex;
    width: 8rem;
    padding: 20px;
    border-bottom: 1px solid #7cc1c5;
  }
  .products_detail dl dd {
    display: flex;
    align-items: center;
    width: calc(100% - 8rem);
    margin-left: 0;
    margin-bottom: 0;
    padding: 20px;
    border-bottom: 1px solid #7cc1c5;
  }
}
/*
  設備紹介
================================================ */
#equipment .bg_ice {
  padding-top: 5rem;
  padding-bottom: 5rem;
}
@media (min-width: 768px) {
  #equipment .bg_ice {
    padding-top: 10rem;
    padding-bottom: 10rem;
  }
}
@media (max-width: 767px) {
  .setsubi_list {
    margin-bottom: 3rem;
  }
}
.equipment_name {
  margin-top: 1.2rem;
  font-size: 1.16rem;
}
.equipment_text {
  font-size: .95rem;
}
.table_setsubi_box {
  margin-top: 3rem;
}
@media (max-width: 767px) {
  .table_setsubi_box {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch; /* iOSでのスクロールを滑らかにする */
  }
}
@media (min-width: 768px) {
  .table_setsubi_box {
    padding: 60px 120px;
    border-radius: 40px;
    background: #eaefec;
  }
}
.table_scroll_container {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.table_setsubi {
  width: 100%;
  table-layout: fixed;
  margin-bottom: 0;
  border-collapse: collapse;
  font-size: .85em;
  text-align: center;
}
@media (max-width: 767px) {
  .table_setsubi {
    min-width: 700px; /* 表が潰れないように最小幅を指定 */
  }
}
.table_setsubi th {
  border-right: 1px solid #fff;
  color: #fff;
  background: #00a53d;
}
.table_setsubi th:last-child {
  border-right: 1px solid #55ba4f;
  color: #fff;
  background: #00a53d;
}
.table_setsubi td {
  border: 1px solid #a5cea5;
  padding: 1.2em 1em;
  background: #fff;
}
.table_setsubi th, .table_setsubi td {
  padding: 1em;
}
.table_setsubi td.setsubimei {
  background: #f4f9f4;
}
.table_title {
  position: relative;
  margin-bottom: 1em;
  font-size: 1.4rem;
  font-weight: bold;
  border-bottom: solid 3px #ddd;
  color: #00a53d;
  text-align: left;
  line-height: 1.6;
}
.table_title::after {
  position: absolute;
  content: " ";
  display: block;
  border-bottom: solid 3px #00a53d;
  bottom: -3px;
  width: 3.5em;
}
/*
  社内プロジェクト
================================================ */
#project .bg_mint {
  padding-top: 5rem;
  padding-bottom: 4rem;
}
/* [ ▼ プロジェクトメニュー ] ---------- */
.project_card {
  position: relative;
  display: block;
  width: 100%;
  margin-bottom: 2rem;
  padding: 3rem 30px;
  border-radius: 30px;
  background: #fff;
  transition: 0.3s ease;
}
@media (min-width: 768px) {
  .project_card {
    padding: 3rem 4rem;
  }
}
.project_card:hover {
  background: #e1d7c3;
  cursor: pointer;
}
.project_card img {
  transition: filter 0.3s ease;
}
@media (max-width: 767px) {
  .project_top_row {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
  }
}
@media (min-width: 768px) {
  .project_top_row {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding-right: 50px;
  }
}
.story_badge {
  display: inline-block;
  padding: 6px 16px;
  background: linear-gradient(135deg, #55ba4f 50%, #89c3eb 100%);
  color: #fff;
  font-weight: bold;
  font-size: 14px;
  /* 左上と右下だけ角丸 */
  border-radius: 20px 0 20px 0;
  white-space: nowrap;
}
@media (max-width: 767px) {
  .story_badge {
    margin-bottom: .5rem;
  }
}
.project_subtitle {
  font-size: 16px;
  color: #003814;
  font-weight: bold;
  margin: 0;
}
@media (max-width: 767px) {
  .project_card .project_subtitle {
    margin-right: calc(48px + 1rem);
  }
}
/* 2行目：メインの見出し */
.project_main_content h3 {
  margin: 0;
  color: var(--h_color);
  line-height: 1.6;
  font-size: 1.2rem;
  font-weight: bold;
}
@media (min-width: 768px) {
  .project_main_content h3 {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  .project_container .project_main_content h3 {
    font-size: 1.4rem;
  }
}
@media (min-width: 768px) {
  .project_container .project_main_content h3 {
    font-size: 2.1rem;
  }
}
.project_card article {
  position: relative;
}
.project_card article .arrow_btn {
  width: 48px;
  height: 48px;
}
@media (min-width: 768px) {
  .project_card article .arrow_btn {
    width: 68px;
    height: 68px;
  }
}
/* 右上の矢印固定 */
.anchor_arrow {
  position: absolute;
  top: 0;
  right: 0;
}
/* [ ▼ メンバー紹介 ] ---------- */
.project_container .bg_green_gradation {
  margin-top: 2.5rem;
  padding-top: 70px;
  padding-bottom: 50px;
}
@media (min-width: 768px) {
  .project_container .bg_green_gradation {
    margin-top: 5rem;
    padding-top: 100px;
    padding-bottom: 80px;
  }
}
.team_section {
  display: flex;
  gap: 40px;
  margin-top: 50px;
}
/* 左側 2/12 相当 */
.team_label_area {
  flex: 0 0 16.66%;
}
.small_label {
  font-family: "Archivo Narrow", sans-serif;
  font-size: 12px;
  margin-bottom: 5px;
  letter-spacing: 0.1em;
}
.dept_name {
  font-size: 18px;
  font-weight: bold;
  line-height: 1.4;
}
.team_list_area {
  flex: 1;
}
.member_grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 0;
}
.member_item {
  width: 25%; /* 4人並び */
  position: relative;
  box-sizing: border-box;
  margin-bottom: 1rem;
  padding: 0;
}
@media (min-width: 768px) {
  .member_item:nth-child(4n + 1):nth-last-child(-n + 4), .member_item:nth-child(4n + 1):nth-last-child(-n + 4) ~ .member_item {
    margin-bottom: 0;
  }
  .member_item:first-child:nth-last-child(-n + 4), .member_item:first-child:nth-last-child(-n + 4) ~ .member_item {
    margin-bottom: 0;
  }
}
.member_inner {
  position: relative;
  text-align: center;
}
.member_inner::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 2px;
  height: 100%;
  background-color: #008800;
}
/* ★4人目、8人目...の右端の縦線を消す */
.member_item:nth-child(4n) .member_inner::after {
  display: none;
}
.member_inner {
  text-align: center;
}
.member_pic {
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto 15px;
}
@media (min-width: 768px) {
  .member_pic {
    max-width: 120px;
  }
}
.initial {
  display: block;
  font-family: "Archivo Narrow", sans-serif;
  font-weight: bold;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .member_item {
    width: 50%;
  }
  /* 2列目（偶数）の右線を消す */
  .member_item:nth-child(2n) .member_inner::after {
    display: none;
  }
  /* 4nの設定をリセット（スマホ用を優先させるため） */
  .member_item:nth-child(4n) .member_inner::after {
    display: block;
  }
  .member_item:nth-child(2n) .member_inner::after {
    display: none;
  }
  .member_pic {
    width: 80%;
    max-width: 100px;
    margin: 0 auto 5px;
  }
  .initial {
    font-size: 0.9rem;
  }
}
/* [ ▼ プロジェクト詳細 ] ---------- */
.project_container {
  position: relative;
  padding-top: 2.5rem;
  padding-bottom: 1rem;
}
@media (min-width: 768px) {
  .project_container {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}
.project_container::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  height: 1px;
  background-color: #cecece;
}
.project_intro img {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}
.project_intro figure {
  margin-bottom: 0;
}
.project_intro figcaption {
  font-size: .9rem;
}
.project_details {
  border: solid;
}
.episode_box {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .episode_box {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}
/* エピソードラベルと見出し */
.episode_badge {
  display: inline-block;
  margin-bottom: .8rem;
  padding: .25em 1em;
  font-weight: bold;
  font-family: "Archivo Narrow", sans-serif;
  font-size: 14px;
  line-height: 1;
  border-radius: 50vh;
  color: #fff;
  background: #b7a37d;
}
.episode_header h4 {
  font-size: 22px;
  color: #438960;
  margin-bottom: 30px;
  font-weight: bold;
}
/* インタビューエリア全体 */
.interview_wrapper {
  display: flex;
  align-items: flex-start; /* 写真を常に上に固定 */
  gap: 20px;
}
/* 左上の写真 */
.interview_photo {
  flex: 0 0 80px; /* 写真サイズを少しコンパクトに */
}
.interview_photo img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 50%; /* 丸写真 */
  background: #eee;
}
/* 右側のメインテキスト */
.interview_main {
  flex: 1;
}
.interview_text {
  position: relative;
  background: #fff; /* 非常に薄い緑で引用感を出す */
  padding: 20px;
  border-radius: 15px; /* 右側と下だけ角丸（ヨシダ工業様風） */
  margin-bottom: 10px;
}
.interview_text p {
  font-size: 15px;
  line-height: 1.7;
  color: #444;
}
.interview_text p:last-child {
  margin-bottom: 0;
}
.episode_img {
  filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.05));
}
/*
  別ページリンク
================================================ */
/* [ ▼ 共通 ] ---------- */
.banner_bg_wrap, .bg_main {
  width: 100%;
  height: 100%; /* 親の230pxに合わせる */
}
.bg_main {
  object-fit: cover;
}
/* --- 最前面：白抜き角丸エリア --- */
.banner_info_area {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  width: 100%;
  max-width: 958px;
  display: flex;
  justify-content: center;
}
.info_inner {
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 25px 70px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
/* 左側テキスト */
.info_left {
  flex: 0 0 40%;
  text-align: left;
}
.info_left .banner_info_label {
  margin-bottom: 0;
  font-weight: bold;
  font-size: 2.777rem;
  line-height: 1.2;
}
.info_left .banner_info_label span {
  display: block;
  font-size: 14px;
  letter-spacing: 0.1em;
}
/* 中央の縦線 */
.info_divider {
  position: absolute;
  left: 40%; /* 40%と60%の境界に配置 */
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 30px;
}
/* 右側ボタン */
.info_right {
  flex: 0 0 60%;
  text-align: right; /* ボタンを右端に寄せる */
  padding-left: 40px; /* 線との余白 */
}
/* [ ▼ リクルートリンク ] ---------- */
.recruit_banner {
  max-width: 1140px; /* サイト幅に合わせて調整 */
  margin: 5rem auto 0;
}
.recruit_link_container {
  display: block;
  position: relative;
  width: 100%;
  height: 230px;
  text-decoration: none;
  overflow: hidden;
  border: 2px solid #000;
}
/* --- 背景レイヤー --- */
.bg_deco_tl {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  max-width: 297px;
}
.bg_deco_br {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 2;
  max-width: 452px;
}
/* --- SVGテキストレイヤー --- */
.banner_txt_svg {
  position: absolute;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  width: 90%;
  text-align: center;
}
.banner_txt_svg img {
  height: 80px;
  width: auto;
}
@media (min-width: 768px) {
  .banner_txt_svg {
    position: absolute;
    top: 30px;
    width: 80%;
  }
  .banner_txt_svg img {
    height: 60px;
  }
}
/* --- 最前面：白抜き角丸エリア --- */
.recruit_banner .banner_info_area {
  top: 140px;
}
@media (min-width: 768px) {
  .recruit_banner .banner_info_area {
    top: 90px;
  }
}
.recruit_banner .info_inner {
  background-color: #f5fdf3;
  margin-top: -8px;
}
.recruit_banner .info_left .banner_info_label {
  color: #000;
}
/* 中央の縦線 */
.recruit_banner .info_divider {
  background-color: #000;
}
/* 右側ボタン */
.btn_black_trigger {
  background-color: #000;
  color: #fff;
}
.btn_black_trigger {
  display: inline-flex;
  align-items: center;
  padding: 10px 10px 10px 30px;
  border-radius: 50px;
  font-weight: bold;
  transition: opacity 0.3s;
  line-height: 1.2;
}
.btn_black_trigger:hover {
  opacity: 0.8;
}
.btn_black_trigger .btn_text {
  margin-right: 15px;
}
.btn_black_trigger .arrow_btn {
  position: relative;
  width: 34px;
  height: 34px;
  background-color: #efefef;
  border-radius: 50%;
  flex-shrink: 0;
}
.btn_black_trigger .arrow_icon_right {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 12px;
  transform: translate(-50%, -50%) rotate(-90deg);
  background-image: url("../images/common/icon_arrow_blk.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
@media (max-width: 767px) {
  .recruit_link_container {
    height: auto;
  }
  .banner_bg_wrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  .banner_txt_svg {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    width: 100%;
    padding: 20px 0 5px;
  }
  .bg_deco_tl {
    max-width: 150px;
  }
  .bg_deco_br {
    max-width: 220px;
  }
  .recruit_banner .banner_info_area {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    padding: 0 15px 20px;
  }
  .info_inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 25px;
    gap: 15px;
  }
  .info_left {
    flex: none;
    width: 100%;
  }
  .info_left .banner_info_label {
    font-size: 2rem;
  }
  .info_divider {
    position: static;
    transform: none;
    width: 100%;
    height: 1px;
    left: auto;
    top: auto;
  }
  .info_right {
    flex: none;
    width: 100%;
    text-align: left;
    padding-left: 0 !important;
  }
  .btn_black_trigger, .btn_white_trigger {
    display: flex;
    width: 100%;
    margin-left: 0;
    box-sizing: border-box;
    justify-content: space-between;
  }
}
/* [ ▼ プロダクトリンク ] ---------- */
.products_banner {
  max-width: 1140px; /* サイト幅に合わせて調整 */
  margin: 2rem auto 0;
}
.products_link_container {
  display: block;
  position: relative;
  width: 100%;
  height: 200px;
  text-decoration: none;
  overflow: hidden;
  border: 2px solid #003814;
}
/* --- 最前面：白抜き角丸エリア --- */
.products_banner .banner_info_area {
  top: 50%;
  transform: translate(-50%, -50%);
}
.products_banner .info_left .banner_info_label {
  color: #fff;
}
/* 中央の縦線 */
.info_divider {
  background-color: #fff;
}
/* 右側ボタン */
.info_right {
  flex: 0 0 60%;
  text-align: right; /* ボタンを右端に寄せる */
  padding-left: 40px; /* 線との余白 */
}
.btn_white_trigger {
  display: inline-flex; /* 内部の要素を横並びにする */
  align-items: center;
  background-color: #fff;
  color: #003814;
  padding: 10px 10px 10px 30px;
  border-radius: 50px;
  font-weight: bold;
  transition: opacity 0.3s;
  /* aタグを使わないので、ここで行間をリセット */
  line-height: 1.2;
}
/* ホバー時の反応 */
.btn_white_trigger:hover {
  opacity: 0.8;
}
.btn_white_trigger .btn_text {
  margin-right: 15px;
}
/* 丸い矢印パーツ（以前のものを継続） */
.btn_white_trigger .arrow_btn {
  position: relative;
  width: 34px;
  height: 34px;
  background-color: #003814;
  border-radius: 50%;
  flex-shrink: 0;
}
.btn_white_trigger .arrow_icon_right {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 12px;
  transform: translate(-50%, -50%) rotate(-90deg);
  background-image: url("../images/common/icon_arrow_wht.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
/* ===============================================================

  ニュース

=============================================================== */
#news main {
  margin-top: 6rem !important;
}
@media (min-width: 768px) {
  #news main {
    margin-top: 12rem !important;
  }
}
/* --- News一覧エリア全体の指定 --- */
.news_list_area {
  max_width: 1200px;
  margin: 0 auto;
  padding_top: calc(5rem + 50px);
  padding_bottom: 5rem;
}
/*
  年別プルダウン
================================================ */
/* 外側の枠 */
.custom_select_wrapper {
  position: relative;
  display: inline-block;
  width: 100%;
  user-select: none;
  z-index: 100; /* ニュース記事の上に重なるように */
}
@media screen and (max-width: 767px) {
  .custom_select_wrapper {
    margin-bottom: 1.5rem;
  }
}
@media (min-width: 768px) {
  .custom_select_wrapper {
    width: 300px;
  }
}
/* 表示されているメインボタン */
.custom_select_trigger {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  padding: .8em 4.5em .8em 1.5em;
  font-weight: bold;
  color: #fff;
  background-color: #008800;
  border-radius: 50px;
  cursor: pointer;
  transition: background-color 0.3s;
}
@media (min-width: 768px) {
  .custom_select_trigger {
    padding: 1.2em 4.5em 1.2em 1.5em;
    font-size: 1.1rem;
  }
}
/* ボタン内のグレーの円 */
.custom_select_trigger::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 8px;
  transform: translateY(-50%);
  width: 2.2rem;
  height: 2.2rem;
  background-color: #efefef;
  border-radius: 50%;
  z-index: 1;
}
@media (min-width: 768px) {
  .custom_select_trigger::before {
    width: 3.2rem;
    height: 3.2rem;
  }
}
/* 矢印アイコン */
.custom_select_trigger .arrow_icon {
  position: absolute;
  top: 50%;
  right: 1.55rem;
  width: 8px;
  height: 14px;
  transform: translate(50%, -50%);
  background-image: url("../images/common/icon_arrow.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  z-index: 2;
  transition: transform 0.3s; /* 開いた時に回転させたい場合用 */
}
@media (min-width: 768px) {
  .custom_select_trigger .arrow_icon {
    right: calc(8px + 1.6rem);
    width: 14px;
    height: 20px;
  }
}
/* 開いている時は矢印を上に向ける演出（お好みで） */
.custom_select_wrapper.open .arrow_icon {
  transform: translate(50%, -50%) rotate(180deg);
}
/* 展開されるリスト部分 */
.custom_options {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  margin-top: 10px;
  padding: 0;
  list-style: none;
  background-color: #fff;
  border: 2px solid #008800;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
}
/* .open クラスがついた時に表示 */
.custom_select_wrapper.open .custom_options {
  opacity: 1 !important;
  visibility: visible !important;
  transform: translateY(0) !important;
}
/* リスト内の各選択肢 */
.custom_option {
  padding: 15px 25px;
  font-weight: bold;
  color: #008800;
  cursor: pointer;
  transition: background-color 0.2s, color 0.2s;
  border-bottom: 1px solid #eee;
}
.custom_option:last-child {
  border-bottom: none;
}
/* 選択肢をホバーした時 */
.custom_option:hover {
  background-color: #008800;
  color: #fff;
}
/*
  ニュース一覧
================================================ */
.news_item {
  position: relative;
  padding: 0;
  border-bottom: 1px solid #7cc1c5;
}
.news_item.is_first {
  border-top: 1px solid #7cc1c5;
}
a.news_link {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #242633;
  gap: 30px;
  padding: 25px 20px;
  transition: transform 0.3s ease;
}
.news_date {
  font-weight: bold;
  font-family: "Archivo Narrow", sans-serif;
  flex-shrink: 0;
  color: #003814;
}
/* カテゴリバッジ */
.news_category {
  display: inline-block;
  padding: 4px 10px;
  color: #fff;
  font-size: 0.85rem;
  font-weight: bold;
  border-radius: 15px 0 15px 0;
  flex-shrink: 0;
  min-width: 90px;
  text-align: center;
}
/* カテゴリごとのグラデーション */
.category_info {
  background: linear-gradient(135deg, #55ba4f 48%, #89c3eb 100%);
}
.category_company {
  background: linear-gradient(135deg, #55ba4f 48%, #f4a856 100%);
}
.category_recruit {
  background: linear-gradient(135deg, #55ba4f 48%, #a87add 100%);
}
.news_title {
  flex-grow: 1;
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
/* 右端の円形ボタン */
.news_arrow_btn {
  position: relative;
  width: 45px;
  height: 45px;
  background-color: #fff;
  border-radius: 50%;
  flex-shrink: 0;
  transition: background-color 0.3s;
}
.news_link:hover .news_arrow_btn {
  background-color: #008800;
}
/* 右向き矢印 */
.arrow_icon_right {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 12px;
  transform: translate(-50%, -50%) rotate(-90deg);
  background-image: url("../images/common/icon_arrow.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transition: filter 0.3s;
}
.news_link:hover .arrow_icon_right {
  filter: brightness(0) invert(1);
}
/* 下向き矢印 */
.arrow_icon_down {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 17px;
  transform: translate(-50%, -50%) rotate(0deg);
  background-image: url("../images/common/icon_arrow.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transition: filter 0.3s;
}
@media screen and (max-width: 991px) {
  /* 1. 横並びを解除して折り返しを許可する */
  .underlayer .news_list a.news_link {
    flex-wrap: wrap;
    gap: 10px 20px; /* 上下の隙間10px / 左右の隙間20px */
    padding: 20px 15px;
    align-items: center;
  }
  /* 2. 日付とカテゴリを上段にまとめる */
  .underlayer .news_list .news_date, .underlayer .news_list .news_category {
    order: 1;
    flex-grow: 0;
  }
  /* 3. タイトルを下段に。幅を100%にして強制改行 */
  .underlayer .news_list .news_title {
    order: 3;
    flex-basis: 100%;
    white-space: normal;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    line-height: 1.5;
  }
  /* 4. 矢印ボタンを右上に配置 */
  .underlayer .news_list .news_arrow_btn {
    order: 2;
    margin-left: auto;
    width: 35px;
    height: 35px;
  }
}
/*
  ページネーション
================================================ */
/* ページネーション全体のレイアウト */
.pagination_area {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 40px;
}
/* ページ番号ボタンの基本スタイル */
.page_btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 45px;
  height: 45px;
  padding: 0;
  cursor: pointer;
  background-color: #fff;
  border: 1px solid #7cc1c5;
  border-radius: 50%;
  color: #7cc1c5;
  font-family: "Archivo Narrow", sans-serif;
  font-weight: bold;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}
/* ホバーした時：少し浮き上がるような演出 */
.page_btn:hover {
  background-color: #7cc1c5;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(124, 193, 197, 0.3);
}
/* 現在表示中のページ（アクティブ） */
.page_btn.active {
  background-color: #008800;
  border-color: #008800;
  color: #fff;
  cursor: default;
  pointer-events: none; /* 自分自身はクリック不可に */
  box-shadow: none;
  transform: none;
}
/* [ ▼ ニュース詳細 ] ---------- */
.news_box {
  padding: 60px;
  border-radius: 40px;
  background: #fff;
}
@media (max-width: 767px) {
  .news_box {
    padding: 40px;
  }
}
.news_meta {
  margin-bottom: 1.8rem;
}
.news_meta .news_date {
  margin-left: 1rem;
}
.news_main_title {
  margin-bottom: 1.8rem;
  font-size: 2rem;
  color: #00a53d;
  line-height: 1.5;
}
.news_box p {
  margin: 0;
  line-height: 1.8;
}
.news_box p + p {
  margin-top: 1.8rem;
}
.news_box img + p {
  margin-top: 1.8rem;
}
.news_box p + img {
  margin-top: 1.8rem;
}
.news_box p + a {
  display: inline-block;
  margin-top: 1.8rem;
}
.news_box img + a {
  display: inline-block;
  margin-top: 1.8rem;
}
.news_box a + p {
  display: inline-block;
  margin-top: 1.8rem;
}
.news_box a + p {
  display: inline-block;
  margin-top: 1.8rem;
}
/* 戻るボタン */
.news_back_container {
  text-align: center;
  margin: 60px 0 0;
}
.news_back_link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20rem; /* 幅は文字数に合わせて微調整してください */
  height: 60px;
  padding-left: 6px;
  color: #fff !important; /* 他のaタグ設定に負けないよう指定 */
  font-weight: bold;
  letter-spacing: 0.1em;
  text-decoration: none !important;
  border-radius: 60px;
  background: linear-gradient(-45deg, rgba(85, 186, 79, 1), rgba(137, 195, 235, 1)) !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
}
.news_back_arrow_box {
  position: absolute;
  left: 6px;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transition: all 0.3s ease;
  flex-shrink: 0;
}
.news_back_arrow_box::before {
  content: '';
  position: absolute;
  left: 13px;
  top: 50%;
  width: 22px;
  height: 2px;
  background-color: #fff !important;
  transform: translateY(-50%);
  transition: all 0.3s ease;
}
.news_back_arrow_box::after {
  content: '';
  position: absolute;
  left: 13px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff !important;
  border-left: 2px solid #fff !important;
  transform: translateY(-50%) rotate(-45deg);
  transition: all 0.3s ease;
}
.news_back_text {
  font-size: 16px;
  transition: all 0.3s ease;
}
.news_back_link:hover {
  opacity: 0.9;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}
.news_back_link:hover .news_back_arrow_box {
  background: rgba(255, 255, 255, 0.3);
}
/* ===============================================================

  aside / CONTACT

=============================================================== */
aside {
  margin-top: 5rem;
  padding-top: 3rem;
  padding-bottom: 3rem;
  background: #b3e2d5;
}
aside h2 {
  font-family: "Archivo Narrow", sans-serif;
  margin-bottom: 0;
  font-weight: 800;
  letter-spacing: 3px;
  line-height: 1em;
  font-size: 2.666rem;
  color: var(--h_color);
  text-align: right;
}
@media (max-width: 767px) {
  aside h2 {
    margin-bottom: 2rem;
    text-align: center;
  }
}
@media (min-width: 768px) {
  aside h2 {
    font-size: 3.666rem;
  }
}
/* [ ▼ 共通設定 ] ---------- */
.contact_box {
  display: flex;
  flex-wrap: wrap;
  background: #fff;
  padding: 30px;
  border-radius: 40px;
  justify-content: center;
}
/* 左側（メール）と右側（電話）それぞれの箱 */
.mail_section, .tel_section {
  flex: 1;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.contact_box h3 {
  font-size: 18px;
  color: #242633;
  margin-bottom: 10px;
  font-weight: bold;
}
@media (min-width: 768px) {
  .contact_box h3 {
    margin-bottom: 25px;
  }
}
/* [ ▼ メールでのお問い合わせ ] ---------- */
@media screen and (max-width: 767px) {
  .mail_section {
    margin-top: 1rem;
    margin-bottom: 1rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #c7ebdb;
  }
}
a.contact_btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #008800;
  color: #fff !important;
  text-decoration: none;
  min-width: 300px;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: bold;
  transition: all 0.3s ease;
}
a.contact_btn:hover {
  background-color: #00a000;
  transition: all 0.3s ease;
}
a.contact_btn img {
  width: 22px;
  margin-right: .5rem;
}
.arrow_btn {
  position: relative;
  width: 34px;
  height: 34px;
  margin-left: .5em;
  background-color: #efefef;
  border-radius: 50%;
  flex-shrink: 0;
  transition: background-color 0.3s;
}
a.contact_btn .arrow_icon_right {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 12px;
  /* 90度回転させて右向きにする */
  transform: translate(-50%, -50%) rotate(-90deg);
  background-image: url("../images/common/icon_arrow.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transition: filter 0.3s;
}
/* [ ▼ 電話でのお問い合わせ ] ---------- */
@media screen and (max-width: 767px) {
  .tel_section {
    margin-top: 1rem;
    margin-bottom: 1rem;
  }
}
.tel_number {
  font-family: "Archivo Narrow", sans-serif;
  font-size: 1.8rem;
  font-weight: bold;
  color: #008800;
  margin-bottom: 8px;
  display: block;
}
.tel_number {
  line-height: 1;
}
.tel_number img {
  width: 23px;
  margin-right: .5rem;
}
/* 電話番号リンクの色をリセット */
a[href^="tel:"] {
  color: inherit !important;
  text-decoration: none !important;
  pointer-events: auto;
}
/* ホバーした時も色を変えたくない場合 */
a[href^="tel:"]:hover {
  color: inherit;
  text-decoration: none;
}
/* 受付時間 */
.tel_time {
  line-height: 1;
  font-size: 14px;
  color: #242633;
}
/* ===============================================================

  プライバシーポリシー  

=============================================================== */
.policy_area {
  max-width: 800px;
  margin: 3rem auto 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
ol.policy_box {
  padding: 0;
  counter-reset: li;
}
ol.policy_box > li {
  position: relative;
  padding-left: 2em;
  list-style: none;
}
ol.policy_box > li:not(:last-of-type) {
  margin-bottom: 3rem;
}
ol.policy_box > li:before {
  position: absolute;
  top: 0;
  left: 0;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--h_color);
  counter-increment: li;
  content: counter(li)'.';
  line-height: 2.7;
}
@media (min-width: 768px) {
  ol.policy_box > li:before {
    font-size: 1.875rem;
  }
}
ol.policy_box > li > dl > dt h2 {
  margin-bottom: 1.5rem !important;
}
ol.policy_box > li > dl > dd > ol {
  padding-left: 1em;
}
ol.policy_box > li > dl > dd > ol > li {
  list-style-type: none;
  counter-increment: cnt;
}
ol.policy_box > li > dl > dd > ol > li::before {
  content: "("counter(cnt) ") ";
}
.policy_area .midashi_M {
  padding-top: .1em;
  font-weight: bold;
  color: var(--h_color);
}
@media (min-width: 768px) {
  .policy_area .midashi_M {
    font-size: 1.875rem;
  }
}
dl.madoguchi {
  display: grid;
  grid-template-columns: 5em 1fr; /* 左がラベル、右が内容 */
  gap: 0px;
  padding-left: 1.2rem;
}
.madoguchi dt {
  grid_column: 1; /* 1列目に配置 */
  font-weight: normal;
}
.madoguchi dd {
  grid_column: 2; /* 2列目に配置 */
  margin: 0; /* デフォルトの余白を消す */
}
/* ===============================================================

  トップへ移動ボタン  

=============================================================== */
/* --- 上部に戻るボタン：継承・巨大化防止版 --- */
#up {
  position: fixed;
  bottom: 0;
  right: 8px;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
  width: 60px;
  height: 60px;
}
@media (min-width: 768px) {
  #up {
    bottom: 10px;
    right: 20px;
    width: 100px;
    height: 100px;
  }
}
/* クラスがついたら表示（JS側と連動） */
#up.is_up_visible {
  opacity: 1 !important;
  visibility: visible !important;
}
#up a {
  display: block;
  width: 100%;
  height: 100%;
}
#up a img {
  display: block;
  /* ★修正：親要素（#up）のサイズに100%従わせる */
  width: 100% !important;
  height: 100% !important;
  object-fit: contain;
}
/* スマホ時の画像微調整（元の指定を継承） */
@media (max-width: 767px) {
  #up a img {
    margin-left: auto;
    /* 親が60pxなので、その中で100%表示 */
    width: 100% !important;
  }
}
/* ===============================================================

  フッター

=============================================================== */
/*
  共通
================================================ */
/* クラス名をアンダーバー統一ルールに変更 */
footer {
  width: 100%;
  min_height: 100vh;
  margin-top: 3rem;
  padding-top: 2rem;
  padding-bottom: 1rem;
  font-size: 14px;
  color: #fff;
  background: linear-gradient(135deg, #55ba4f 48%, #89c3eb 100%);
}
.foot_logo img {
  width: 250px;
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) {
  .foot_logo img {
    width: 214px;
  }
}
address {
  line-height: 1.8;
}
ul.foot_link {
  font-family: "Archivo Narrow", sans-serif;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media screen and (max-width: 767px) {
  .foot_nav_ttl {
    font-size: 1.2rem;
  }
}
.foot_nav_ttl a:hover {
  opacity: 0.7;
  padding-left: 2px;
  transition: 0.3s;
}
/* リスト全体のスタイル */
.foot_nav_list {
  list-style: none;
  padding: 0;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .foot_nav_list li {
    line-height: 1.85;
  }
}
@media (min-width: 768px) {
  .foot_nav_list li {
    font-size: .75rem;
  }
}
.foot_nav_list li a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
}
.foot_nav_list li a::before {
  content: "-";
  margin-right: 0.5em;
}
.foot_nav_list li a:hover {
  opacity: 0.7;
  padding-left: 2px;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .foot_nav_block {
    margin-bottom: 20px;
  }
}
ul.foot_link li a {
  color: #fff;
}
/* [ ▼ 別サイトリンク ] ---------- */
/* =================================================
   1. 基本設定 (1200px以上：PC)
   ================================================= */
/* 親コンテナ */
.footer_container {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  margin: 0 auto;
}
/* 各メニュー項目 */
.foot_item {
  flex: 0 0 calc((100% - 150px) / 4);
  padding-right: 15px;
  box-sizing: border-box;
}
/* バナーエリア */
.footer_bnr_area {
  flex: 0 0 150px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.foot_bnr {
  width: 100%;
}
.foot_bnr img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}
/* =================================================
   2. タブレット設定 (577px 〜 1199px)
   ================================================= */
@media screen and (max-width: 1199px) {
  .footer_container {
    flex-wrap: wrap;
  }
  .foot_item {
    flex: 0 0 25%;
    margin-bottom: 30px;
  }
  .footer_bnr_area {
    flex: 0 0 100%;
    max-width: 100%;
    flex-direction: row;
    justify-content: center;
    padding: 20px 0;
  }
  .foot_bnr {
    display: inline-flex;
    width: 23%;
    vertical-align: middle;
  }
  .foot_bnr:not(:last-child) {
    margin-right: 2%;
  }
}
/* =================================================
   3. スマホ設定 (576px以下)
   ================================================= */
@media screen and (max-width: 576px) {
  .footer_container {
    margin-top: 1rem;
    padding-top: 2rem;
    border-top: 1px solid #c7ebdb;
  }
  .foot_item {
    flex: 0 0 50%;
  }
  /* バナーエリア全体 */
  .footer_bnr_area {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; /* 2段目以降を中央に寄せて左右に余白を作る */
    gap: 15px; /* バナー同士の隙間 */
    width: 100%;
  }
  /* バナー共通設定（150px固定） */
  .foot_bnr {
    width: 150px !important;
    flex: 0 0 150px !important;
    max-width: none !important;
    margin: 0 !important;
  }
  /* ★1番目のバナー（ISO）の設定 */
  .foot_bnr:first-child {
    /* 幅100%を占有して改行させるが、中身は左に寄せる */
    flex: 0 0 100% !important;
    width: 100% !important;
    display: flex;
    justify-content: flex-start; /* ★左寄せにする */
    /* 下の段の「左側のバナー」と位置を合わせるための計算 
       （画面中央からバナー1枚分+隙間の半分だけ左にずらす） */
    padding-left: calc(50% - 150px - 7.5px);
    box-sizing: border-box;
  }
  .foot_bnr img {
    width: 100%;
    height: auto;
    display: block;
  }
  /* 1枚目の中にある画像サイズを固定 */
  .foot_bnr:first-child img, .foot_bnr:first-child a {
    width: 150px !important;
  }
}
/* [ ▼ コピーライト ] ---------- */
.copyright {
  text-align: center;
}