@charset "utf-8";
/* 1/13〜追加部分 */

.menu-wrap.burgermenu_e .mene_box p {
font-size: clamp(16px, 2vw, 20px);
}

body:not(.on) .pagetitle_e {
  background: #eee;
}
body:not(.on) .pagetitle_e img{
  width: 500px;
}

/* title_wrap を relative にする */
body:not(.on) .title_wrap {
  position: relative;
  z-index: 50;
  top: 0px;
}

/* title_card も relative にする */
body:not(.on) .pagetitle_e .title_card {
  position: relative;
  top: 90%;
}

.morebox {
  gap: 30px;
  padding-top: 7vw;
}
.comment_box {
  margin-bottom: 30px;
}
.comment_box > div {
  position: relative;
  outline: 3px solid #5BAE07;
  padding: 15px 25px;
  background-color: #fff;
}
.comment_box > div::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-5px);
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 15px solid transparent;
  border-left: 15px solid transparent;
  border-top: 20px solid #ffffff;
  border-bottom: 0;
  z-index: 2;
}
.comment_box > div::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 15px solid transparent;
  border-left: 15px solid transparent;
  border-top: 20px solid #5BAE07;
  border-bottom: 0;
  z-index: 1;
}
.comment_box > div p {
  font-size: clamp(16px, 2.6vw, 26px);
  font-weight: 700;
}
/* 1/13〜追加部分 */
.greenbox {
  position: relative;
  background-color: #1f7a1f;
  /* 複雑レイヤー */
  background-image: /* 光が当たってる感じ（左上） */ radial-gradient(1200px 600px at 20% 0%, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0) 60%), /* 奥行き用の暗部（右下） */ radial-gradient(900px 500px at 80% 100%, rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0) 65%), /* 斜め方向のトーン差 */ linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(0, 0, 0, 0.18)), /* グリッド（縦） */ linear-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px), /* グリッド（横） */ linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
  background-size:
    auto, auto, auto, 24px 24px, 24px 24px;
}
.greenbox p, .greenbox h2 {
  color: #fff;
}
.cate3 {
  background: #eef2ea;
}
/* =========================
   ラッパー（Flexbox）
========================= */
.reason_wrap {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(24px, 2vw, 28px);
  align-items: stretch;
}
/* =========================
   カード
========================= */
.reason_wrap .reason_item {
  flex: 0 0 calc(33.333% - clamp(16px, 2vw, 20px));
  border-radius: 16px;
  overflow: hidden;
  background: transparent;
  display: flex;
  flex-direction: column;
}
/* 画像 */
.reason_wrap .reason_item .imgbox {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
}
.reason_wrap .reason_item .imgbox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* テキスト */
.reason_wrap .reason_item .txtbox {
  flex: 1;
  background: #fff;
  padding: clamp(14px, 2vw, 20px);
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, .08);
  justify-content: flex-start;
}
/* 見出し・本文 */
.reason_wrap .reason_item .txtbox h3 {
  margin: 0 0 10px;
  line-height: 1.5;
}
.reason_wrap .reason_item .txtbox p {
  margin: 0;
  line-height: 1.9;
  opacity: .9;
}
@media (max-width: 1080px) {
  .reason_wrap .reason_item {
    flex: 0 0 calc(50% - clamp(16px, 2vw, 20px));
  }
}
/* 1カラム */
@media (max-width: 576px) {
  .reason_wrap {
    max-width: 350px;
    margin: auto;
  }
  .reason_wrap .reason_item {
    flex: 0 0 100%;
  }
}
.columnwrap {
  margin-top: clamp(100px, 10vw, 150px);
}
/* =========================
   newswrap 全体
========================= */
.newswrap {
  max-width: 1280px;
  margin: 0 auto;
  gap: clamp(18px, 3vw, 40px);
  align-items: center;
}
/* =========================
   左カラム
========================= */
.newswrap .leftbox {
  flex: 0 0 260px;
}
/* タイトルエリア */
.newswrap .titlebox {
  gap: 10px;
}
.newswrap .titlebox .imgbox {
  width: 100px;
  height: 70px;
}
.newswrap .titlebox .imgbox img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
/* 一覧を見るボタン */
.newswrap .more1 a {
  display: inline-block;
  text-decoration: none;
}
.newswrap .more1 a > div {
  border: 1px solid #76b84a;
  border-radius: 999px;
  padding: 10px 14px 10px 16px;
  gap: 10px;
  align-items: center;
}
.newswrap .more1 .icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #76b84a;
  color: #fff;
  display: grid;
  place-items: center;
}
/* =========================
   右カラム（カード一覧）
========================= */
.newswrap .webgene-blog {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
  align-items: start;
}
/* カード */
.newswrap .webgene-item a {
  display: block;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 22px rgba(0, 0, 0, .12);
  text-decoration: none;
  color: inherit;
}
/* 画像 */
.newswrap .webgene-item .imgbox {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #ddd;
}
.newswrap .webgene-item .imgbox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* テキスト */
.newswrap .webgene-item .txtbox {
  padding: 16px 30px 18px;
}
.newswrap .webgene-item .txtbox h3 {
  margin: 0 0 10px;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
    font-weight: bold;
}
.newswrap .webgene-item .default_txt2 {
  margin: 0 0 12px;
  line-height: 1.8;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media screen and (max-width: 1080px) {
  .newswrap {
    flex-direction: column;
    gap: 0;
  }
  .more1.pc-hide {
    display: block;
  }
  .newswrap .leftbox {
    flex: 0 0 220px;
  }
  .newswrap .titlebox {
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 768px) {
  /* 親の横はみ出し対策 */
  .newswrap {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden; /* 保険 */
  }
  /* gridを1列にして、幅計算で飛び出さないように */
  .newswrap .webgene-blog {
    width: 100%;
    max-width: 450px;
    min-width: 0; /* ★これ重要（はみ出し防止） */
    grid-template-columns: 1fr;
  }
  /* gridの子要素が内容で広がるのを止める */
  .newswrap .webgene-item {
    min-width: 0; /* ★重要 */
  }
  .newswrap .webgene-item a {
    width: 100%;
    min-width: 0; /* ★重要 */
    box-sizing: border-box; /* paddingで飛び出し防止 */
  }
  /* 画像も念のため */
  .newswrap .webgene-item .imgbox, .newswrap .webgene-item .imgbox img {
    max-width: 100%;
  }
}
.titlebox1 {
  margin-bottom: 30px;
}
.titlebox1 h2 {
  margin: 0;
  font-weight: 700;
}
.titlebox1 p {
  margin: 0;
  font-weight: 700;
}
.titlebox1 p:nth-child(2) {
  color: #5BAE07;
  letter-spacing: .08em;
}
.column2_a {
  padding: 60px 0;
    width: 100%;
}
/* 中央に白いボックスを配置 */
.column2_a .inner {
  max-width: 1280px;
    width: 100%;
}
.column2_a .row1 {
    width: 100%;
  background: #fff;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  position: relative;
  border-radius: 20px;
  flex-wrap: nowrap;
}
/* テキストエリア */
.column2_a .txtbox {
  padding: 60px 0px 60px 50px;
  flex: 0 0 60%;
  box-sizing: border-box;
  position: relative;
}
/* ステップ番号 */
.column2_a .step {
  line-height: 1;
  position: absolute;
  top: -50px;
  left: 20px;
  font-weight: 400;
}
/* タイトル */
.column2_a .title {
  font-size: 24px;
  font-weight: 500;
  margin: 0 0 20px;
}
.column2_a .title span {
  color: #00a4a7; /* 強調文字の色 */
  font-weight: 600;
}
.column2_a .imgbox {
  border-radius: 20px;
  overflow: hidden;
  flex: 1 1 40%;
  position: relative;
  transform: translateX(30px) translateY(-60px);
  aspect-ratio: 410 / 285;
  min-width: 360px;
}
.column2_a .imgbox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* ---------- 768px ~ ---------- */
@media screen and (max-width: 1080px) {
  .column2_a .inner {
    margin: 0 0px;
    padding: 0px;
  }
  .column2_a .row1 {
    flex-direction: column; /* 縦並び */
  }
  .column2_a .txtbox {
    width: 100%;
    padding: clamp(30px, 5vw, 60px) clamp(20px, 4vw, 50px);
  }
}
@media screen and (max-width: 768px) {
  .column2_a .imgbox {
    min-width: 300px;
  }
  .column2_a .imgbox {
    width: 95%;
    transform: none;
    margin: auto auto;
  }
}
/* ===== 2カラム===== */
.column2_b {
  width: 100%;
}
.column2_b .inner {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  min-height: clamp(600px, 70vh, 800px);
}
/* ===== 左：大きいビジュアル ===== */
.column2_b .imgbox {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 65%;
  aspect-ratio: 788 / 518;
  background: #c7c7c7;
  overflow: hidden;
  border-radius: 20px;
}
.column2_b .imgbox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.column2_b .txtbox {
  position: absolute;
  right: 0px; /* 右端からの余白 */
  top: 60px;
  width: 50%; /* カードの幅 */
  background: #fff;
  box-shadow: 0 10px 22px rgba(0, 0, 0, .08);
  padding: clamp(40px, 4vw, 60px);
  border-radius: 20px;
}
/* タイトル */
.column2_b .title {
  margin: 0 0 14px;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: .04em;
}
.column2_b .title span {
  color: #0b8ca0;
}
/* 本文 */
.column2_b .text {
  margin: 0;
  font-size: 14px;
  line-height: 2;
  letter-spacing: .04em;
  overflow-wrap: anywhere;
}
/* ---------- 1080px ~ ---------- */
@media screen and (max-width: 1080px) {
  .column2_b .txtbox {
    position: relative;
    right: auto;
    left: 120px;
    width: 80%;
    top: -20px;
  }
  .column2_b .imgbox {
    position: relative;
    width: 80%;
  }
}
/* ---------- 768px ~ ---------- */
@media screen and (max-width: 768px) {
  .column2_b .txtbox {
    left: 100px;
    padding: 30px 20px;
  }
  .column2_b .imgbox {
    width: 90%;
  }
}
/* ---------- 576px ~ ---------- */
@media screen and (max-width: 576px) {
  .column2_b .txtbox {
    left: 0px;
    width: 100%;
    top: 0px;
  }
  .column2_b .imgbox {
    position: relative;
    width: 100%;
  }
}
/* ---------- ページ内リンク ---------- */
.link_wrap {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  background: #fff;
}
.link_wrap .page_link {
  width: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px 30px;
  border-radius: 999px;
  background: #53A431;
  text-decoration: none;
  transition: transform .2s ease, filter .2s ease, box-shadow .2s ease;
}
.link_wrap .page_link p {
  margin: 0;
  color: #fff;
  white-space: nowrap;
  font-weight: 600;
}
.link_wrap .page_link .icon {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 34px;
}
.link_wrap .page_link .icon i {
  color: #53A431;
  font-size: 14px;
  line-height: 1;
}
.link_wrap .page_link:hover {
  filter: brightness(.98);
  opacity: 1;
  transform: translateY(2px);
  box-shadow: 0 10px 18px rgba(0, 0, 0, .08);
}
/* スマホ調整（2列→1列） */
@media (max-width: 768px) {
  .link_wrap {
    gap: 14px;
  }
  .link_wrap .page_link {
    min-width: calc(50% - 7px);
    padding: 16px 18px;
  }
}
@media (max-width: 576px) {
  .link_wrap .page_link {
    min-width: 100%;
  }
}
/* ---------- news ---------- */
.cate-wrap .webgene-blog {
  justify-content: center;
}
.cate-wrap .webgene-blog {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-box;
  display: -webkit-flexbox;
  display: -moz-flexbox;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: flex;
  -webkit-box-lines: multiple;
  -moz-box-lines: multiple;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  gap: 20px;
}
.cate-wrap .webgene-blog .webgene-item a {
  border: 1px solid #5BAE07;
  padding: 2px 20px;
  border-radius: 999px;
}
.cate-wrap .webgene-blog .webgene-item a p {
  color: #5BAE07;
  font-weight: 500;
}
.cate-wrap .webgene-blog .webgene-item a.on {
  background-color: #5BAE07;
}
.cate-wrap .webgene-blog .webgene-item a.on p {
  color: #fff;
}
.more1 {
  justify-content: center;
}
/* aタグをボタン化 */
.more1 a {
  display: inline-block;
  text-decoration: none;
}
/* ボタン本体 */
.more1 a > div {
  position: relative;
  height: 58px;
  padding: 0 16px 0 22px;
  border: 1px solid #5BAE07;
  border-radius: 999px;
  background: #EEF2EB;
  display: flex;
  align-items: center;
  gap: 14px;
  box-sizing: border-box;
  transition: border-color .25s ease, background-color .25s ease;
}
/* テキスト */
.more1 p {
  margin: 0;
  font-weight: 600;
  white-space: nowrap;
  color: #333;
}
/* 右の丸アイコン */
.more1 .icon {
  margin-left: auto;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: #5BAE07;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color .25s ease, transform .3s ease;
}
.more1 .icon i {
  color: #fff;
  font-size: 16px;
  line-height: 1;
}
/* hover挙動 */
.more1 a:hover > div {
  border-color: #1f7e0b;
}
.more1 a:hover .icon {
  background: #1f7e0b;
  transform: translateX(3px);
}
.more1 .faq_cta_btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: #5BAE07;
  color: #fff;
  text-decoration: none;
  padding: clamp(14px, 1.6vw, 18px) clamp(32px, 4vw, 44px);
  border-radius: 9999px;
  box-shadow: 0 3px 0 #418100;
  transition: transform .15s ease, box-shadow .15s ease;
  flex-wrap: nowrap;
}
/* hover：凹む（色は変えない） */
.more1 .faq_cta_btn:hover {
  transform: translateY(3px);
  box-shadow: 0 0 0 #418100;
  filter: none; /* 念のため */
  opacity: 1; /* 念のため */
}
/* active：さらに凹ませたいなら */
.more1.faq_cta_btn:active {
  transform: translateY(3px);
  box-shadow: 0 0 0 #418100;
  filter: none;
  opacity: 1;
}
.more1 .faq_cta_btn p {
  margin: 0;
  font-weight: 700;
  letter-spacing: .06em;
  line-height: 1;
  white-space: nowrap;
  color: #fff;
}
.more1 .faq_cta_btn i {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  background: #fff;
  color: #5BAE07;
  border-radius: 50%;
  line-height: 1;
  transition: transform 0.3s ease; /* 追加 */
}
.more1 .faq_cta_btn:hover i {
  transform: translateX(3px); /* 右へ移動 */
}
.more1.more2 a > div {
  border: 1px solid#EB7D1E;
}
.more1.more2 .icon {
  background: #EB7D1E;
}
.more1.more2 .faq_cta_btn {
  background: #EB7D1E;
  box-shadow: 0 3px 0 #CB6004;
}
.more1.more2 .faq_cta_btn i {
  color: #EB7D1E;
}
.ulwrap {
  justify-content: flex-start;
  align-items: flex-start;
}
.pagetitle_e {
  padding-top: 115px;
}
.menu-bt p {
  white-space: nowrap;
}
/* header basic (新header) */
.header .default_txt2 {
  font-weight: 600;
}
.header {
  width: 100%;
  background: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, .08);
  align-items: stretch;
}
.header .header_left {}
.header .header_left {
  width: auto;
}
.header_left {
  padding-right: 30px;
  padding-left: 20px;
}
.header .header_logo a {
  display: block;
}
.header .header_logo img {
  display: block;
  height: 52px;
  width: auto;
}
.header .header_center {
  flex: 1;
  min-width: 0;
}
/* header top row */
.header .topbox {
  margin-right: 0;
  margin-left: auto;
  gap: 40px;
  padding: 20px 16px 10px;
  min-height: 68px;
}
/* header links */
.header .header_links {
  display: flex;
  align-items: center;
  gap: 20px;
}
/* ボタン本体 */
.header .header_links .header_link {
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: 999px;
  background: #fff;
  text-decoration: none;
  color: #222;
  white-space: nowrap;
  transition: box-shadow .2s ease, transform .2s ease, opacity .2s ease;
}
/* 文字 */
.header .header_links .header_link p {
  margin: 0;
  line-height: 1;
}
/* 右側の丸アイコン枠 */
.header .header_links .header_link .icon {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: #5BAE07;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 22px;
  transition: transform 0.25s ease;
}
.header .header_links .header_link:hover .icon {
  transform: translateX(3px);
}
.header .header_links .header_link .icon i {
  color: #fff;
  line-height: 1;
  font-size: 12px; /* ←ここで調整 */
}
/* hover */
.header .header_links .header_link:hover {
  box-shadow: 0 4px 14px rgba(0, 0, 0, .10);
}
/* header cta */
.header .contact_cta_btns {
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}
.header .contact_cta_btn {
  display: flex;
  align-items: center;
  gap: 18px;
  text-decoration: none;
  border-radius: 999px;
}
.header .contact_cta_btn .imgbox {
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.header .contact_cta_btn .imgbox img {
  display: block;
  width: 40px;
  height: 40px;
  object-fit: contain;
}
.header .contact_cta_btn_tel {
  color: #1f7a38;
}
.header .contact_cta_btn_mail {
  background: #f57c00;
  border-color: #f57c00;
  color: #fff;
  padding: 4px 14px;
  /* 影 */
  box-shadow: 0 4px 0 #CB6004;
  transition: transform .15s ease, box-shadow .15s ease, filter .15s ease;
}
/* hover で少し押し込む */
.header .contact_cta_btn_mail:hover {
  transform: translateY(3px);
  box-shadow: none;
  filter: brightness(.98);
  opacity: 1;
}
/* クリック中はさらに凹む */
.header .contact_cta_btn_mail:active {
  transform: translateY(6px);
  box-shadow: 0 0 0 rgba(0, 0, 0, .18);
}
.header .contact_cta_btn_mail .imgbox img {
  width: 30px;
  height: 30px;
}
.header .txt-white {
  color: #fff;
}
/* header nav */
.header .header_nav {
  width: 100%;
}
.header .header_nav_inner {
  padding: 0 16px;
}
.header .header_nav_items {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 34px;
  padding-bottom: 6px;
}
.header .header_nav_items .li a {
  text-decoration: none;
  color: #333;
  display: block;
  padding: 6px 0;
  white-space: nowrap;
}
/* header menu btn */
.header .header_menu_btn {
  padding: 25px 20px 16px;
  background: #5BAE07;
}
.header .menu-bt {
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  user-select: none;
}
.header .menu-bt .line {
  width: 30px;
}
.header .menu-bt .line div {
  height: 2px;
  background: #fff;
  margin: 6px 0;
}
.header .menu-bt .line div {
  height: 2px;
  background: #fff;
  margin: 5px 0;
  transition: transform .2s ease, opacity .2s ease;
  transform-origin: center;
}
/* active の時：× */
.header .menu-bt.active .line div:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.header .menu-bt.active .line div:nth-child(2) {
  opacity: 0;
}
.header .menu-bt.active .line div:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
/* header fixed (後半で上書きされているheader定義) */
.header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  padding: 0px;
  justify-content: space-between;
  z-index: 9999;
}
/* burger menu overlay */
.menu-wrap.burgermenu_e {
  display: none;
  position: fixed;
  z-index: 98;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.menu-wrap.burgermenu_e::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-color: #2C2C2C;
  opacity: 0.6;
}
.menu-wrap.burgermenu_e .mene_box {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 100%;
  width: 1000px;
  max-width: 100%;
  margin: 0;
  overflow-y: auto;
  z-index: 2;
}
.menu-wrap.burgermenu_e .mene_box .titlebox {
  gap: 10px;
  margin-bottom: 20px;
}
.menu-wrap.burgermenu_e .mene_box .titlebox img {
  width: 20px;
}
.menu-wrap.burgermenu_e .mene_box .nav_box {
  padding: 100px clamp(40px, 8vw, 110px) clamp(80px, 12vw, 100px);
  margin-top: clamp(80px, 12vw, 150px);
  background-color: #53A431;
  width: 100%;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 20px;
}
.menu-wrap.burgermenu_e .mene_box .nav_box .ul {
  flex-direction: column;
  align-items: flex-start;
  max-width: 250px;
  margin-right: auto;
  margin-left: auto;
}
.menu-wrap.burgermenu_e .mene_box .nav_box .ul .li {
  padding: 15px 0;
}
.menu-wrap.burgermenu_e .mene_box .nav_box .ul .li a {
  justify-content: flex-start;
  gap: 15px;
}
.menu-wrap.burgermenu_e .mene_box p {
  font-weight: 500;
  color: #fff;
}
.menu-wrap.burgermenu_e .mene_box a .icon {
  width: 28px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  border: 1px solid #fff;
  transition: transform 0.3s ease;
}
.menu-wrap.burgermenu_e .mene_box a .icon i {
  font-size: 11px;
  color: #fff;
}
.menu-wrap.burgermenu_e .mene_box a:hover .icon {
  transform: translateX(3px);
}
.menu-wrap.burgermenu_e .mene_box .sns-icons {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 20px;
}
.menu-wrap.burgermenu_e .mene_box .sns-icons a img {
  width: 24px;
  height: 24px;
}
.menu-wrap.burgermenu_e .mene_box .lang-buttons {
  border-top: 1px solid #eee;
  padding-top: 30px;
  margin-top: 10px;
}
.menu-wrap.burgermenu_e .mene_box .lang-btn {
  padding: 6px 20px;
  border-radius: 20px;
  border: none;
  font-size: 14px;
  cursor: pointer;
  background-color: #bfa256;
  color: white;
}
.menu-wrap.burgermenu_e .mene_box .lang-btn p {
  color: #fff;
}
.menu-wrap.burgermenu_e .cta-row {
  border-top: 1px solid #DEF9E2;
  padding-top: 50px;
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 30px;
  flex-wrap: wrap;
}
/* ボタン */
.menu-wrap.burgermenu_e .cta-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px 50px;
  background: #fff;
  color: #333;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}
.menu-wrap.burgermenu_e .cta-btn p {
  color: #000;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
}
/* アイコン */
.menu-wrap.burgermenu_e .cta-btn i {
  font-size: 16px;
  color: #333;
}
/* ホバー */
.menu-wrap.burgermenu_e .cta-btn:hover p {}
/* old head_menu system */
.header .logo {
  width: 30%;
  max-width: 160px;
  min-width: 150px;
}
.header .head_menu, .header .head_menu .ul {
  gap: clamp(20px, 5vw, 40px);
}
.header .head_menu, .header .head_menu .ul p {
  font-size: clamp(8px, 6vw, 16px);
  white-space: nowrap;
}
.header .head_menu {
  padding: 20px 30px;
  border-radius: 200px;
  background-color: #fff;
  box-shadow: 0 0 20px rgba(113, 113, 113, 0.1);
}
.header .head_menu .ul .contact_bt {
  padding: 6px 18px;
  background-color: #383743;
  border-radius: 100px;
}
.header .head_menu .ul .contact_bt p {
  color: #fff;
}
.header .head_menu .menu-bt {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-box;
  display: -webkit-flexbox;
  display: -moz-flexbox;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-lines: multiple;
  -moz-box-lines: multiple;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  aspect-ratio: 1 / 1;
  cursor: pointer;
}
.header .head_menu .menu-bt .line {
  position: relative;
  width: 32px;
  height: 22px;
}
.header .head_menu .menu-bt .line div {
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #222;
  transition: ease 0.4s;
}
.header .head_menu .menu-bt .line div:nth-of-type(1) {
  top: 0;
}
.header .head_menu .menu-bt .line div:nth-of-type(2) {
  top: 50%;
  transform: translateY(-50%);
}
.header .head_menu .menu-bt .line div:nth-of-type(3) {
  bottom: 0;
}
.header .head_menu .menu-bt.active .line div:nth-of-type(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}
.header .head_menu .menu-bt.active .line div:nth-of-type(2) {
  top: 50%;
  transform: translateY(-50%) translateX(50%);
  opacity: 0;
}
.header .head_menu .menu-bt.active .line div:nth-of-type(3) {
  bottom: 50%;
  transform: translateY(50%) rotate(-45deg);
}
/* ---------- 1280px ---------- */
@media screen and (max-width: 1280px) {
  .header .head_menu, .header .head_menu .ul {
    gap: clamp(12px, 3vw, 30px);
  }
  .header .header_links, .header_nav {
    display: none;
  }
  .pagetitle_e {
    padding-top: 87px;
  }
  .header {
    flex-wrap: nowrap;
  }
}
/* ---------- 1080px ---------- */
@media screen and (max-width: 1080px) {
  .header {
    align-items: center;
  }
  .header .header_left {
    border-right: 0;
  }
  .header .header_center {
    flex: 1;
  }
  .header .topbox {
    display: none;
    border-bottom: 0;
    padding: 10px 12px;
    justify-content: flex-end;
  }
  .header .header_links {
    display: none;
  }
  .header .header_nav {
    display: none;
  }
  .header .header_menu_btn {
    padding: 10px 12px;
    border-left: 0;
  }
  .menu-wrap.burgermenu_e .mene_box {
    right: 0px;
  }
  .header .head_menu, .header .head_menu .ul {
    gap: 20px;
  }
  .header .head_menu {
    padding: 15px 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
  }
  .header .head_menu .ul {
    display: none;
  }
  .header .head_menu .ul p {
    font-size: 14px;
  }
  .header .head_menu .ul .contact_bt {
    padding: 3px 12px 5px;
  }
  .header .head_menu .menu-bt .line {
    width: 26px;
    height: 20px;
  }
}
/* ---------- 768px ---------- */
@media screen and (max-width: 768px) {
  .menu-wrap.burgermenu_e .mene_box .nav_box {
    border-radius: 0px;
  }
}
/* ---------- 576px ---------- */
@media screen and (max-width: 576px) {
  .header .contact_cta_btn_tel {
    display: none;
  }
  .header .contact_cta_btn {
    padding: 10px 12px;
  }
  .menu-wrap.burgermenu_e .mene_box {
    background-color: #53A431;
  }
  .menu-wrap.burgermenu_e .mene_box .nav_box {
    padding: clamp(40px, 10vw, 100px) 20px clamp(80px, 12vw, 100px);
  }
  .menu-wrap.burgermenu_e .mene_box .nav_box .ul .li a {
    gap: 10px;
  }
  .menu-wrap.burgermenu_e .mene_box a .icon {
    width: 22px;
  }
  .menu-wrap.burgermenu_e .mene_box a .icon i {
    font-size: 8px;
    color: #fff;
    transition: transform 0.3s ease;
  }
  .menu-wrap.burgermenu_e .cta-row {
    border-top: 1px solid #DEF9E2;
    padding-top: 50px;
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
  }
}
.access {
  background: #fff;
}
/* ---------- footer ---------- */
.box.yt-embed-220x110 {
  width: 220px;
  height: auto;
  overflow: hidden; 
  border-radius: 8px;
}/*
.box.yt-embed-220x110 {
  width: 220px;
  height: 150px;
  overflow: hidden; 
  border-radius: 8px;
  background: #000;
}
.box.yt-embed-220x110 iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
*/
.footer_f {
  background-color: #292929;
  padding-top: 60px;
  padding-bottom: 60px;
  flex-direction: column;
}
.footer_f p, .footer_f i {
  color: #fff;
}
.footer_f .logo {}
.footer_f .topbox {
  width: 100%;
  gap: clamp(16px, 5vw, 80px);
  margin: 0 auto;
}
.footer_f .topbox .title {
  padding-bottom: 10px;
  margin-bottom: 22px;
  border-bottom: #666666 solid 1px;
}
.footer_f .topbox .title p {
  letter-spacing: 0.18em;
}
.footer_f .topbox .item:not(:last-of-type) {
  margin-bottom: 16px;
}
.footer_f .topbox .item p {
  letter-spacing: 0.08em;
}
.footer_f .topbox .item a {
  justify-content: flex-start;
}
.footer_f .topbox .item a i {
  font-size: 20px;
}
.footer_f .topbox .box {
  width: calc((100% - (clamp(16px, 5vw, 80px) * 3)) / 4);
}
.footer_f .bottombox {
  margin-top: 100px;
  width: 100%;
  justify-content: space-between;
}
.footer_f .bottombox .copyright, .footer_f .bottombox .logo {
  width: auto;
}
.footer_f .bottombox .logo {
    max-width: 76px;
}
/* ---------- IEのみ ---------- */
@media all and (-ms-high-contrast: none) {}
/* ---------- 1280px ~ ---------- */
@media screen and (max-width: 1280px) {
  .footer_f .bottombox {
    margin-top: 80px;
  }
}
/* ---------- 1080px ~ ---------- */
@media screen and (max-width: 1080px) {
  .footer_f .topbox .box:not(.yt-embed-220x110){
    display: none;
  }
  .footer_f .topbox{display: block;margin-bottom: 30px;}
  .footer_f .topbox .box{width: 80%;max-width: 220px;margin:0 auto;}
  .footer_f .bottombox {
    margin-top: 0;
    flex-direction: column-reverse;
  }
  .footer_f .bottombox .logo, .footer_f .bottombox .copyright {
    width: 100%;
    text-align: center;
  }
  .footer_f .bottombox .copyright {
    padding-top: 20px;
  }
}
/* ===== contact cta（bg_img_wrap2なし） ===== */
.contact_cta {
  position: relative;
  overflow: hidden;
  padding: 80px 16px 60px;
}
/* 直置きの背景画像をセクション全面に */
.contact_cta > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
/* 緑のかぶせ */
.contact_cta .contact_cta_bg {
  position: absolute;
  inset: 0;
  background: rgba(19, 61, 34, .55);
  z-index: 1;
}
/* 中身 */
.contact_cta .contact_cta_inner {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
}
/* 白いカード */
.contact_cta .contact_cta_card {
  background: #fff;
  border-radius: 18px;
  padding: clamp(40px, 6vw, 64px) clamp(20px, 6vw, 80px) clamp(32px, 5vw, 50px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, .18);
  position: relative;
}
.contact_cta .contact_cta_tag {
  display: inline-block;
  background: #3FAE2A;
  color: #fff;
  border-radius: 6px;
  padding: 12px 26px;
  position: absolute;
  top: -30px; /* 被せ量：ここで調整 */
  left: 40px; /* カード内余白に合わせる */
  margin: 0;
  z-index: 2;
}
.contact_cta .contact_cta_tag::after {
  content: "";
  position: absolute;
  left: 18px;
  bottom: -10px;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid #3FAE2A;
}
.contact_cta .contact_cta_tag p {
  margin: 0;
  font-weight: 700;
  letter-spacing: .06em;
}
/* 文章 */
.contact_cta .contact_cta_txt p {
  margin: 0 0 26px;
  color: #222;
  line-height: 2;
  font-weight: 600;
}
.contact_cta .contact_cta_btns {
  display: flex;
  gap: 26px;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
}
.contact_cta .contact_cta_btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  text-decoration: none;
  border-radius: 9999px;
  padding: 10px 44px;
  transition: transform .15s ease;
}
.contact_cta .contact_cta_btn p {
  margin: 0;
  font-weight: 700;
  letter-spacing: .04em;
  line-height: 1;
  white-space: nowrap;
}
.contact_cta .contact_cta_btn_tel .imgbox {
  width: 40px;
  height: auto;
}
/* TEL（薄いグレー＋緑丸） */
.contact_cta .contact_cta_btn_tel {
  background: #EEF2EA;
  color: #111;
}
.contact_cta .contact_cta_btn_tel .contact_cta_icon {
  background: #3FAE2A;
}
/* MAIL（オレンジ＋白丸） */
.contact_cta .contact_cta_btn_mail {
  background: #F07A22;
  color: #fff;
}
.contact_cta .contact_cta_btn_mail .contact_cta_icon {
  background: #fff;
}
/* hover：透明にしないで凹む */
.contact_cta .contact_cta_btn:hover {
  transform: translateY(2px);
  opacity: 1;
  filter: none;
}
@media (max-width: 576px) {
  .menu-wrap.burgermenu_e .mene_box .nav_box .ul .li {
    padding: 10px 0;
  }
  .contact_cta {
    padding-left: 0px;
    padding-right: 20px;
  }
  .contact_cta .contact_cta_tag {
    padding: 12px 26px;
    position: absolute;
    top: -30px;
    left: -10px;
    margin: 0;
    z-index: 2;
  }
  .contact_cta .contact_cta_tag p {
    font-size: 16px;
  }
}
.access {}
.access_ttl {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-bottom: 40px;
}
.access_ttl::before, .access_ttl::after {
  content: "";
  flex: 1 1 auto;
  max-width: 1280px;
  height: 1px;
  background: rgba(0, 0, 0, .18);
}
.access_ttl p {
  margin: 0;
  color: #5BAE07; /* 見本のグリーン */
  font-weight: 700;
  letter-spacing: .12em;
  line-height: 1;
}
.access_map {
  width: 100%;
  margin: 0 auto;
}
.access_map .mapbox {
  border-radius: 12px;
  overflow: hidden;
  background: #eee;
}
.access_map .mapbox iframe {
  display: block;
  width: 100%;
  height: 500px;
  border: 0;
}
@media (max-width: 768px) {
  .access_map .mapbox iframe {
    height: 320px;
  }
}
.outfit {
  font-family: "Outfit", "Zen Kaku Gothic New", "Noto Sans JP", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
.mincho {
  font-family: "Zen Old Mincho", "Zen Kaku Gothic New", "Noto Sans JP", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
.eb {
  font-family: "EB Garamond", serif;
}
.en_title {
  font-family: "Outfit", serif;
  font-size: clamp(55px, 6vw, 84px);
  letter-spacing: .08em;
}
.en_title2 {
  font-family: "Outfit", serif;
  font-size: clamp(32px, 6vw, 40px);
  letter-spacing: .04em;
}
.default_title0 {
  font-size: clamp(20px, 3.2vw, 32px);
  letter-spacing: .05em;
}
.default_title {
  font-size: clamp(20px, 3.2vw, 32px);
  letter-spacing: .05em;
}
.default_title2 {
  font-size: clamp(20px, 2.9vw, 26px);
  letter-spacing: .05em;
}
.default_title3 {
  font-size: clamp(18px, 2.5vw, 20px);
  letter-spacing: .05em;
}
.default_txt {
  font-size: clamp(16px, 1.8vw, 18px);
  letter-spacing: .03em;
  line-height: 2;
}
.default_txt2 {
  font-size: clamp(15px, 1.6vw, 16px);
  letter-spacing: .02em;
  line-height: 2;
}
.default_txt3 {
  font-size: clamp(12px, 1.4vw, 14px);
  letter-spacing: .02em;
}
.en_txt {
  font-size: clamp(16px, 1.8vw, 20px);
  letter-spacing: .05em;
  line-height: 2;
  font-family: "Outfit", serif;
}
/* ---------- pagetitle_e ---------- */
.pagetitle_e {
  position: relative;
  overflow: visible;
}
.pagetitle_e .box {
  position: relative;
  width: 100%;
  height: clamp(200px, 36vw, 300px);
}
body.on .pagetitle_e .box::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  background: rgba(53, 105, 0, 0.30);
  z-index: 1;
}
.pagetitle_e .box .bg_img_wrap2 {
  position: relative;
  overflow: hidden;
}
.pagetitle_e .box .title_wrap {
    z-index: 2;}
    
.pagetitle_e.pagetitle_e1 .box .title_wrap {
  width: 100%;
  position: relative;
  margin-top: -80px;
}
.pagetitle_e .box .titlebox h1 {
  color: #fff;
  font-family: "Zen Kaku Gothic New", sans-serif;
  text-align: center;
  font-size: 34px;
  font-weight: 700;
}
.pagetitle_e.pagetitle_e1 .box {
  height: clamp(400px, 36vw, 500px);
}
.pagetitle_e .titlebox .imgbox {
  width: 100px;
  height: 100px;
  border-radius: 999px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}
.pagetitle_e .titlebox .imgbox img {
  width: 70px;
  height: auto;
  object-fit: contain;
}
.pagetitle_e .title_card h2 {
  font-weight: 500;
  text-align: center;
}
/* ===== 下の白カード ===== */
.pagetitle_e .box {
  position: relative;
}
.pagetitle_e .title_card {
  position: absolute;
  left: 50%;
  top: 65%;
  transform: translateX(-50%);
  width: min(800px, calc(100% - 40px));
  background: #fff;
  border-radius: 20px;
  padding: 60px 28px 36px;
  text-align: center;
  z-index: 3;
}
/* サブタイトル */
.pagetitle_e .title_card h2 {
  margin: 0 0 8px;
  font-size: 22px;
  font-weight: 700;
  color: #111;
}
/* 点々（●●●●● を整える） */
.pagetitle_e .title_card .dots {
  margin: 6px 0 14px;
  letter-spacing: 6px;
  font-size: 14px;
  color: #5BAE07;
  text-align: center;
}
/* 説明文 */
.pagetitle_e .title_card p {
  margin: 0;
  color: #333;
  line-height: 1.9;
}
@media screen and (max-width: 768px) {
  .pagetitle_e .title_card {
    position: absolute;
    left: 50%;
  }
  .pagetitle_e1 {
    margin-bottom: 100px;
  }
}
@media screen and (max-width: 576px) {
  .pagetitle_e1 {
    margin-bottom: 120px;
  }
}
html {}
body {
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  background-color: #fff;
  color: #000000;
}
body .bg_img_wrap {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}
body.on .bg_img_wrap .bg_img {
  display: none;
}
body .bg_img_wrap2 {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}
body.on .bg_img_wrap2 > img {
  display: none;
}
a {
  display: inline-block;
  transition: ease 0.3s;
}
a:hover {
  opacity: 0.5;
}
a p, a, a i {
  color: #000000;
}
.font-medium {
  font-weight: 500;
}
.font-semibold {
  font-weight: 600;
}
.font-black {
  font-weight: 900;
}
.pd_wrap {
  padding: 150px 80px 0;
}
.pd_wrap_all {
  padding: 150px 80px 150px;
}
.pd_wrap_side {
  padding-left: 80px;
  padding-right: 80px;
}
.cate_wrap > .cate {
  padding-top: 150px;
}
/* ---------- common ---------- */
/* ---------- header ---------- */
.header {}
/* ---------- footer ---------- */
/* ANIME */
.sc-anime.topin.on {
  opacity: 0;
  transform: translateY(-50px);
}
.sc-anime.topin.on.active {
  animation-name: topin;
  animation-duration: 1.2s;
  animation-timing-function: ease;
  animation-fill-mode: forwards;
}
.sc-anime.bottomin.on {
  opacity: 0;
  transform: translateY(50px);
}
.sc-anime.bottomin.on.active {
  animation-name: bottomin;
  animation-duration: 1.2s;
  animation-timing-function: ease;
  animation-fill-mode: forwards;
}
.sc-anime.leftin.on {
  opacity: 0;
  transform: translateX(-50px);
}
.sc-anime.leftin.on.active {
  animation-name: leftin;
  animation-duration: 1.2s;
  animation-timing-function: ease;
  animation-fill-mode: forwards;
}
.sc-anime.rightin.on {
  opacity: 0;
  transform: translateX(50px);
}
.sc-anime.rightin.on.active {
  animation-name: rightin;
  animation-duration: 1.2s;
  animation-timing-function: ease;
  animation-fill-mode: forwards;
}
.sc-anime.fadein.on {
  opacity: 0;
}
.sc-anime.fadein.on.active {
  animation-name: fadein;
  animation-duration: 1.2s;
  animation-timing-function: ease;
  animation-fill-mode: forwards;
}
.sc-anime.blurin.on {
  opacity: 0;
  -ms-filter: blur(6px);
  filter: blur(6px);
}
.sc-anime.blurin.on.active {
  animation-name: blurin;
  animation-duration: 1.2s;
  animation-timing-function: ease;
  animation-fill-mode: forwards;
}
.sc-anime.blurin2.on {
  opacity: 0;
  transform: translateY(50px);
  -ms-filter: blur(6px);
  filter: blur(6px);
}
.sc-anime.blurin2.on.active {
  animation-name: blurin2;
  animation-duration: 1.2s;
  animation-timing-function: ease;
  animation-fill-mode: forwards;
}
@keyframes topin {
  0% {
    opacity: 0;
    transform: translateY(-50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}
@keyframes bottomin {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}
@keyframes leftin {
  0% {
    opacity: 0;
    transform: translateX(-50px);
  }
  100% {
    opacity: 1;
    transform: translateX(0px);
  }
}
@keyframes rightin {
  0% {
    opacity: 0;
    transform: translateX(50px);
  }
  100% {
    opacity: 1;
    transform: translateX(0px);
  }
}
@keyframes upin {
  0% {
    transform: translateY(100%);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeout {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes blurin {
  0% {
    opacity: 0;
    -ms-filter: blur(6px);
    filter: blur(6px);
  }
  100% {
    opacity: 1;
    -ms-filter: blur(0px);
    filter: blur(0px);
  }
}
@keyframes blurin2 {
  0% {
    opacity: 0;
    transform: translateY(50px);
    -ms-filter: blur(6px);
    filter: blur(6px);
  }
  100% {
    opacity: 1;
    transform: translateY(0px);
    -ms-filter: blur(0px);
    filter: blur(0px);
  }
}
/* color */
.txt-color-normal {
  color: #000000;
}
.txt-white {
  color: #ffffff;
}
.txt-red {
  color: red;
}
.txt-color1 {
  color: #5BAE07;
}
.color1 {
  color: #5BAE07;
}
.color2 {
  color: #1F8C55;
}
.txt-color2 {
  color: #F1F1E9;
}
.txt-color3 {
  color: #021745;
}
.txt-color4 {
  color: #EBF5E5;
}
.bg-white {
  background-color: #ffffff;
}
.bg-black {
  background-color: black
}
.bg-color1 {
  background-color: #FFE93C
}
.bg-color2 {
  background-color: #F1F1E9
}
.bg-color3 {
  background-color: #021745
}
.bg-color4 {
  background-color: #EBF5E5
}
.border-color1 {
  border-color: #FFE93C
}
.border-color2 {
  border-color: #F1F1E9
}
.border-color3 {
  border-color: #021745
}
.border-color4 {
  border-color: #EBF5E5
}
.hvr-txt-color-normal:hover {
  color: #000000;
}
.hvr-txt-white:hover {
  color: #ffffff;
}
.hvr-txt-red:hover {
  color: red;
}
.hvr-txt-color1:hover {
  color: #FFE93C
}
.hvr-txt-color2:hover {
  color: #F1F1E9
}
.hvr-txt-color3:hover {
  color: #021745
}
.hvr-txt-color4:hover {
  color: #EBF5E5
}
.hvr-bg-white:hover {
  background-color: #ffffff;
}
.hvr-bg-black:hover {
  background-color: black
}
.hvr-bg-color1:hover {
  background-color: #FFE93C
}
.hvr-bg-color2:hover {
  background-color: #F1F1E9
}
.hvr-bg-color3:hover {
  background-color: #021745
}
.hvr-bg-color4:hover {
  background-color: #EBF5E5
}
.hvr-border-color1:hover {
  border-color: #FFE93C
}
.hvr-border-color2:hover {
  border-color: #F1F1E9
}
.hvr-border-color3:hover {
  border-color: #021745
}
.hvr-border-color4:hover {
  border-color: #EBF5E5
}
/* ---------- IEのみ ---------- */
@media all and (-ms-high-contrast: none) {}
/* ---------- 1280px ~ ---------- */
@media screen and (max-width: 1280px) {
  .pd_wrap {
    padding: 150px 60px 0;
  }
  .pd_wrap_all {
    padding: 150px 60px 150px;
  }
  .pd_wrap_side {
    padding-left: 60px;
    padding-right: 60px;
  }
  /* ---------- common ---------- */
  /* ---------- header ---------- */
  /* ---------- footer ---------- */
}
/* ---------- 1080px ~ ---------- */
@media screen and (max-width: 1080px) {
  /* ---------- common ---------- */
  /* ---------- header ---------- */
  /* ---------- footer ---------- */
}
/* ---------- 768px ~ ---------- */
@media screen and (max-width: 768px) {
  .pd_wrap {
    padding: 100px 50px 0;
  }
  .pd_wrap_all {
    padding: 100px 50px 100px;
  }
  .pd_wrap_side {
    padding-left: 50px;
    padding-right: 50px;
  }
  .cate_wrap > .cate {
    padding-top: 100px;
  }
  /* ---------- common ---------- */
  /* ---------- header ---------- */
  /* ---------- footer ---------- */
}
/* ---------- スマートフォン ---------- */
/* ---------- 576px ~ ---------- */
@media screen and (max-width: 576px) {
  .pd_wrap {
    padding: 80px 20px 0;
  }
  .pd_wrap_all {
    padding: 80px 20px 80px;
  }
  .pd_wrap_side {
    padding-left: 20px;
    padding-right: 20px;
  }
  .cate_wrap > .cate {
    padding-top: 80px;
  }
  /* ---------- common ---------- */
  /* ---------- header ---------- */
  .menu-wrap.burgermenu_e .mene_box .nav_box .ul .li p{font-size: 14px}
  /* ---------- footer ---------- */
}
/* ---------- 350px ~ ---------- */
@media screen and (max-width: 350px) {}