/*
Theme Name : gijkc
Theme URI : gijkc.jp
Description : kgijkc
Version : 1
Author : adben
Author URI : gijkc.jp
*/

@charset "UTF-8";

* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -webkit-text-size-adjust: 100%;
  /*outline: 1px solid blue;*/
}

a {
  text-decoration: none
}


body {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-weight: 400;
  font-size: 16px;
  overflow-x: hidden;
}





.first-view,
main {
  position: relative;
  /* z-indexが影響しないように */
  z-index: 1;
  /* 必要に応じて調整 */
}

/* メニューが開いたときの効果 */
body.active .first-view,
body.active main {
  z-index: 1;
  /* メニューやオーバーレイに隠れないように */
}

/* オーバーレイの下のコンテンツが正常に表示されるように */
body.active .top-about {
  z-index: 2;
  /* 必要に応じて調整 */
}









.visual-container {
  position: relative;
  width: 100vw;
  height: calc(100vh + 50px);
  margin-top: -65px;
  z-index: 1;
}

.recruit_top_back {
  background-color: #EEEEE8;
}

/* 背景画像：トリミングせず全体に収める */
.cloud {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  z-index: 1;
  animation: float-balloon 5s ease-in-out infinite;
}

.city {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  z-index: 1;
}

/* PC用をデフォルト表示、SPは非表示 */
.top_pc {
  display: block;
}

.top_mv {
  display: none;
}

@media (max-width: 1100px) {
  .top_pc {
    display: none;
  }

  .top_mv {
    display: block;
  }
}


img.top_tree {
  width: 130px;
  position: relative;
  top: -55px;
  /* 上に30pxはみ出す */
  display: block;
  margin-left: auto;
  /* 右寄せ */
}

img.top_tree_large_image_pc {
  width: 130px;
  position: relative;
  top: -255px;
  /* 上に30pxはみ出す */
  display: block;
  margin-right: auto;
  /* 右寄せ */
}

@media screen and (max-width: 767px) {
  img.top_tree_large_image_pc {
    display: none;
  }
}



/* 気球ボタン（浮かせる） */
.balloon-button {
  position: absolute;
  top: 13%;
  left: 16%;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 2;
  animation: float-balloon 4s ease-in-out infinite;
}

.balloon-button img {
  width: 180px;
  height: auto;
}


@media (max-width: 1100px) {
  .balloon-button {
    left: 8%;
  }
}

@media (max-width: 767px) {
  .balloon-button img {
    width: 100px;
  }

}



/* エントリーボタン */
/* ボタン全体にふわふわ */
/* ゆったり上下に浮かぶ */
@keyframes float-balloon {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

/* ゆっくり傾きながら回転 */
@keyframes gentle-rotate {
  0% {
    transform: rotate(0deg);
  }

  25% {
    transform: rotate(2deg);
  }

  50% {
    transform: rotate(0deg);
  }

  75% {
    transform: rotate(-2deg);
  }

  100% {
    transform: rotate(0deg);
  }
}

/* 位置など */
.entry-button {
  position: absolute;
  top: 72%;
  /* 上から8% */
  right: 10%;
  /* 右から10% */
  background: none;
  border: none;
  cursor: pointer;
  z-index: 2;
  display: inline-block;
}

.entry-button img {
  width: 250px;
}

/* アニメーションは wrapper に適用 */
.img-wrapper {
  display: inline-block;
  animation: gentle-rotate 2s ease-in-out infinite;
}

/* ホバー拡大は img に */
.note_entry:hover img {
  transform: scale(1.05);
  transition: transform 0.3s ease;
}

/* 初期状態の img（サイズ指定など） */
.note_entry img {
  height: auto;
}

@media (max-width: 1200px) {
  .entry-button img {
    width: 200px;
  }

  .entry-button {
    top: 72%;
    /* 上から8% */
    right: 10%;
    /* 右から10% */
  }
}



@media (max-width: 1100px) {
  .entry-button img {
    width: 180px;
  }
  .entry-button {
    top: 10%;
    left: 10%;
    right: auto;
  }
}

@media (max-width: 767px) {
  .entry-button img {
    width: 120px;
  }

  .entry-button {
    top: 12%;
    left: 10%;
    right: auto;
  }
}


/* 回転アニメーション */
@keyframes gentle-rotate {

  0%,
  100% {
    transform: rotate(-1deg);
  }

  50% {
    transform: rotate(1deg);
  }
}



/* バルーン　ホバー */
.balloon_entry img {
  transition: transform 0.3s ease;
}

.balloon_entry:hover img {
  transform: scale(1.05);
}















header {
  position: relative;
  z-index: 1100;
  /* ヘッダーが最前面に表示されるように */
  margin: auto
}

@media screen and (max-width:1200px) {
  header {
    width: 95%
  }
}




/*ハンガーバーメニュー*/


.hamburger {
  position: fixed;
  /* 追加する！ */
  top: 0;
  width: 65px;
  height: 66px;
  right: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  background-color: #19a048;
  border-radius: 0 0 15px 15px;
  z-index: 9999
}





.hamburger__line {
  position: absolute;
  margin-top: 8px;
  left: 18px;
  width: 30px;
  height: 2px;
  background-color: #ffffff;
  transition: all .4s;
}

.hamburger__line:nth-of-type(1) {
  top: 14px;
}

.hamburger__line:nth-of-type(2) {
  top: 23px;
}

.hamburger__line:nth-of-type(3) {
  top: 32px;
}

/* メニューオープン時 */




.hamburger.active .hamburger__line:nth-of-type(1) {
  transform: translateY(9px) rotate(-45deg);
}

.hamburger.active .hamburger__line:nth-of-type(2) {
  opacity: 0;
}

.hamburger.active .hamburger__line:nth-of-type(3) {
  transform: translateY(-9px) rotate(45deg);
}

.nav_hamburger {
  position: fixed;
  top: 69px;
  right: 0;
  width: 50%;
  background-color: #19a048;
  opacity: 0;
  /* 初期状態で透明 */
  transition: opacity 0.8s ease;
  z-index: 90;
  border-radius: 15px;
  visibility: hidden;
  /* 非表示にする */
}

@media screen and (max-width:1100px) {
  .nav_hamburger {
    width: 100%;
    height: 100%;
  }
}


.nav_hamburger.active {
  opacity: 1;
  /* 完全に表示 */
  visibility: visible;
}

body.active::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  /* 半透明の暗い背景 */
  z-index: 999;
  /* 背景を全体に適用するために高いz-index */
}




.nav_hamburger__list {
  width: 75%;
  margin: 20px auto;
  display: flex;
  /* 横並び */
  flex-wrap: wrap;
  /* 複数行に分ける */
  justify-content: space-between;
  /* アイテム間のスペースを均等に */
  list-style: none;
}

@media screen and (max-width:1200px) {
  .nav_hamburger__list {
    width: 90%;
  }
}


.nav_hamburger__item {
  width: 50%;
}

/* リストアイテムのリンク */
.nav_hamburger__link {
  display: block;
  width: fit-content;
  padding: 5px;
  color: #fff;
  font-weight: 500;
  text-decoration: none;
  font-size: 18px;
  transition: background-color 0.3s;
  border-bottom: solid 1px #fff;
}


/* ホバー時のエフェクト */
.nav_hamburger__link:hover,
.sub-menu a:hover {
  opacity: 0.5;
  transition: 0.5s
}


.sub-menu {
  list-style: none;
  padding: 12px;
  margin-bottom: 15px;
}

.sub-menu a {
  color: #fff;
  padding: 1px;
  font-size: 15px;
  font-weight: 500
}


.nav_hamburger_en {
  padding-left: 15px;
  font-size: 15px;
  letter-spacing: 0.1em;
}


@media screen and (max-width:767px) {
  .sub-menu a {
    font-size: 14px
  }

  .nav_hamburger_en {
    display: none
  }
}




/*メニュー*/


.nav-pc {
  width: 1200px;
  position: relative;
  transform: none;
  margin: 27px auto 0;
  /* 中央寄せにするならこれ */
}


@media screen and (max-width:1200px) {
  .nav-pc {
    width: 90%
  }
}

.nav__menu-pc {
  width: 1150px;
  margin: 0 auto;
  padding-top: 20px;
  /* 上に余白 */
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 500;
  border-radius: 0 0 15px 15px;
}

@media screen and (max-width:1200px) {
  .nav__menu-pc {
    width: 90%;
  }
}


@media screen and (max-width:767px) {
  .nav__menu-pc {
    height: 65px
  }

  .nav__menu-pc {
    width: 95%;
  }
}



.nav__link-pc {
  display: block;
  text-decoration: none;
  color: black;
  text-align: center;
  margin-top: 21px;
  margin-bottom: 21px;
  padding-right: 20px;
  padding-left: 20px;
  border-right: solid 1px black;
  font-size: 18px;
}


.nav__link-pc:hover {
  opacity: 0.5;
  transition: 0.5s
}




/*お問い合わせボタン*/
.nav__item-pc-contact {
  position: fixed;
  top: 0;
  background-color: #F08011;
  border-radius: 0 0 15px 15px;
  color: #fff;
  z-index: 999;
  font-size: 18px;
  font-weight: 500;
}


a.nav__item-pc-contact {
  padding: 20px 20px;
  right: 65px;
  border: none;
  background: transparent;
  cursor: pointer;
  background-color: #F08011;
  border-radius: 0 0 15px 15px;
  color: #fff
}

@media screen and (max-width:1100px) {

  .nav__link-pc,
  .nav__item-pc-contact {
    display: none
  }
}


.nav__item-pc-contact:hover {
  background-color: #F4A658;
  transition: 0.5s
}






/*ロゴ*/


.nav__header {
  width: calc(100% - 100px);
  /* 幅を100%から200px引く */
  height: 88px;
  display: flex;
  position: relative;
  align-items: center;
  justify-content: space-between;
  margin: 0;
  /* ← 中央寄せを解除する */
  padding-top: 20px;
  margin-top: -50px;
  border-radius: 0 0 15px 0;
  z-index: 100;
}


.nav__logo {
  margin-left: 3%;
  flex: 1;
}

.nav__menu-pc {
  display: flex;
  list-style: none;
  margin: 0;
  margin-right: 100px;
  padding: 0;
  width: 400px;
}



.rogo {
  left: 0;
  width: 300px;
  padding-top: 10px;
}

@media screen and (max-width:767px) {
  .rogo {
    width: 270px;
  }
}

@media screen and (max-width:1100px) {
  .nav__header {
    width: 100%;
    /* 幅を100%から200px引く */
  }
}




.rogo:hover {
  opacity: 0.5;
  transition: 0.5s
}






.first-view {
  height: 100vh;
  margin-top: -138px;
  /* ←ヘッダー分だけ重ねる */
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.first-view img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  /* トリミングせず全体表示 */
  display: block;
  /* ← display: none を解除して画像を表示 */
}



/* PC：767px以上でtop_pcを表示 */
@media screen and (min-width: 767px) {
  .first-view .top_pc {
    display: block;
  }
}

/* モバイル：767px以下でtop_mvを表示 */
@media screen and (max-width: 767px) {
  .first-view .top_mv {
    display: block;
  }
}



.wrap {
  width: 1100px;
  margin: auto;
  text-align: center;
}

@media screen and (max-width:1150px) {
  .wrap {
    width: 90%
  }
}



.top-about {
  background-color: #19a048;
  border-radius: 40px 40px 0 0;
  background-color: #19a048;
  margin-top: -50px;
}

.top-about .bird {
  position: absolute;
  top: 9%;
  right: 23%;
  transform: translateY(-50%);
  z-index: 0;
  /* 背景にする。必要に応じて調整 */
  pointer-events: none;
}

.top-about .bird img {
  width: 50%;
  /* 調整自由 */
  height: auto;
}


@media screen and (max-width:1100px) {

  .top-about .bird {
    right: 5%;
  }

  .top-about .bird img {
    width: 45%;
    /* 調整自由 */
  }
}
@media screen and (max-width:767px) {
  .top-about .bird img {
    display: none;
  }
}


.tree {
  margin: auto;
  padding-top: 5%;
}

.tree img {
  width: 100%;
}

.tree-recruit {
  margin: auto;
  margin-top: -100px;
}

.tree-recruit img {
  width: 100%;
}

@media screen and (max-width:1100px) {
  .tree-recruit {
    margin-top: -70px;
  }
}

@media screen and (max-width:600px) {
  .tree-recruit {
    margin-top: -20px;
  }
}






h1 {
  font-weight: 500;
  font-size: 35px;
  text-align: center;
  padding-top: 100px;
  padding-bottom: 5%;
  letter-spacing: 0.15em;
}

@media screen and (max-width:767px) {
  h1 {
    padding-top: 20px;
  }
  }


h2 {
  font-weight: 500;
  font-size: 23px;
  text-align: center;
  line-height: 2.3em;
  letter-spacing: 0.05em;
}


h3 {
  font-weight: 500;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 30px;
  padding-top: 2%;
  padding-bottom: 10px;
  letter-spacing: 0.15em;
}

h3::before,
h3::after {
  content: "";
  background-color: #ffffff;
  height: 2px;
  width: 40px;
}

h3::before {
  margin-right: 6px;
  transform: rotate(50deg);
}

h3::after {
  margin-left: 6px;
  transform: rotate(-50deg);
}

h4 {
  font-weight: 500;
  font-size: 30px;
  text-align: center;
  padding-top: 10%;
  padding-bottom: 10px;
  letter-spacing: 0.15em;
}

@media screen and (max-width:767px) {
  h4 {
    padding-top: 60px;
  }
}





h5 {
  font-weight: 500;
  padding-left: 12px;
  padding-right: 7px;
  padding-bottom: 7px;
  font-size: 18px;
  letter-spacing: 0.2em;
  font-weight: 500;
  border-bottom: solid 2px #19a048;
  margin: 0 auto 20px auto;
  /* ←中央寄せに変更！ */
  width: fit-content;
  text-align: center;
}



.en_left {
  padding-left: 12px;
  padding-right: 7px;
  padding-bottom: 7px;
  font-size: 18px;
  letter-spacing: 0.2em;
  font-weight: 500;
  border-bottom: solid 2px #19a048;
  width: fit-content;
  text-align: left;
  margin-left: 0;
}

@media screen and (max-width:767px) {
  .en_left {
    margin: auto;
  }
}







.work_title {
  font-size: 25px;
  text-align: center;
  padding-top: 0;
  padding-bottom: 0;
  letter-spacing: 0.15em;
  color: #19a048;
}

/* View More：下線付き・アニメーション */
.work_en {
  position: relative;
  display: inline-block;
  font-size: 14px;
  letter-spacing: 0.2em;
  font-weight: 500;
  color: #333;
  margin: 0 auto 5px 0;
  padding-bottom: 4px;
  text-align: center;
}

/* 下線の設定 */
.work_en::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0%;
  background-color: black;
  transition: width 0.3s ease;
}

/* ホバー時に下線が伸びる */
.top_work_item:hover .work_en::after {
  width: 100%;
}



.font_white {
  color: #fff;
}

.font_yellow {
  color: #FFE400;
}

.font_green {
  color: #19a048;
}

.font_green_left {
  color: #19a048;
  text-align: left;
  margin-top: -100px;
}


br.text_br_mv {
  display: none;
}


@media screen and (max-width: 1150px) {
  br.text_br_pad {
    display: none;
  }
}


@media screen and (max-width: 767px) {

  h1,
  h3 {
    font-size: 22px;
  }

  h3 {
    padding-bottom: 0;
  }


  h3::before,
  h3::after {
    width: 30px;
  }

  h2 {
    font-size: 16px;
    line-height: 2em;
  }

  br.text_br_pc {
    display: none;
  }

  br.text_br_mv {
    display: block;
  }

  .font_green_left {
    text-align: center;
  }
}


.top_example {
  display: grid;
  gap: 20px;
  padding: 20px;
}

/* PC：4列 */
@media screen and (min-width: 600px) {
  .top_example {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* モバイル：2列 × 2行 */
@media screen and (max-width: 599px) {
  .top_example {
    grid-template-columns: repeat(2, 1fr);
  }
}

.top_example_item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.top_example_item img {
  width: 100%;
  height: auto;
  display: block;
}


.btn-box {
  margin: 50px auto 0 auto;
  text-align: center;
  font-size: 1.2em;
}


.about-height {
  height: 400px;
}

.btn-border01 {
  background-color: #19a048;
  color: #fff;
  border-radius: 40px;
  padding: 5px 20px 5px 30px;
  font-weight: 500;
  letter-spacing: 0.15em;
  display: inline-flex;
  align-items: center;
  border: solid 2px rgb(255, 255, 255);
}

.btn-border01:hover {
  color: #19a048;
  background: #ffffff;
  transition: 0.5s
}




.btn-border02 {
  color: #ffffff;
  background: #19a048;
  border-radius: 0;
  border-radius: 40px;
  padding: 5px 20px 5px 30px;
  font-weight: 500;
  letter-spacing: 0.15em;
  display: inline-flex;
  align-items: center;
  margin-bottom: 100px;
}

@media screen and (max-width: 767px) {
  .btn-border02 {
    margin-bottom: 60px;
  }
}


.btn-border02:hover {
  color: #19a048;
  background: #ffffff;
  transition: 0.5s
}


.btn-border03 {
  color: #19a048;
  border-radius: 0;
  border-radius: 40px;
  padding: 5px 20px 5px 30px;
  font-weight: 500;
  letter-spacing: 0.15em;
  display: inline-flex;
  align-items: center;
  margin-bottom: 120px;
  border: solid 2px #19a048;
}

@media screen and (max-width: 767px) {
  .btn-border03 {
    margin-bottom: 70px;
  }
}


.btn-border03:hover {
  color: #ffffff;
  background: #19a048;
  transition: 0.5s
}



.btn-border04 {
  color: #fff;
  border-radius: 40px;
  padding: 5px 13px 5px 17px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  border: solid 2px rgb(255, 255, 255);
  margin-right: 20px;
  margin-bottom: 20px;
  font-size: 1.2em;
}

.btn-border04:hover {
  color: #293F6F;
  background: #ffffff;
  transition: 0.5s
}

.hover_green:hover {
  color: #19a048;
}







.material-symbols-outlined {
  padding-left: 8px;
}

.icon-shift-down {
  position: relative;
  top: 4px;
  /* 下にずらす */
}


.top_business_wrap {
  margin-top: -330px;
  overflow: hidden
}

.top_business {
  background: #EEEEE8;
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
  margin-left: -350px;
  margin-right: -350px;
  padding-left: 350px;
  padding-right: 350px;
}

.top_work {
  display: grid;
  gap: 10px;
  padding: 10px;
}

.top_work_item {
  position: relative;
  z-index: 2;
}

.top_work_btn {
  position: relative;
  z-index: 2;
}


.top_work_item img {
  width: 75%;
  margin: auto;
  height: auto;
  display: block;
}

.top_work_item:hover img,
.item-works:hover img {
  transform: scale(1.05);
  transition: 0.5s
}

.top_work_btn {
  text-decoration: none;
  color: inherit;
  display: block;
}

/* PC：4列 */
@media screen and (min-width: 600px) {
  .top_work {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* モバイル：2列 × 2行 */
@media screen and (max-width: 599px) {
  .top_business {
    margin-left: -400px;
    margin-right: -400px;
    padding-left: 400px;
    padding-right: 400px;
  }

  .top_work {
    grid-template-columns: repeat(1, 1fr);
  }
}


.single-post-content {
  margin-top: -200px;
}

@media screen and (max-width: 767px) {
  .single-post-content {
    margin-top: -70px;
  }  
}




.category-posts .wrap {
  width: 100%;
  display: flex;
  flex-direction: column;
  /* 各投稿を縦に並べる */
  gap: 20px;
  /* 各投稿の間に余白を設定 */
  color: #19a048;
}

.category-posts {
  margin: 50px auto;
}

@media screen and (max-width: 767px) {
  .category-posts {
    margin: 40px auto;
  }
  }



/* カテゴリーごとに色を変える */

.category-inform {
  color: #19a048;
  /* 緑 */
  font-weight: 500;
  border: solid 2px #19a048;
  padding: 2px 10px;
  border-radius: 15px;
}

.category-inform:hover {
  background-color: #19a048;
  color: #fff;
  transition: 0.5s
}

.category-event {
  color: #7E873E;
  /* 緑 */
  font-weight: 500;
  border: solid 2px #7E873E;
  padding: 2px 10px;
  border-radius: 15px;
}

.category-event:hover {
  background-color: #7E873E;
  color: #fff;
  transition: 0.5s
}

.category-award {
  color: #F08011;
  /* 緑 */
  font-weight: 500;
  border: solid 2px #F08011;
  padding: 2px 5px 2px 17px;
  border-radius: 15px;
  letter-spacing: 13px;
}

.category-award:hover {
  background-color: #F08011;
  color: #fff;
  transition: 0.5s
}

.category-fob-openings {
  color: #293F6F;
  /* 緑 */
  font-weight: 500;
  border: solid 2px #293F6F;
  padding: 2px 10px;
  border-radius: 15px;
}

.category-fob-openings:hover {
  background-color: #293F6F;
  color: #fff;
  transition: 0.5s
}


.post-item {
  display: flex;
  align-items: center;
  border-top: 2px solid #19a048;
  border-bottom: 2px solid #19a048;
  margin-bottom: -2px;
  padding: 25px;
  gap: 10px;
  justify-content: space-between;
}






/* 日付＋カテゴリのグループ */
.post-meta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.post-date {
  font-size: 15px;
  font-weight: 500;
  color: #19a048;
}

.post-categories {
  font-size: 14px;
}

.post-categories a {
  text-decoration: none;
  margin-right: 5px;
}

.post-title-wrapper {
  display: flex;
  align-items: center;
  position: relative;
  flex: 1;
  cursor: pointer;
  /* ホバーしやすいように */
}

.post-title {
  font-size: 16px;
  color: #19a048;
  text-align: left;
  padding-right: 30px;
  /* アイコンと重ならないよう余白確保 */
}

.post-title a {
  color: #19a048;
  text-align: left;
}

.green-icon {
  color: #19a048;
  font-size: 24px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%) translateX(0);
  transition: transform 0.3s ease;
}

/* ホバーでアイコンを右に少し動かす */
.post-title-wrapper:hover .green-icon {
  transform: translateY(-50%) translateX(5px);
  color: #F08011;
}

.post-title-wrapper:hover .post-title a {
  color: #F08011;
  /* 濃い緑などお好みで */
  transform: translateX(4px);
  /* タイトルも少し右へ */
}

.material-symbols-outlined {
  transition: transform 0.3s ease;
  /* 矢印の移動をスムーズに */
}

.item-works {
  position: relative;
  transition: transform 0.3s ease;
  /* 必要に応じて */
}

.item-works:hover .material-symbols-outlined {
  transform: translateX(4px);
  /* 矢印が右に移動 */
}




/* モバイル時のレイアウト */
@media screen and (max-width: 767px) {
  .post-item {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 15px;
  }

  .post-meta {
    flex-direction: row;
    /* ← 日付＋カテゴリを横並びに維持 */
    order: 1;
    margin-bottom: 5px;
  }

  .post-title-wrapper {
    order: 2;
    width: 100%;
    justify-content: space-between;
  }

  .green-icon {
    align-self: center;
  }
}






















/*下層ページ　ヘッダー*/

.page-header {
  background-color: #DFEDF3;
  padding: 30px;
}

.page-header-green {
  background-color: #D1ECDE;
  padding: 30px;
}



.page-header-bottom {
  height: 50px;
}

.page-header__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}


.page-header__title {
  font-size: 2rem;
  margin-top: -40px;
  color: #293F6F;
  text-align: left;
}

.page-header__title-green {
  font-size: 2rem;
  margin-top: -40px;
  color: #19a048;
  text-align: left;
}

@media screen and (max-width: 767px) {

  .page-header__title,
  .page-header__title-green {
    margin-top: 0;
    font-size: 1.5rem;
  }
}



.page-header__breadcrumb {
  font-size: 0.9rem;
  margin-bottom: 40px;
  ;
}

.page-header__breadcrumb a {
  color: #000000;
  text-decoration: none;
}

.page-header__breadcrumb a:hover {
  text-decoration: underline;
}

.page-header__breadcrumb span.separator {
  margin: 0 5px;
}

@media screen and (max-width: 767px) {
  .page-header__breadcrumb {
    font-size: 0.9rem;
    width: 180px;
  }
}




.page-header__right {
  width: 340px;
  position: relative;
  top: -150px;
  /* 上に30pxはみ出す */
  display: block;
}

.page-header__right-works {
  width: 340px;
  position: relative;
  top: -150px;
  /* 上に30pxはみ出す */
  display: block;
  margin-left: auto;
  /* 右寄せ */
}





.page-header__image {
  max-width: 100%;
  height: auto;
  max-height: 120px;
  object-fit: contain;
}

.page-header__image-works {
  width: 340px;
  object-fit: contain;
  margin-top: -65px;
}

.company_inf {
  margin-top: -80px;
}


@media screen and (max-width: 767px) {

  .page-header {
    padding: 20px 0 15px 30px;
  }

  .page-header__title {
    padding-bottom: 5px;
  }


  .page-header__right {
    text-align: right;
    /* ← 左寄せにしない */
  }

  .page-header__right-works {
    text-align: right;
    /* ← 左寄せにしない */
  }

  .page-header__image-works {
    width: 180px;
    padding-top: 100px;
    margin-bottom: -100px;
  }

  .company_inf {
    margin-top: -70px;
  }
}

.lower_wrap {
  background-color: #ffffff;
  border-radius: 40px 40px 0 0;
  margin-top: -50px;
}









/* メールフォーム全体 */
/* テーブル全体にボーダーを密着させる */
.CF7_table {
  width: 100%;
  margin: -100px auto 0 auto;
  border-collapse: collapse;
  /* ←これが重要！ */
}

@media screen and (max-width: 767px) {
  .CF7_table {
    margin: 0 auto 0 auto;
  }  
}


/* 行の下に1本線を引く */

.CF7_table th {
  padding-left: 10px;
  white-space: nowrap;
  /* テキストが折り返さない */
  width: 25%;
  /* ラベルの幅を固定（調整可能） */
  text-align: left;
  /* 左揃え */
  padding-left: 1em;
  /* 左に少しスペースを追加 */
  padding-right: 1em;
  /* 右にも余白を持たせる */
  font-weight: 500;
}



.CF7_table td,
.CF7_table th {
  border-bottom: 2px solid #D4D9E2;
  padding: 30px 0;
  vertical-align: middle;
  /* 中央揃えにする */
}


/* 最初の行に上線も */
.CF7_table tr:first-child td,
.CF7_table tr:first-child th {
  border-top: 2px solid #D4D9E2;
}

/* 入力欄 */
.CF7_table input,
.CF7_table textarea {
  background-color: #DFEDF3;
  border-radius: 5px;
  border: none;
  padding: 10px;
  margin-left: 0;
  margin-top: 5px;
  margin-bottom: 5px;
  width: 85%;
  font-size: 16px;
}

.CF7_table ::placeholder {
  color: #797979;
}







/* チェックボックス（ラジオ風）の非表示 */
.wpcf7-checkbox input[type="checkbox"] {
  opacity: 0;
  position: absolute;
  font-size: 16px;
}






/* チェックボックスリストアイテム */
.wpcf7-checkbox .wpcf7-list-item {
  margin-bottom: 5px;
  display: flex;
  flex-direction: column;
  /* 縦並びにする */
  align-items: flex-start;
  /* 左寄せ */
  position: relative;
  margin-left: 50px;
}

/* ラベル全体に装飾 */
.wpcf7-checkbox .wpcf7-list-item label {
  position: relative;
  padding-left: 28px;
  margin-right: 1em;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
}

/* 外枠の丸 */
.wpcf7-checkbox .wpcf7-list-item label::before {
  content: "";
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #fff;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background-color: #DFEDF3;
}

/* 中の丸（チェックされたとき） */
.wpcf7-checkbox .wpcf7-list-item input[type="checkbox"]:checked~.wpcf7-list-item-label::after {
  content: "";
  width: 8px;
  height: 8px;
  background-color: #293F6F;
  border-radius: 50%;
  position: absolute;
  left: 3px;
  top: 50%;
  transform: translateY(-50%);
}







/* ラジオボタン全体を左寄せに */
.wpcf7-radio {
  width: 100%;
  margin: 0 auto;
  border-collapse: collapse;
  /* ←これが重要！ */
}




/* ラジオボタン（カスタムデザイン） */
.wpcf7-radio input[type="radio"] {
  opacity: 0;
  position: absolute;
}




/* ラジオリストアイテム */
.wpcf7-radio .wpcf7-list-item {
  margin-bottom: 5px;
  display: flex;
  flex-direction: column;
  /* 縦並びにする */
  align-items: flex-start;
  /* 左寄せ */
  position: relative;
  margin-left: 50px;
}

/* ラベル全体に装飾 */
.wpcf7-radio .wpcf7-list-item label {
  position: relative;
  padding-left: 28px;
  margin-right: 1em;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
}










/* 外枠の丸 */
.wpcf7-radio .wpcf7-list-item label::before {
  content: "";
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #fff;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background-color: #DFEDF3;
}

/* 中の丸（チェックされたとき） */
.wpcf7-radio .wpcf7-list-item input[type="radio"]:checked~.wpcf7-list-item-label::after {
  content: "";
  width: 8px;
  height: 8px;
  background-color: #293F6F;
  border-radius: 50%;
  position: absolute;
  left: 3px;
  top: 50%;
  transform: translateY(-50%);
}













/* 「必須」文字 */
.CF7_req {
  font-size: 0.8em;
  padding: 2px 8px;
  background: #293F6F;
  color: #fff;
  border-radius: 3px;
  margin-right: 1em;
  margin-left: 2em;
}

/* 「任意」文字 */
.CF7_unreq {
  visibility: hidden;
  display: inline-block;
  width: 2em;
  /* 必須と同じくらいの幅 */
}

/* タイトル列（PCレイアウト） */
.CF7_table th {
  width: 25%;
  text-align: left;
  color: #293F6F;
}

.mail_explanation_top {
  display: block;
  /* ブロック化して改行を反映 */
  margin-top: 1em;
  /* 上にスペースを作る（調整可） */
  padding-left: 30px;
  margin-bottom: -20px;
  font-size: 14px;
}

.mail_explanation {
  padding-left: 30px;
  font-size: 14px;
}





/* レスポンシブ（モバイル対応） */
@media screen and (max-width: 767px) {
  table.CF7_table {
    width: 95%;
  }

  .CF7_table th {
    padding-bottom: 0;
  }

  .CF7_table td {
    padding-top: 15px;
  }

  /* 入力欄 */
  .CF7_table input,
  .CF7_table textarea {
    width: 87%;
  }


  .CF7_table tr,
  .CF7_table td,
  .CF7_table th {
    display: block;
    width: 100%;
  }

  /* 「ご相談内容」の行の下の線を消す */
  .CF7_table tr:first-child th,
  .CF7_table th {
    border-bottom: none;
  }

  .CF7_table tr:first-child td {
    border-top: none;
  }

  .CF7_unreq {
    margin-left: 5%;
  }

  .CF7_unreq {
    width: 0.5em;
    /* 必須と同じくらいの幅 */
  }



  .wpcf7-checkbox .wpcf7-list-item,
  .wpcf7-radio .wpcf7-list-item {
    margin-left: 30px;
  }


}



/* 「送信する」ボタン */

.wpcf7 input.wpcf7-submit {
  font-family: "Zen Kaku Gothic New", sans-serif;
  letter-spacing: 0.5em;
  background-color: #293F6F;
  color: #fff;
  border-radius: 40px;
  width: 125px;
  padding-top: 5px;
  padding-bottom: 5px;
  padding-left: 10px;
  border: solid 2px #fff;
  margin: 50px auto 0 auto;
  /* ← 下も固定値に */
  font-size: 18px;
  display: block;
  /* ← これで中央に配置されやすく */
  font-weight: 500;
  font-size: 1.2em;
}

.wpcf7 input.wpcf7-submit:hover {
  color: #ffffff;
  background: #F08011;
  transition: 0.5s
}


/* スピナー非表示 */
.wpcf7-spinner {
  width: 0;
  margin: 0;
}

/* バリデーションのオレンジ線を消す */
input:invalid,
textarea:invalid,
select:invalid {
  box-shadow: none !important;
  outline: none !important;
}

/* CF7のエラー枠をグレーに戻す */
.wpcf7-not-valid {
  outline: none !important;
  box-shadow: none !important;
}

/* フォーム下のエラー通知ボックス */
.wpcf7 form.invalid .wpcf7-response-output {
  border: none !important;
  background: none !important;
  padding: 0 !important;
  margin: -30px auto 30px auto !important;
  color: red;
}

div.wpcf7 .wpcf7-not-valid-tip {
  color: red;
}

/* 空のラジオボタンを非表示に */
input[type="radio"][value=""] {
  display: none !important;
}

/* 空のラジオボタンに対応するラベルも非表示に */
input[type="radio"][value=""] + label {
  display: none !important;
}






/* 確認画面*/

.confirmation-table th {
  padding-left: 2em; /* ← スペース調整（例: 1em = 約半角2文字分） */
  width: 30%;
}

.confirmation-table td {
  text-align: left;
  width: 70%;
}

@media screen and (max-width: 767px) {
  .confirmation-table th {
    padding-left: 1em; /* ← スペース調整（例: 1em = 約半角2文字分） */
    padding-top: 9px;
    padding-bottom: 5px;
    width: 100%;
  }
  .confirmation-table td {
    padding-left: 1em; /* ← スペース調整（例: 1em = 約半角2文字分） */
    padding-top: 0;
    padding-bottom: 9px;
    width: 100%;
  }
}

/* 「修正」ボタン */
.confirmation-back-btn {
  text-align: center; /* ボタンを中央揃えに */
  margin-bottom: 150px;
  text-align: center;
}

.confirmation-back-btn .btn-back {
  font-size: 18px;
  width: 125px;
  padding-top: 4px;
  padding-bottom: 4px;
  padding-left: 10px;
  letter-spacing: 0.5em;
  color: #293F6F;
  border-radius: 40px;
  font-weight: 500;
  display: inline-flex;
  border: solid 2px #293F6F;
  justify-content: center; /* ← 横方向の中央揃え */
  align-items: center;     /* ← 縦方向の中央揃え（必要なら） */
  text-align: center;      /* ← 念のため追加（inline-flex でも有効） */
}

.confirmation-back-btn .btn-back:hover {
  background: #DFEDF3;
  transition: 0.5s;
}

@media screen and (max-width: 767px) {
  .confirmation-back-btn {
    margin-bottom: 70px;
  }  
}

/* 送信完了 */
.thanks_text {
 text-align: left;
}







.privacy_policy_btn {
  text-align: center;
  border-bottom: solid 1px #293F6F;
  color: #293F6F;
  padding: 5px 5px 2px 5px;
}

.privacy_policy_btn:hover {
  opacity: 0.5;
  transition: 0.5s
}

.privacy_policy_btn_box {
  margin-bottom: 28%;
}



.iso_btn {
  font-size: 14px;
  border-bottom: solid 1px #000000;
  color: #000000;
  padding: 3px 3px 1px 3px;
}

.iso_btn:hover {
  opacity: 0.5;
  transition: 0.5s
}




/*事業内容一覧 */



.large_image_box {
  width: 58%;
  height: 550px;
  margin: -200px 0 0 auto;
  position: relative;
  overflow: hidden;
}

.large_image {
  width: 100%;
  height: 550px;
  object-fit: cover;
  border-radius: 50px 0 0 50px;
  position: absolute;
  top: 0;
  left: 0;
  transition: opacity 1s ease;
  opacity: 0;
  z-index: 0;
}

.large_image.active {
  opacity: 1;
  z-index: 1;
}



.slideshow {
  position: relative;
}

/* スライドショー専用ボックス */
.works-slideshow.large_image_box {
  width: 58%;
  height: 550px;
  margin: -200px 0 0 auto;
  position: relative;
  overflow: hidden;
}

/* スライド画像 */
.works-slideshow .large_image {
  width: 100%;
  height: 550px;
  object-fit: cover;
  border-radius: 50px 0 0 50px;
  position: absolute;
  top: 0;
  left: 0;
  transition: opacity 1s ease;
  opacity: 0;
  z-index: 0;
}

/* アクティブなスライド */
.works-slideshow .large_image.active {
  opacity: 1;
  z-index: 1;
}

/* ドットナビゲーション */
.works-slideshow .dots {
  text-align: center;
  margin-top: 10px;
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.works-slideshow .dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin: 0 2px;
  background-color: #ccc;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s;
}

.works-slideshow .dot.active {
  background-color: #333;
}

/* スライドごとに切り替わるリンクボタン */
.works-slideshow .slide-link-button {
  position: absolute;
  left: 20px;
  bottom: 30px;
  text-decoration: none;
  z-index: 2;
}

.works-slideshow .slide-works__text {
  color: white;
  padding: 10px 16px;
  border-radius: 10px;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
}







.large_image_back {
  background-color: #EEEEE8;
  padding-top: 200px;
  margin-top: -170px;
  margin-bottom: 10%;
}

.item-grid-works {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  /* PCでは横4つ */
  gap: 5px;
  margin-top: -100px;
  margin-bottom: 20%;
  padding-bottom: 8%;
}

.item-works {
  width: 100%;
  background-color: #eee;
  padding: 10px;
  text-align: center;
}

.item-works a {
  display: block;
  text-decoration: none;
  color: inherit;
  text-align: center;
}

.item-works__image {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.item-works__text {
  margin-top: 10px;
  font-size: 20px;
  font-weight: 500;
  color: #19a048;
}


.icon-slide {
  vertical-align: middle;
  transition: transform 0.3s ease;
}

.slide-link-button:hover .icon-slide {
  transform: translateX(5px);
}

.slide-link-button {
  position: absolute;
  left: 40px;
  /* お好みで調整 */
  bottom: 40px;
  /* 画像の下寄りに配置 */
  z-index: 2;
  text-decoration: none;
}

.slide-works__text {
  font-size: 20px;
  color: white;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s ease;
}

.icon-slide {
  vertical-align: middle;
  transition: transform 0.3s ease;
}

.slide-link-button:hover .icon-slide {
  transform: translateX(5px);
}






/* 767px以下で2列に */
@media screen and (max-width: 767px) {
  .item-grid-works {
    grid-template-columns: repeat(2, 1fr);
    /* 横2つ */
  }

  .item-works__text {
    margin-top: 5px;
    font-size: 18px;
  }

}




@media screen and (max-width: 1200px) {

  .large_image_box,
  .works-slideshow.large_image_box {
    width: 70%;
    height: 400px;
    margin: -150px 0 0 auto;
  }

  .large_image,
  .works-slideshow .large_image {
    height: 400px;
  }
}


@media screen and (max-width: 767px) {

  .large_image_box,
  .works-slideshow.large_image_box {
    width: 90%;
    height: 220px;
    margin: 50px auto;
  }

  .large_image,
  .works-slideshow .large_image {
    width: 100%;
    height: 220px;
    border-radius: 20px;
  }

}

.lower_title {
  color: #19a048;
  padding-left: 1.5rem;
  position: relative;
  text-align: left;
  letter-spacing: 0.1em;
  line-height: 1.5;
  font-size: 1.7em;
  font-weight: 500;
  margin-bottom: 20px;
  margin-top: 0;
}

.university_thema {
  margin-bottom: 5%;
}


.lower_title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 10px;
  height: 85%;
  /* タイトルの高さすべてにフィット */
  background-color: #19a048;
  border-radius: 3px;
}

.navy_title {
  color: #293F6F;
  margin-top: -100px;
}


@media screen and (max-width: 1000px) {
  .lower_title {
    font-size: 1.5em;
  }
}

@media screen and (max-width: 767px) {
  .lower_title {
    margin-bottom: 8px;
  }
}


@media screen and (max-width: 767px) {
  .navy_title {
    margin-top: -50px;
  }
}

.navy_title::before {
  background-color: #293F6F;
}


.lower_text {
  text-align: left;
  line-height: 1.8em;
  margin-bottom: 18px;
  font-size: 18px;
  text-align: justify;
}

.privacy {
  margin-bottom: 10px;
}

.lower_text_contact {
  text-align: left;
  line-height: 2em;
  margin-bottom: 5%;
  font-size: 18px;
  text-align: justify;
  margin-top: -100px;
}

@media screen and (max-width: 767px) {

  .lower_text {
    padding-top: 5px;
  }

  .lower_text_contact {
    margin-top: -40px;
  }
}



.works_img01 {
  width: 75%;
  margin: 0 auto 10% auto;
}

.works_img02 {
  width: 100%;
  margin: 7% auto 20% auto;
}


@media screen and (max-width: 767px) {
  .works_img01 {
    width: 100%;
  }
}


.circle-text-wrapper {
  display: flex;
  align-items: flex-start;
  margin: 2rem auto;
  margin: -20px 0 -10px 0;
}

.circle {
  width: 105px;
  height: 105px;
  border-radius: 50%;
  background-color: #19a048;
  /* 背景と同じ色 */
  color: #fff;
  font-weight: 500;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-right: -100px;
  /* テキスト背景とくっつけるためマイナスマージン */
  z-index: 2;
  position: relative;
}

.long-text {
  flex: 1;
  background-color: #D1ECDE;
  border-radius: 3rem 2rem 2rem 3rem;
  /* 自然な角丸 */
  padding: 1.5rem 2rem 1.5rem 7.3rem;
  /* 左側を少し広くして文字が丸にかぶらないように */
  text-align: justify;
  text-justify: inter-ideograph;
  position: relative;
  z-index: 1;
  text-align: justify;
}

.flow_title {
  color: #19a048;
  font-size: 20px;
  font-weight: 500;
  text-align: left;
  letter-spacing: 0.1em;
  margin-bottom: 3px;
}

.flow_text {
  font-size: 16px;
  text-align: left;
}



@media screen and (max-width: 787px) {
  .circle-text-wrapper {
    flex-direction: column;
    align-items: stretch;
  }

  .circle {
    width: auto;
    height: auto;
    border-radius: 2rem;
    /* 丸から角丸へ */
    margin: 0;
    padding: 6px 0;
    text-align: center;
    z-index: auto;
    position: static;
    z-index: 1;
  }

  .long-text {
    padding: 3.5rem 1.5rem 1.5rem 1.5rem;
    border-radius: 2rem 2rem 1.5rem 1.5rem;
    /* 丸から角丸へ */
    margin: -40px 0 0 0;
    z-index: 0;
  }

  .flow_title {
    margin-bottom: 10px;
  }
}


.css-arrow {
  width: 30px;
  height: 30px;
  border-left: 3px solid currentColor;
  border-bottom: 3px solid currentColor;
  transform: rotate(-45deg);
  /* 下向きに回転 */
  margin: 10px auto 40px auto;
}

/* 色バリエーション */

.circle-green01 {
  background-color: #19a048;
}

.arrow-green01 {
  color: #19a048;
}



.circle-green02 {
  background-color: #4B944C;
}

.arrow-green02 {
  color: #4B944C;
}

.long-green02 {
  background-color: #DBEADB;
}



.circle-green03 {
  background-color: #7E873E;
}

.arrow-green03 {
  color: #7E873E;
}

.long-green03 {
  background-color: #E5E7D8;
}



.circle-brown {
  background-color: #B07B31;
}

.arrow-brown {
  color: #B07B31;
}

.long-brown {
  background-color: #EFE5D6;
}




.circle-orange {
  background-color: #F08011;
}

.arrow-orange {
  color: #F08011;
}

.long-orange {
  background-color: #FCE6CF;
}


.circle-navy {
  background-color: #293F6F;
}

.arrow-navy {
  color: #293F6F;
}

.long-navy {
  background-color: #E1EEF4;
}



.page-header__right-works-top {
  margin-top: 200px;
}

@media screen and (max-width: 767px) {
  .page-header__right-works-top {
    margin-top: -50px;
  }
}


.image-01 {
  width: 80%;
  border-radius: 50px;
  margin: 13% auto 6% auto;
}

@media screen and (max-width: 767px) {
  .image-01 {
    width: 100%;
    border-radius: 20px;
  }
}





/* タイトルブロック */
.title-block {
  width: 100%;
  display: flex;
  align-items: center;
  /* ← 中身を縦中央揃え */
  position: relative;
  margin-bottom: 2%;
  padding-bottom: 2%;
  /* 線との間隔 */
}

/* 線（グラデーション風に2色に分ける） */
.title-block::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, #19a048 0% 20%, #D1ECDE 20% 100%);
}

.orange_separator::after {
  background: linear-gradient(to right, #F08011 0% 20%, #FCE6CF 20% 100%);
}

.navy_separator::after {
  background: linear-gradient(to right, #293F6F 0% 20%, #D4D9E2 20% 100%);
}




/* 名称などのラベル */
.label {
  color: #19a048;
  width: 20%;
  margin: 0;
  font-weight: 500;
  display: flex;
  align-items: center;
  /* ← 中央に配置 */
  justify-content: center;
  /* ← 横方向も中央にしたければこれ */
  padding-left: 10px;
  /* 左寄せならここを調整 */
  text-align: center;
}

/* タイトル本文 */
.title.with-underline {
  width: 80%;
  margin: 0;
  text-align: left;
  padding: 0 50px;
  text-align: justify;
}

/* モバイル対応 */
@media screen and (max-width: 767px) {
  .title-block {
    display: block;
  }

  .label {
    width: 100%;
    text-align: left;
    padding: 0 10px;
    display: block;
    /* フレックス解除 */
  }

  .title.with-underline {
    padding: 0 10px 5px 10px;
    width: 100%;
  }

}

.achievements_title {
  margin-bottom: -70px;
}

@media screen and (max-width: 767px) {
  .achievements_title {
    margin-bottom: -10px;
  }  
}






.table-wrapper {
  width: 100%;
  overflow-x: auto;
  margin: 5% auto 3% auto;
}

.table_3 {
  width: 100%;
  min-width: 600px;
  /* モバイルでもスクロールで全体表示 */
  border-collapse: collapse;
}

.table_3 th,
.table_3 td {
  padding: 8px;
  text-align: left;
  white-space: nowrap;
  padding: 8px 10px;
}

.table_3 th {
  background-color: #D1ECDE;
  color: #19a048;
  text-align: center;
  border-top: 2px solid #19a048;
  border-bottom: 2px solid #19a048;
}

.table_3 tr {
  background-color: #F3FAF7;
}

.table-green-line {
  border-left: 2px solid #19a048;
  border-right: 2px solid #19a048;
  font-weight: 400
}


.table_3 td {
  border-bottom: 2px solid #D1ECDE;
}


.scroll-hint {
  font-size: 14px;
  color: #666;
  margin-bottom: 8px;
  display: none;
}

@media screen and (max-width: 1100px) {
  .scroll-hint {
    display: block;
  }
}



.extra-row {
  display: none;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.extra-row.show {
  display: table-row;
  opacity: 1;
}

.more-btn {
  color: #19a048;
  border-radius: 0;
  border-radius: 40px;
  padding: 5px 30px 5px 30px;
  font-weight: 500;
  letter-spacing: 0.15em;
  display: inline-flex;
  align-items: center;
  margin-bottom: 20%;
  border: solid 2px #19a048;
  cursor: pointer;
  background-color: #ffffff;
  font-weight: 500;
}


.more-btn:hover {
  color: #ffffff;
  background: #19a048;
  transition: 0.5s
}

.table-height {
  margin: 220px;
}

@media screen and (max-width: 767px) {
  .table-height {
    margin: 100px;
  }  
}

.green {
  color: #19a048;
  font-weight: 500;
}





/*会社案内*/

.title_company {
  text-align: left;
  color: #19a048;
  font-size: 2em;
  margin-top: -220px;
  margin-bottom: 17px;
}

.about_title {
  margin-bottom: 20px;
}



@media screen and (max-width: 767px) {
  .title_company {
    margin-bottom: 50px;
    margin-top: -100px;
    font-size: 1.5em;
  }
}

.company_btn_box {
  text-align: left;
  margin-top: 40px;
  margin-bottom: 100px;
  font-size: 1.2em;
}

.company_btn_item {
  margin: 0 20px 0 0;
}

@media screen and (max-width: 767px) {
  .company_btn_box {
    margin-top: -30px;
    margin-bottom: 35px;  
  }
  .company_btn_item {
    margin: 0 0 15px 0;
  }  
}




.company_box {
  display: flex;
  align-items: stretch;
  /* ← これで左右の高さを揃える！ */
  justify-content: space-between;
  background-color: #EEEEE8;
  border-radius: 20px;
  gap: 20px;
  flex-wrap: wrap;
  height: 300px;
  margin-bottom: 7%;
}

@media screen and (max-width: 1000px) {
  .company_box {
    height: 320px;
  }
}


.company_text {
  flex: 1;
  padding: 30px 10px 10px 7%;
}

.company_box_text {
  text-align: justify;
}


.company_text .flow_text {
  line-height: 1.8;
}

.company_image {
  flex: 1;
  height: 100%;
  /* ← 親と同じ高さにする */
}

.company_image img {
  width: 100%;
  height: 100%;
  /* ← 親にフィットするように */
  border-radius: 0 20px 20px 0;
  object-fit: cover;
}



/* モバイル対応 */
@media screen and (max-width: 767px) {
  .company_box {
    display: block;
    height: auto;
  }

  .company_text {
    padding: 25px 30px 10px 30px;
  }

  .company_image {
    height: auto;
    margin-top: 20px;
  }

  .company_image img {
    height: auto;
    border-radius: 0 0 20px 20px;
    margin-bottom: -5px;
  }
}


.company_policy {
  background-color: #EEEEE8;
  margin-bottom: 300px;
  margin-top: 10%;
  padding-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .company_policy {
    margin-bottom: 150px;
  }
}

.policy_box {
  display: flex;
  width: 100%;
}

.policy_text {
  width: 65%;
}

.policy_image {
  width: 35%;
  flex: 1;
}

.policy_image img {
  width: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.black_text {
  color: #000000;
}


@media screen and (max-width: 1100px) {
  .policy_box {
    display: block;
  }

  .policy_text {
    width: 100%;
  }

  .policy_image {
    width: 90%;
    margin: auto;
  }

  .policy {
    margin-bottom: 5%;
  }
}


.lower_text03 {
  margin-bottom: 1px;
  margin-top: -50px;
  font-weight: 500;
}

.president {
  padding-top: 1px;
  margin-bottom: 20px;
}

@media screen and (max-width: 767px) {
  .president {
    margin-bottom: 10px;
  }  
}

.president_back {
  padding-bottom: 3%;
  margin-bottom: 20%;
}

.green_dot {
  font-size: 10px;
  color: #19a048;
  padding-right: 0.5em;
  vertical-align: 5%
}






/*会社概要*/

.business_list {
  list-style: none;
  padding-left: 1em;
  text-align: left;
  margin-left: 0;
}

.business_list>li {
  position: relative;
  padding-left: 1.2em;
  margin-bottom: 0.2em;
}

.business_list>li::before {
  content: "●";
  color: #19a048;
  position: absolute;
  left: 0;
  font-size: 10px;
  top: 4px;
}

.business_list>li>ul {
  margin-top: 0.2em;
  margin-bottom: 0.4em;
  list-style: none;
}

.business_list>li>ul>li {
  position: relative;
  padding-left: 1em;
  margin-bottom: 0.1em;
  line-height: 1.2em;
}

.business_list>li>ul>li::before {
  content: "・";
  position: absolute;
  left: 0;
}


.business_list_quality {
  list-style: none;
}

.business_list_quality>li {
  position: relative;
  padding-left: 1em;
  margin-bottom: 0.1em;
}

.business_list_quality>li::before {
  content: "・";
  position: absolute;
  left: 0;
}

.quality_text {
  margin-top: 35px;
  margin-bottom: 60px;
}

@media screen and (max-width: 767px) {
  .quality_text {
    margin-top: 10px;
    margin-bottom: 25px;
  }
  }








.office-box {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
  text-align: left;
  margin: 10% auto 30% auto;
}

.office-card {
  flex: 1 1 calc(33.333% - 20px);
  background-color: #EEEEE8;
  padding: 20px 25px;
  border-radius: 12px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.05);
  min-width: 260px;
}

.office-content {
  padding: 0 10px;
}

.office-title {
  font-size: 1.8rem;
  color: #009944;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: 0.2em;
  padding: 0 10px;
  font-weight: 500;
}

.office-underline {
  width: 100%;
  height: 2px;
  background-color: #19a048;
  margin: 10px 0 10px 0;
}


.office-subtitle {
  font-size: 1.2rem;
  color: #009944;
  font-weight: 500;
  margin-top: 15px;
  margin-bottom: 5px;
}

.office-label {
  display: inline-block;
  min-width: 40px;
}

@media screen and (max-width: 767px) {
  .office-card {
    flex: 1 1 100%;
  }
}







/*有資格者数*/

.qualified_text {
  color: #000000;
  font-size: 16px;
  font-family: 400;
  letter-spacing: normal;
  padding-left: 30px;
  text-align: right;
  margin-bottom: 20px;
}


th.right_noline,
td.right_noline {
  border-right: none;
  text-align: right;
  width: 100px;
}

.table-loose {
  margin-bottom: 30px;
  color: #19a048;
}


.table-loose .table_3 {
  width: 100% !important;
  min-width: auto !important;
  max-width: 100%;
  table-layout: auto;
}

th.qualified_left {
  text-align: left;
  font-weight: 500;
}


.qualified-boxs {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
  margin-bottom: 30%;
}

.qualified-contents {
  flex: 1 1 calc(50% - 30px);
  /* 2列レイアウト */
  box-sizing: border-box;
}

.break-word {
  white-space: normal !important;
  word-break: break-word;
}


/* スマホでは1列に */
@media (max-width: 600px) {
  .qualified-contents {
    flex: 1 1 100%;
  }
  .qualified-boxs {
    gap: 0;
  }
}









/*沿革*/

.history-wrapper {
  position: relative;
  margin-left: 30px;
  padding-left: 20px;
  border-left: 2px solid #D1ECDE;
  margin-bottom: 30%;
}

.history-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.history-item {
  position: relative;
  margin-bottom: 38px;
  top: -1em;
}

.history-line-dot {
  position: absolute;
  top: 1em;
  left: -25px;
  width: 8px;
  height: 8px;
  background-color: #19a048;
  border-radius: 50%;
  z-index: 2;
}

.history-row {
  display: flex;
  flex-wrap: wrap;
  gap: 2px;
  align-items: flex-start;
  /* ← ここを center → flex-start に変更 */
  margin-left: 20px;
  align-items: baseline;
}

.history-year {
  font-size: 33px;
  color: #19a048;
  letter-spacing: 0.2em;
  line-height: 1;
  /* もしくは 1em, またはぴったりくる値に調整 */
}

.history-month {
  font-size: 30px;
  color: #19a048;
  padding-left: 8px;
}

.small_size {
  font-size: 18px;
  padding-left: 3px;
}

.history-text {
  font-size: 18px;
  color: #000000;
  text-align: left;
}


/* 幅を調整 */
.history-year {
  min-width: 60px;
  font-weight: 500;
}

.history-month {
  width: 60px;
  text-align: right;
}

.history-text {
  font-size: 16px;
  color: #000000;
  text-align: left;
  flex: 1;
  padding-left: 1em;
  min-width: 0;
  /* ← これが重要！ */
  word-break: break-word;
  /* ← 長文をいい感じに折り返す */
}

@media screen and (max-width: 600px) {
  .history-text {
    width: 100%;
  }

  .history-detail {
    flex-wrap: wrap;
  }

  .history-row {
    flex-direction: column;
    align-items: flex-start;
    margin-left: 5px;
  }

  .history-year,
  .history-month,
  .history-text {
    text-align: left;
    /* ← 念のため */
    width: 100%;
    /* ← 自然に縦並びにする */
  }
}


.history-detail-wrapper {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.history-detail {
  display: flex;
  align-items: baseline;
}



.history_list {
  list-style: none;
  padding-left: 1em;
  text-align: left;
  margin-left: 0;
  margin-top: 10px;
  font-size: 16px;
}

.history_list>li {
  position: relative;
  padding-left: 0.8em;
  margin-bottom: 0.2em;
}

.history_list>li::before {
  content: "●";
  color: #000000;
  position: absolute;
  left: 0;
  font-size: 3px;
  top: 10px;
}



/*お問い合わせ*/


.contact_box {
  display: flex;
  width: 100%;
  gap: 30px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 7%;
  font-size: 18px;
  letter-spacing: 0.2em;
  flex-wrap: wrap;
}


.access01 {
  display: flex;
  align-items: center;
  gap: 15px;
  /* 画像とテキストの間隔 */
  margin-bottom: 2em;
  margin-top: 4em;
}


.access02 {
  display: flex;
  align-items: center;
  gap: 15px;
  /* 画像とテキストの間隔 */
}



.train,
.bus {
  height: 80px;
  /* 例えばテキスト2行の高さを60px程度に合わせる */
  width: auto;
  object-fit: contain;
  display: block;
  margin-bottom: -15px;
}

.access-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
  margin: 10px 0 -5px 0;
}

.line_green_black {
  color: #000;
  /* 必要に応じて文字色を調整 */
}



.btn-border05,
.btn-border06 {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 0;
  border-radius: 5px;
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  transition: 0.5s;
}

.btn-border05 {
  background-color: #D4D9E2;
  color: #293F6F;
}

.btn-border05:hover {
  background-color: #293F6F;
  color: #ffffff;
}

.btn-border06 {
  background-color: #FCE6CF;
  color: #F08011;
}

.btn-border06:hover {
  background-color: #F08011;
  color: #ffffff;
}


.employ_entry_btn {
  width: 100%;
  font-size: 22px;
  margin: 20px auto;
  height: 80px;
  border-radius: 15px;
}

@media screen and (max-width: 767px) {
  .employ_entry_btn {
    text-align: left;
  }
}



.icon-wrap {
  position: relative;
  width: 40px;
  /* アイコンサイズに合わせて調整 */
  height: 40px;
  display: inline-block;
  margin-right: 5px;
}

.icon-wrap img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: opacity 0.3s ease;
}

.mail01 {
  opacity: 1;
  z-index: 1;
}

.mail02 {
  opacity: 0;
  z-index: 2;
}

.btn-border05:hover .mail01 {
  opacity: 0;
}

.btn-border05:hover .mail02 {
  opacity: 1;
}

/* 通常時の画像は表示、ホバー用は非表示 */
.entry01 {
  opacity: 1;
  z-index: 1;
}

.entry02 {
  opacity: 0;
  z-index: 2;
}

/* ホバー時に切り替える */
.btn-border06:hover .entry01 {
  opacity: 0;
}

.btn-border06:hover .entry02 {
  opacity: 1;
}


@media screen and (max-width: 767px) {
  .contact_box {
    gap: 15px
  }

  .contact_box {
    flex-direction: column;
  }

  .btn-border05,
  .btn-border06 {
    width: 100%;
  }
}


.google_map {
  height: 45vh;
  width: 80%;
  border-radius: 20px;
  margin: 50px auto 6% auto;
  position: relative;
  overflow: hidden;
  /* はみ出し防止 */
}

.google_map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

@media screen and (max-width: 1000px) {
  .google_map {
    height: 35vh;
    width: 100%;
    border-radius: 20px;
    margin: 20px auto 6% auto;
  }
}












/*お知らせ一覧*/


.post-cart-time {
  margin-top: 5%;
}


.post-cart-time {
  display: flex;
  flex-wrap: wrap;
  gap: 1em;
  margin-bottom: 0.8em;
  font-size: 0.9em;
}



/* 日付 */
.post-date-archive {
  font-size: 16px;
  font-weight: 500;
  color: #19a048;
  margin-top: 3px;
}



.post-title-content {
  width: 100%;
  display: block;
}



/* タイトル */
.post-title-archive {
  margin: 0.2em 0 0.6em;
  font-size: 30px;
  text-align: left;
  letter-spacing: 0.1em;
}

.post-title-archive a {
  text-decoration: none;
  color: #19a048;
  font-weight: 500;
}



.category-section {
  display: flex;
  flex-wrap: wrap;
  gap: 1em;
  border-bottom: solid 2px #D1ECDE;
  padding-bottom: 5%;
  margin-top: -100px;
}

.cat_title {
  font-size: 30px;
  font-weight: 500;
  color: #19a048;
  margin-right: 20px;
}

.category-buttons {
  height: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 1em;
  font-size: 20px;
}


/* 以下、カテゴリーボタンの例 */
.cat-btn {
  padding: 4px 12px;
  border-radius: 15px;
  text-decoration: none;
  border: 2px solid;
  transition: 0.3s;
}

.cat-inform {
  color: #19a048;
  border-color: #19a048;
}

.cat-inform:hover {
  background: #19a048;
  color: #fff;
}



@media screen and (max-width: 767px) {
  .category-section {
    margin-bottom: 5%;
    padding-bottom: 25%;
    margin-top: -50px;
  }

  .cat_title {
    margin-bottom: 2%;
  }
}


.post-content p {
  margin-bottom: 1em;
}


/* 本文 */
.post-content {
  text-align: left;
  color: #444;
  line-height: 1.7;
  font-size: 1em;
  padding-bottom: 10%;
  border-bottom: solid 2px #D1ECDE;
  width: 100%;
}



/* 投稿画像 */
.post-content img {
  width: 70%;
  height: auto;
  border-radius: 30px;
  margin: 4% auto 0 auto;
  display: block;
}

@media screen and (max-width: 767px) {
  .post-content img {
    width: 100%;
    border-radius: 20px;
  }
}


/* 投稿内のリンクボタンのスタイル */
.post-content a {
  position: relative;
  font-size: 1em;
  color: #19a048;
  font-weight: 500;
  padding: 0;
  display: inline; /* inlineのまま */
  background-image: linear-gradient(to bottom, #19a048 30%, transparent 30%);
  background-size: 100% 0.3em;
  background-repeat: repeat-x;
  background-position: 0 1.3em;
  line-height: 1.3em;
}

.post-content a:hover {
  opacity: 0.5;
  transition: 0.5s
}

.post-content a::before {
  content: "";
  display: block;
  height: 10px;  /* 下の余白の高さ */
  pointer-events: none; /* クリック等を邪魔しない */
  visibility: hidden;
  border-bottom: none;
}



.post-content h1 {
  color: #19a048;
  padding-left: 1.2rem;
  position: relative;
  text-align: left;
  letter-spacing: 0.1em;
  line-height: 1.5;
  font-size: 1.5em;
  font-weight: 500;
  margin-bottom: 8px;
  margin-top: 0;
  padding-top: 0;
  padding-bottom: 0;
}

.post-content h1::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px; /* ← 上端に合わせる */
  width: 7px;
  height: 90%; /* ← 見出しの高さに合わせる */  
  background-color: #19a048;
  border-radius: 2px;
}

@media screen and (max-width: 1000px) {
  .post-content h1 {
    font-size: 1.2em;
    margin-bottom: 8px;
  }
}

.post-content h2 {
  position: relative;
  font-size: 1em;
  color: #000;
  font-weight: 500;
  padding: 0;
  display: inline; /* inlineのまま */
  background-image: linear-gradient(to bottom, hsl(67, 100%, 82%) 30%, transparent 30%);
  background-size: 100% 1.5em;
  background-repeat: repeat-x;
  background-position: 0 1em;
  line-height: 1.3em;
}

.post-content h2::before {
  content: "";
  display: block;
  height: 7px;  /* 下の余白の高さ */
  pointer-events: none; /* クリック等を邪魔しない */
  visibility: hidden;
}

.post-content h2::after {
  content: "";
  display: block;
  height: 10px;  /* 下の余白の高さ */
  pointer-events: none; /* クリック等を邪魔しない */
  visibility: hidden;
}

.post-content strong {
  font-weight: 500;
  color: #19a048;
}


.post-content ul, .post-content ol {
  padding-left: 1.5em; /* デフォルトより狭くする */
  margin-left: 0;
}







/* カテゴリーごとに色を変える */

.cat-inform {
  color: #19a048;
  /* 緑 */
  font-weight: 500;
  border: solid 2px #19a048;
  padding: 2px 10px;
  border-radius: 15px;
}

.cat-inform-big {
  color: #19a048;
  /* 緑 */
  font-weight: 500;
  border: solid 2px #19a048;
  padding: 2px 23px;
  border-radius: 27px;
}

.cat-inform:hover,
.cat-inform-big:hover {
  background-color: #19a048;
  border: solid 2px #19a048;
  color: #fff;
  transition: 0.5s
}

.cat-event {
  color: #7E873E;
  /* 緑 */
  font-weight: 500;
  border: solid 2px #7E873E;
  padding: 2px 10px;
  border-radius: 15px;
}

.cat-event-big {
  color: #7E873E;
  /* 緑 */
  font-weight: 500;
  border: solid 2px #7E873E;
  padding: 2px 23px;
  border-radius: 27px;
}


.cat-event:hover,
.cat-event-big:hover {
  background-color: #7E873E;
  border: solid 2px #7E873E;
  color: #fff;
  transition: 0.5s
}

.cat-award {
  color: #F08011;
  /* 緑 */
  font-weight: 500;
  border: solid 2px #F08011;
  padding: 2px 5px 2px 17px;
  border-radius: 15px;
  letter-spacing: 13px;
}

.cat-award-big {
  color: #F08011;
  /* 緑 */
  font-weight: 500;
  border: solid 2px #F08011;
  padding: 2px 30px 2px 35px;
  border-radius: 27px;
  letter-spacing: 0.5em;
}


.cat-award:hover,
.cat-award-big:hover {
  background-color: #F08011;
  border: solid 2px #F08011;
  color: #fff;
  transition: 0.5s
}

.cat-fob-openings {
  color: #293F6F;
  /* 緑 */
  font-weight: 500;
  border: solid 2px #293F6F;
  padding: 2px 10px;
  border-radius: 27px;
}

.cat-fob-openings-big {
  color: #293F6F;
  /* 緑 */
  font-weight: 500;
  border: solid 2px #293F6F;
  padding: 2px 23px;
  border-radius: 27px;
}


.cat-fob-openings:hover,
.cat-fob-openings-big:hover {
  background-color: #293F6F;
  border: solid 2px #293F6F;
  color: #fff;
  transition: 0.5s
}



@media screen and (max-width: 767px) {
  .post-title-archive {
    font-size: 20px;
  }
}






/* ページナビゲーション */

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin: 40px 0 20% 0;
}

.pagination a,
.pagination span {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background-color: #D1ECDE;
  color: #19a048;
  font-size: 24px;
  font-weight: 500;
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.2s ease;
  padding-bottom: 5px;
  position: relative;
  /* ←追加 */
}

/* 矢印（prev/next）の上下位置を少し上へ */
.pagination .prev,
.pagination .next {
  padding-bottom: 8px;
}

.pagination .current {
  background-color: #19a048;
  /* 濃い緑 */
  color: white;
  padding-bottom: 5px;
}

.pagination a:hover {
  background-color: #ade8c9;
}

.pagination .dots {
  color: #2B8B57;
  font-size: 24px;
}




/*お知らせ個別ページ*/


.prev-post,
.next-post {
  border-radius: 40px;
  padding: 5px 20px 5px 30px;
  font-weight: 500;
  letter-spacing: 0.15em;
  display: inline-flex;
  align-items: center;
  margin-bottom: 13%;
  border: solid 2px #19a048;
}

.prev-post:hover,
.next-post:hover {
  color: #ffffff;
  background: #19a048;
  transition: 0.5s;
}

/* 前後記事がない場合にボタンを表示しない */
.no-post {
  display: none;
}

.post-navigation .prev-post.no-post,
.post-navigation .next-post.no-post {
  border: solid 2px #ddd;
  /* 薄いボーダー */
  color: #888;
  /* 色を薄く */
  padding: 5px 20px 5px 30px;
  font-weight: 500;
  letter-spacing: 0.15em;
  display: inline-flex;
  align-items: center;
  margin-bottom: 13%;
  border-radius: 40px;
}

.no-post:hover {
  background: none;
  color: #888;
  cursor: not-allowed;
}


.post-navigation {
  text-decoration: none;
  color: #000;
  margin-bottom: 20%;
  margin-top: 4%;
  gap: 10px;
}


.post-navigation a {
  color: #000;
  /* ここで色を指定 */
  text-decoration: none;
  /* リンクの下線を削除 */
  margin-right: 30px;
  /* 右側に空間を追加 */
}

.post-navigation a:last-child {
  margin-right: 0;
  /* 最後のリンクにマージンをなくす */
}

.post-navigation a:hover {
  border-bottom: solid 1px #000;
}





.pagetop {
  height: 70px;
  width: 70px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
  position: fixed;
  /* 固定位置 */
  right: 30px;
  bottom: 30px;
  display: none;
  /* 初期状態で非表示 */
  background-color: #ade8c9;
  z-index: 20;
}

.pagetop__arrow {
  height: 20px;
  width: 20px;
  border-top: 3px solid #19a048;
  border-right: 3px solid #19a048;
  transform: rotate(-45deg) translate(-2px, 38px);
  /* 5px右、5px下に動かす */
}

.pagetop:hover {
  background-color: #cef2df;
  /* 背景だけ白く */
  transition: 0.5s ease;
}





.lower_text01 {
  font-weight: 500;
}

.lower_text02 {
  font-weight: 500;
}

.lower_text04 {
  font-weight: 500;
  padding-bottom: 80px;
}





@media screen and (max-width: 767px) {
  .lower_text01,.lower_text04 {
    padding-bottom: 10%;
    margin-top: -50px;
  }
}



.orange {
  color: #F08011;
}


.orange::before {
  background-color: #F08011;
}

.line_orange {
  display: inline;
  font-weight: 500;
  border-bottom: solid 2px #F08011;
  padding: 2px 5px;
}

.line_navy {
  display: inline;
  font-weight: 500;
  border-bottom: solid 2px #293F6F;
  padding: 2px 5px;
  color: #293F6F;
  line-height: 2em;
}



.line_green {
  font-size: 20px;
  color: #19a048;
  border-bottom: solid 2px #19a048;
  font-weight: 500;
  padding: 2px 5px;
}

.line_green_black {
  font-size: 20px;
  color: #000000;
  border-bottom: solid 2px #19a048;
  font-weight: 500;
  padding: 2px 5px;
}


.university_text {
  margin-bottom: 10px;
}


.awards {
  margin: 0 0 -5% 0;
}



/*プライバシーポリシー*/

.usage-list {
  list-style: none;
  padding-left: 0;
  text-align: left;
  margin-top: -10px;
  margin-bottom: 30px;
}

.usage-list li {
  position: relative;
  padding-left: 1.3em;
}

.usage-list li::before {
  content: attr(data-number) ".";
  position: absolute;
  left: 0;
  color: #293F6F;
  /* 緑色の番号 */
  font-weight: bold;
  letter-spacing: 0.3em;
}



@media screen and (max-width: 767px) {
  .usage-list {
    margin-top: -10px;
  }
}





/*リクルート*/
.white_back {
  background-color: white;
}

.navy {
  color: #293F6F
}

.line_navy_orange {
  border-bottom: solid 2px #293F6F;
  color: #F08011;
}

.navy_title_top {
  color: #293F6F;
  font-size: 1.3em;
  font-weight: 500;
  letter-spacing: 0.15em;
  margin-top: 50px;
}

.mic {
  vertical-align: middle;
  width: 20px;
  margin-left: -0.3em;
}

@media screen and (max-width: 767px) {
  .navy_title_top {
    margin-top: 30px;
  }
}




.card-container {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin: 30px auto;
}

.card {
  background: #f0f0ed;
  border-radius: 20px;
  padding: 20px 20px 0 20px;
  width: 30%;
  box-sizing: border-box;
  text-align: center;
  position: relative;
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.card:hover {
  background: #DFEDF3;
}

@media screen and (max-width: 767px) {
  .card {
    width: 90%;
  }
}

.card img {
  width: 220px;
  height: auto;
  text-align: center;
  padding-bottom: 10px;
  transition: transform 0.3s ease;
}

.card:hover img {
  transform: scale(1.05);
}

@media screen and (max-width: 1100px) {
  .card img {
    width: 180px;
  }
}


@media screen and (max-width: 767px) {
  .card img {
    width: 220px;
  }
}



.name_box {
  display: flex;
  width: 100%;
  text-align: left;
}

@media screen and (max-width: 1100px) {
  .name_box {
    display: block;
  }
}

@media screen and (max-width: 767px) {
  .name_box {
    display: flex;
  }
}



.tag {
  display: inline-block;
  background-color: #2f4571;
  color: white;
  padding: 3px 13px;
  border-radius: 20px;
  font-size: 14px;
  margin-bottom: 10px;
  margin-right: 15px;
  text-align: left;
  letter-spacing: 0.1em;
}

.name {
  font-weight: 500;
  font-size: 20px;
  color: #2f4571;
  margin-bottom: 10px;
  text-align: left;
}

.description {
  color: #293F6F;
  font-weight: 500;
  margin-bottom: 20px;
  text-align: left;
  width: 85%;
}

@media screen and (max-width: 1100px) {
  .description {
    width: 100%;
  }
}

@media screen and (max-width: 767px) {
  .description {
    width: 85%;
  }
}



.arrow {
  background-color: #ec8324;
  color: white;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  padding-right: 7px;
  margin-bottom: 15px;
  transition: background-color 0.3s ease, transform 0.3s ease
}

.card:hover .arrow {
  background-color: #ffffff;
  color: #293F6F;
}

@media (max-width: 767px) {
  .card-container {
    flex-direction: column;
    align-items: center;
  }
}



.btn-border07 {
  color: #293F6F;
  border-radius: 0;
  border-radius: 40px;
  padding: 5px 20px 5px 30px;
  font-weight: 500;
  letter-spacing: 0.15em;
  display: inline-flex;
  align-items: center;
  margin-bottom: 13%;
  border: solid 2px #293F6F;
  background-color: #ffffff;
}

.btn-border07:hover {
  color: #ffffff;
  background-color: #293F6F;
  transition: 0.5s
}


.data {
  width: 100%;
}

.data-height {
  margin-top: 100px;
}

.data img {
  width: 60%;
  margin-top: 20px;
  transition: transform 0.3s ease;
}

@media (max-width: 767px) {
  .data-height {
    margin-top: 60px;
  }  
  .data img {
    width: 80%;
  }
}

.data:hover img {
  transform: scale(1.05);
}

.data:hover .arrow {
  background-color: #293F6F;
  color: #ffffff;
}


.recruit_btn_con {
  display: flex;
  width: 100%;
  gap: 50px;
}
.recruit_btn_item {
  width: 50%;
  border-radius: 50px;
  color: #293F6F;
  border: solid 3px #293F6F;
  font-weight: 500;
  font-size: 1.7em;
  display: flex;
  padding: 10px;
  justify-content: space-between; /* ← 追加！ */
  align-items: center;             /* ← 縦中央揃え */
  text-decoration: none; /* 下線消す */
  margin-top: 30px;
}

.recruit_btn_arrow {
  margin-right: 20px;
  margin-top: 15px;
}

.recruit_btn_item_text {
  padding-left: 40px;
}

@media (max-width: 767px) {
  .recruit_btn_con {
    display: block;
  }
  .recruit_btn_item {
    width: 100%;
    font-size: 1.5em;
    padding: 5px;
  }
}

.recruit_btn_item:hover {
  background-color: #293F6F;  /* 背景色（濃い青） */
  color: #ffffff;             /* 文字色（白） */
}

.recruit_btn_item:hover .recruit_btn_arrow {
  background-color: #ffffff;
  color: #293F6F;
}

.recruit_btn_item {
  transition: background-color 0.3s, color 0.3s;
}

.recruit_btn_arrow {
  transition: background-color 0.3s, color 0.3s;
}







/*インタビュートップ*/

img.student {
  width: 25%;
  position: relative;
  top: -380px;
  left: -50px;
  /* 上に30pxはみ出す */
  display: block;
  margin-right: auto;
  /* 右寄せ */
  margin-bottom: -330px;
}

@media screen and (max-width: 1100px) {
  img.student {
    left: -10px;
    top: -330px;
    margin-bottom: -250px;
  }
}

@media screen and (max-width: 767px) {
  img.student {
    display: none;
  }
}

.interview_top {
  margin-bottom: 80px;
}

@media screen and (max-width: 767px) {
  .interview_top {
    margin-bottom: -200px;
  }
}


.portrait-title-wrapper {
  text-align: left;
}

.portrait-title {
  display: inline-block;
  font-weight: 500;
  border-bottom: 2px solid #293F6F;
  padding: 2px 0;
  color: #293F6F;
  font-size: 1.7em;
  text-align: left;
  letter-spacing: 0.15em;
  margin-top: 15px;
  margin-bottom: 20px;
}

.portrait-title02 {
  font-weight: 500;
  color: #293F6F;
  font-size: 1.5em;
  text-align: left;
  margin-bottom: 0.5em;
  margin-top: -25px;
}

@media screen and (max-width: 767px) {
  .portrait-title-wrapper {
    margin-top: -70px;
  }
  
  .portrait-title {
    margin-bottom:10px;
    font-size: 1.5em;
  }

  .portrait-title02 {
    margin-bottom: 0;
    margin-top: 0;
  }

}

.large_image_back_recruit_top {
  padding-bottom: 2%;
  margin-bottom: 0;
}

@media screen and (max-width: 767px) {
  .large_image_back_recruit_top {
    margin-top: 70px;
  }  
}




.interview_introduction_box {
  margin: 50px auto 0 auto;
  height: 240px;
  gap: 10px;
  width: 82%;
}

@media screen and (max-width: 1100px) {
  .interview_introduction_box {
    width: 90%;
  }
}


@media screen and (max-width: 767px) {
  .interview_introduction_box {
    margin-top: 50px;
    height: auto;
  }
}

.interview_introduction_image img {
  border-radius: 20px 0 0 20px;
}



.interview_introduction_image {
  border-radius: 20px 0 0 20px;
  overflow: hidden;
  /* ←これが必要 */
}


/* モバイル対応 */
@media screen and (max-width: 767px) {
  .interview_introduction_image img {
    border-radius: 20px 20px 0 0;
  }

  .interview_introduction_image {
    border-radius: 20px 20px 0 0;
  }
}

.avatar_box {
  display: flex;
  align-items: flex-end;
  /* 縦方向の下寄せ */
  justify-content: flex-end;
  /* 横方向の右寄せ */
  height: 100%;
}

img.interview_top_avatar {
  width: 200px;
  padding-bottom: 20px;
  padding-right: 20px;
}

.interview_text_box {
  padding: 30px 0 20px 30px;
}

@media screen and (max-width: 1100px) {
  img.interview_top_avatar {
    width: 150px;
  }

  .interview_text_box {
    padding: 20px;
  }
}

@media screen and (max-width: 767px) {

  .interview_text_box {
    padding: 20px 30px;
  }

  img.interview_top_avatar {
    width: 30%;
  }

  .avatar_box {
    display: none;
  }

}

.interview_title_big {
  width: 100%;
  padding: 0;
  font-size: 1.2em;
}

@media screen and (max-width: 1100px) {
  .interview_title_big {
    margin-bottom: 10px;
  }
}

.interview_arrow {
  text-align: left;
  display: flex;
  margin: 0;
}



/* 背景色変更 */
.interview_introduction_box:hover {
  background-color: #f0f8ff;
  /* 任意の色に変更 */
  transition: background-color 0.3s ease;
}

/* 画像拡大（自然に） */
.avatar_box img {
  transition: transform 0.4s ease;
}

.interview_introduction_box:hover .avatar_box img {
  transform: scale(1.05);
  /* 拡大率はお好みで調整 */
}

.interview_arrow {
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.interview_introduction_box:hover .interview_arrow {
  background-color: #ffffff;
  color: #293F6F;
}



.interview_introduction_image {
  position: relative;
  overflow: hidden;
}

.interview_introduction_image img {
  width: 100%;
  height: 100%;
  display: block;
  transition: transform 0.5s ease;
}

/* オーバーレイの追加 */
.interview_introduction_image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top right, rgba(0, 0, 0, 0.4), rgba(255, 255, 255, 0));
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

/* ホバー時に拡大＆オーバーレイ表示 */
.interview_introduction_box:hover .interview_introduction_image img {
  transform: scale(1.1);
}

.interview_introduction_box2:hover .interview_introduction_image::before {
  opacity: 1;
}

.card02 {
  display: contents;
}

.joining {
  text-align: left;
  color: #293F6F;
  font-weight: 500;
  padding: 3px;
}



.portraits_box {
  width: 82%;
  margin: auto;
  text-align: left;
}

@media screen and (max-width: 767px) {
  .portraits_box {
    width: 90%;
  }
  }

.portraits_top {
  margin: 40px auto 40px auto;
}

.portraits_text {
  text-align: justify; 
  font-weight: 500;
  color: #293F6F;
  line-height: 1.8em;
  margin-top: -15px;
}








/*数字で見る技術開発*/

.navy_data {
  color: #293F6F;
  margin-top: -200px;
  padding-top: 0;
  padding-bottom: 15px;
  font-size: 2em;
  font-weight: 500;
  letter-spacing: 0.15em;
}

@media screen and (max-width: 767px) {
  .navy_data {
    margin-top: 50px;
    font-size: 1.5em;
  }
}

.navy_data02 {
  color: #293F6F;
  padding-bottom: 15px;
  padding-top: 15%;
  font-size: 2em;
  font-weight: 500;
  letter-spacing: 0.15em;
}

@media screen and (max-width: 767px) {
  .navy_data02 {
    font-size: 1.5em;
  }
}


.data_box {
  display: flex;
  width: 75%;
  gap: 20px;
  text-align: left;
  margin: 20px auto;
}

.data_content {
  width: 50%;
  border-radius: 20px;
  background-color: #EEEEE8;
  padding-bottom: 15px;
}

.data_title {
  display: inline-block;
  background-color: #ffffff;
  color: #293F6F;
  padding: 3px 15px;
  border-radius: 20px;
  text-align: left;
  margin: 20px auto 0 20px;
  letter-spacing: 0.12em;
  font-weight: 500
}

@media screen and (max-width: 767px) {
  .data_box {
    display: block;
    width: 90%;
  }

  .data_content {
    width: 100%;
    margin-bottom: 20px;
  }
}

.data_image {
  width: 100%;
  padding: 5px 20px;
}

.era_pc {
  padding: 5px 30px;
}


.era_mv {
  display: none;
}

.data_box_landscape {
  width: 75%;
  border-radius: 20px;
  background-color: #EEEEE8;
  text-align: left;
  margin: auto;
  padding-bottom: 15px;
}

@media screen and (max-width: 767px) {
  .data_box_landscape {
    width: 90%;
  }

  .era_pc {
    display: none;
  }

  .era_mv {
    display: block;
  }
}

.data_list {
  padding: 10px 10px 0 30px;
  width: 100%;
  font-size: 14px;
}

@media screen and (max-width: 767px) {
  .data_list {
    padding-left: 2em;
  }
}

.survey_list_btn>li::before {
  color: #293F6F;
}

.agriculture_list_btn01>li::before {
  color: #19a048;
}

.agriculture_list_btn02>li::before {
  color: #3BAE73;
}

.agriculture_list_btn03>li::before {
  color: #69C194;
}

.agriculture_list_btn04>li::before {
  color: #95D3B3;
}

.civil_list_btn01>li::before {
  color: #ec8324;
}

.civil_list_btn02>li::before {
  color: #F29437;
}

.civil_list_btn03>li::before {
  color: #F4A454;
}

.civil_list_btn04>li::before {
  color: #F7B87A;
}

.civil_list_btn05>li::before {
  color: #F9CB9D;
}



.data_list li>ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  /* li同士の余白 */
  padding-left: 0;
  margin: 10px auto 0 auto;
}

.data_list li>ul>li {
  line-height: 0.6;
  /* 行間を詰める */
  list-style: none;
  white-space: nowrap;
  /* 途中で改行しないようにする */
  margin-left: 0;
}

.data_listtitle {
  font-weight: 500;
}






/*キャリアパス*/

.career_title_top {
  color: #293F6F;
  font-size: 1.3em;
  font-weight: 500;
  letter-spacing: 0.15em;
  margin-top: -200px;
  text-align: left;
}

@media screen and (max-width: 767px) {
  .career_title_top {
    margin-top: 40px;
  }
}

.careerpath_image_pc {
  width: 85%;
  margin: 20px auto 100px auto;
}

.careerpath_image_mv {
  display: none;
}


@media screen and (max-width: 700px) {
  .careerpath_image_mv {
    display: block;
    width: 80%;
    margin: 20px auto 50px auto;
  }

  .careerpath_image_pc {
    display: none;
  }
}

.career_box {
  width: 100%;
  background-color: #EEEEE8;
  border-radius: 20px;
  padding: 70px 30px 0 30px;
}

.flow_line {
  border-left: 2px solid #D1D3C6;
  bottom: 20px;
}

.flow-item {
  margin-bottom: 10px;
}


.career_tag01 {
  background-color: #ec8324;
  color: #ffffff;
  padding: 4px 5px 5px 5px;
  font-size: 14px;
  border-radius: 5px;
  letter-spacing: 0.05em;
  line-height: 1;
  width: 100px;
  text-align: center;
  margin-top: 10px;
}

.career_flow01 {
  color: #ec8324;
  width: 90%;
  text-align: left;
  font-size: 1.3em;
  font-weight: 500;
  letter-spacing: 0.05em;
  padding-left: 0;
  padding-top: 5px;
}

.career_text {
  width: 100%;
  text-align: left;
  padding: 10px 20px;
  text-align: justify;
}


@media screen and (max-width: 767px) {
  .career_box {
    padding: 50px 6px 0 6px;
  }

  .career_tag01 {
    margin-top: 10px;
  }
  .career_text {
    padding: 10px 13px 10px 5px;
  }
}

.year01 {
  background-color: #ec8324;
}

.year02-05 {
  background-color: #AE6A30;
}

.year05-10 {
  background-color: #6C5550;
}

.year10 {
  background-color: #293F6F;
}


.tag01 {
  background-color: #ec8324;
}

.tag02-05 {
  background-color: #AE6A30;
}

.tag05-10 {
  background-color: #6C5550;
}

.tag10 {
  background-color: #293F6F;
}



.flow01 {
  color: #ec8324;
}

.flow02-05 {
  color: #AE6A30;
}

.flow05-10 {
  color: #6C5550;
}

.flow10 {
  color: #293F6F;
}

.career_orange {
  color: #ec8324;
  font-size: 2em;
  font-weight: 500;
  letter-spacing: 0.15em;
  margin-top: -150px;
  margin-bottom: 20px;
}

@media screen and (max-width: 767px) {
  .career_orange {
    margin-top: -20px;
    font-size: 1.5em;
  }
}




.job_name {
  display: flex;
  align-items: center;
  /* 高さ揃え */
  gap: 15px;
  /* 要素間の余白 */
  flex-wrap: wrap;
  /* 小さい画面で崩れないよう保険 */
  margin-bottom: 5px;
}

@media screen and (max-width: 767px) {
  .job_name {
    display: block;
    margin: 0 30px;
  }
}

.job_description {
  width: 100%;
  background-color: #FDF2E7;
  border-radius: 20px;
  padding: 30px 60px 30px 60px;
  text-align: left;
}

@media screen and (max-width: 767px) {
  .job_description {
    padding: 30px 5px 20px 5px;
  }
}


.job_description_tag {
  display: inline-block;
  background-color: #ec8324;
  color: white;
  padding: 3px 15px;
  border-radius: 20px;
  font-size: 14px;
  letter-spacing: 0.15em;
  white-space: nowrap;
  line-height: 1.6;
}

.job_miura {
  font-size: 1.5em;
  font-weight: 500;
  line-height: 1.6;
}

.job_box {
  display: flex;
  width: 100%;
  margin: auto;
}


.job_content {
  width: 50%;
  gap: 20px;
  margin-top: 10px;
}

@media screen and (max-width: 767px) {
  .job_miura {
    margin-top: 5px;
  }

  .job_box {
    display: block;
  }

  .job_content {
    width: 90%;
    margin: auto;
    margin-top: 20px;
  }
}

.job_title {
  color: #ec8324;
  border-bottom: 2px solid #ec8324;
  /* お好きな色に */
  display: inline-block;
  font-size: 1.3em;
  padding: 2px 5px;
  font-weight: 500;
  margin-left: 10px;
}




/*はたらく環境*/


.qualified-btn {
  text-align: left;
  margin-top: 20px;
  margin-bottom: -30px;
}

@media screen and (max-width: 767px) {
  .qualified-btn {
    margin-top: 10px;
    margin-bottom: 0;
  }
}

.environment_box {
  text-align: left;
  margin-bottom: 30px;
}

.environment_title {
  color: #293F6F;
  font-size: 1.3em;
  padding: 2px 5px;
  font-weight: 500;
  letter-spacing: 0.1em;
  display: inline;
  line-height: 1.6;
  background-image: linear-gradient(to bottom, transparent 96%, #293F6F 96%);
  background-size: 100% 1.6em;
  background-repeat: repeat-y;
}

.environment_wrap {
  display: flex;
  width: 100%;
  gap: 40px;
}

.environment_content01 {
  width: 65%;
}

.environment_content02 {
  width: 35%;
  margin-top: 20px;
}

.environment_content02 img {
  width: 100%;
  border-radius: 20px;
}


@media screen and (max-width: 767px) {
  .environment_wrap {
    display: block;
  }

  .environment_content01 {
    width: 100%;
  }

  .environment_content02 {
    width: 90%;
    margin: 30px auto;
  }
}


.pump-table {
  border-collapse: collapse;
  width: 100%;
  margin: 20px auto;
}

.table-header {
  background-color: #d0e2f2;
}

.table-title {
  color: #293F6F;
  font-weight: 500;
  padding: 8px 20px;
  border-bottom: 2px solid #293F6F;
  border-top: 2px solid #293F6F;
  text-align: left;
}

.table-body td {
  background-color: #f0f6fa;
  padding: 6px;
  vertical-align: top;
}

.section-basic {
  border-top: 2px solid #D4D9E2;
  border-bottom: 2px solid #D4D9E2;
}

.topic-list {
  list-style-type: disc;
  padding-left: 1em;
  margin: 0;
}

.topic-list li {
  display: inline-block;
  margin-right: 1.5em;
}

@media screen and (max-width: 767px) {
  .pump-table {
    border-collapse: collapse;
    width: 100%;
    margin: 20px 0;
  }
}

.navy_dot {
  color: #293F6F;
  font-size: 13px;
  margin-bottom: 3px;
  padding-right: 5px;
}

.csr_title {
  margin-top: 120px;
  margin-bottom: 30px;
}


@media screen and (max-width: 767px) {
  .csr_title {
    margin-top: 80px;
    margin-bottom: 15px;
  }
}

.environment_text {
  margin-top: 10px;
  font-size: 16px;
}

.navy_environment {
  color: #293F6F;
  font-weight: 500;
}






/*採用情報*/


.modern-accordion {
  width: 100%;
  margin: 0 auto 30px auto;
  --primary-color: #293F6F;
  --text-color: #9DA7BB;
  --border-color: #293F6F;
}

.accordion-item {
  border: 2px solid var(--border-color);
  border-radius: 12px;
  margin-bottom: 16px;
  overflow: hidden;
  background: white;
}

.accordion-header {
  width: 100%;
  padding: 24px 10px;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  /* ← 高さがある場合はこちらの方が自然 */
  background: none;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s;
}

.accordion-header:hover {
  background-color: #DFEDF3;
}

.header-content {
  text-align: left;
}


.icon-wrap-recruit {
  position: relative;
  width: 24px;
  height: 24px;
}

.line {
  position: absolute;
  top: 70%;
  width: 100%;
  height: 2.5px;
  background-color: var(--text-color);
  transition: transform 0.3s ease;
  margin-left: 5px;
}

@media screen and (max-width: 767px) {
  .accordion-header {
    padding: 15px 5px;
  }

  .line {
    top: 60%;
    width: 70%;
    margin-left: 0;
  }
}


.line:first-child {
  transform: translateY(-50%);
}

.line:last-child {
  transform: translateY(-50%) rotate(90deg);
}

.accordion-header.active .line:last-child {
  transform: translateY(-50%) rotate(0);
}

.accordion-body {
  height: 0;
  overflow: hidden;
  transition: height 0.3s ease-out;
}

.body-content {
  padding: 20px 40px 40px 40px;
  /* 念のため visibility 確保 */
  visibility: visible;
}

/* アニメーション用の状態 */
.accordion-body.entering {
  height: var(--content-height);
}

.accordion-body.leaving {
  height: 0;
}

.accordion-title {
  color: #293F6F;
  font-weight: 500;
  font-size: 1.7em;
  letter-spacing: 0.15em;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  padding-left: 30px;
}

@media screen and (max-width: 767px) {
  .body-content {
    padding: 20px 20px;
  }

  .accordion-title {
    font-size: 1.5em;
    padding-left: 15px;
  }
}


.employ_list>li {
  position: relative;
  /* これが必要 */
  padding-left: 1.2em;
  /* 丸とテキストの間隔調整 */
  padding-bottom: 5px;
}

.employ_list>li::before {
  content: "●";
  position: absolute;
  left: 0.2em;
  /* 横位置（左からの距離） */
  top: 0.7em;
  /* 縦位置（上からの距離） */
  color: #293F6F;
  font-size: 10px;
  line-height: 1.2;
}


.employ_list02>li {
  position: relative;
  /* これが必要 */
  list-style: none;
}

.allowances {
  padding-bottom: 5px;
}

.employ_image {
  margin-bottom: -120px;
}

.image-02 {
  width: 80%;
  border-radius: 50px;
  margin: 5% auto 0 auto;
}

@media screen and (max-width: 767px) {
  .image-02 {
    width: 100%;
    border-radius: 20px;
  }
}





/*インタビュー個別ページ*/

.interview_tag_box {
  text-align: left;
  margin-top: -40px;
}


.interview_tag {
  display: inline-block;
  background-color: #2f4571;
  color: white;
  padding: 3px 13px;
  border-radius: 20px;
  font-size: 18px;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}


.name02 {
  font-weight: 500;
  font-size: 25px;
  color: #2f4571;
  margin-bottom: 10px;
  text-align: left;
  letter-spacing: 0.1em;
}

.joining02 {
  text-align: left;
  color: #293F6F;
  font-weight: 500;
  padding: 3px;
  font-size: 20px;
  padding-right: 1em;
  letter-spacing: 0.05em;
}

.interview-title {
  font-weight: 500;
  padding: 2px 0;
  color: #293F6F;
  font-size: 2em;
  text-align: left;
  letter-spacing: 0.15em;
  margin-bottom: 1.2em;
}

@media screen and (max-width: 767px) {
  .interview-title {
    font-size: 1.6em;
    letter-spacing: 0.1em;
    margin-bottom: 1em;
    margin-top: 3em;
  }
}

.interview-title02 {
  font-weight: 500;
  color: #293F6F;
  font-size: 1.2em;
  text-align: left;
  margin-bottom: 0.5em;
  position: relative;
  padding-left: 7.5%;
  /* 線の分だけ左に余白 */
  letter-spacing: 0.05em;
}

.interview-title-green {
  color: #19a048;
}

.interview-title-orange {
  color: #F08011;
}


.interview-title02::before {
  content: "";
  position: absolute;
  top: 0.7em;
  /* テキストと縦位置を揃える */
  left: 0;
  width: 6.3%;
  height: 2px;
  background-color: #293F6F;
}

.interview-title-green::before {
  background-color: #19a048;
}

.interview-title-orange::before {
  background-color: #F08011;
}




@media screen and (max-width: 767px) {
  .interview-title02 {
    margin-top: 0;
    padding-left: 50px;
    /* 線の分だけ左に余白 */
  }

  .interview-title02::before {
    width: 40px;
  }
}

.interview_height {
  height: 30px;
}

.navy_data03 {
  color: #293F6F;
  padding-bottom: 15px;
  padding-top: 0;
  font-size: 2em;
  font-weight: 500;
  letter-spacing: 0.15em;
}

@media screen and (max-width: 767px) {
  .navy_data03 {
    font-size: 1.5em;
  }
}



.routine_first {
  background-color: #19a048;
  color: #ffffff;
  padding: 4px 5px 5px 5px;
  font-size: 14px;
  border-radius: 5px;
  letter-spacing: 0.05em;
  line-height: 1;
  width: 100px;
  text-align: center;
  margin-top: 10px;
}

.routine_last {
  background-color: #F08011;
}

@media screen and (max-width: 767px) {
  .routine_first {
    margin-top: 10px;
  }
}

.routine_first01 {
  color: #19a048;
  width: 90%;
  text-align: left;
  font-size: 1.3em;
  font-weight: 500;
  letter-spacing: 0.05em;
  padding-left: 0;
  padding-top: 5px;
}

.routine_last01 {
  color: #F08011;
}

.time_first {
  background-color: #19a048;
}

.time_last {
  background-color: #F08011;
}


/* ５色　三浦さん */

.routine_5-2 {
  background-color: #4F9848;
}

.routine_5-2_01 {
  color: #4F9848;
}

.time_5-2 {
  background-color: #4F9848;
}


.routine_5-3 {
  background-color: #849036;
}

.routine_5-3_01 {
  color: #849036;
}

.time_5-3 {
  background-color: #849036;
}


.routine_5-4 {
  background-color: #BA8823;
}

.routine_5-4_01 {
  color: #BA8823;
}

.time_5-4 {
  background-color: #BA8823;
}



/* 6色　牧野さん */

.routine_6-2 {
  background-color: #449A4B;
}

.routine_6-2_01 {
  color: #449A4B;
}

.time_6-2 {
  background-color: #449A4B;
}


.routine_6-3 {
  background-color: #6F933D;
}

.routine_6-3_01 {
  color: #6F933D;
}

.time_6-3 {
  background-color: #6F933D;
}


.routine_6-4 {
  background-color: #9A8D2E;
}

.routine_6-4_01 {
  color: #9A8D2E;
}

.time_6-4 {
  background-color: #9A8D2E;
}


.routine_6-5 {
  background-color: #C58620;
}

.routine_6-5_01 {
  color: #C58620;
}

.time_6-5 {
  background-color: #C58620;
}



/* 7色　梅谷さん */

.routine_7-2 {
  background-color: #3D9B4E;
}

.routine_7-2_01 {
  color: #3D9B4E;
}

.time_7-2 {
  background-color: #3D9B4E;
}


.routine_7-3 {
  background-color: #619542;
}

.routine_7-3_01 {
  color: #619542;
}

.time_7-3 {
  background-color: #619542;
}


.routine_7-4 {
  background-color: #849036;
}

.routine_7-4_01 {
  color: #849036;
}

.time_7-4 {
  background-color: #849036;
}



.routine_7-5 {
  background-color: #A88B29;
}

.routine_7-5_01 {
  color: #A88B29;
}

.time_7-5 {
  background-color: #A88B29;
}



.routine_7-6 {
  background-color: #CC851D;
}

.routine_7-6_01 {
  color: #CC851D;
}

.time_7-6 {
  background-color: #CC851D;
}


.routine_box {
  margin-bottom: -130px;
}

@media screen and (max-width: 767px) {
  .routine_box {
    margin-bottom: -50px;
  }
}

.routine_box_green {
  background-color: #E8F5EE;
}

.routine_box_green_long {
  background-color: #E8F5EE;
  height: 350px;
}
.routine_box_green_long02 {
  background-color: #E8F5EE;
  height: 300px;
}

.routine_box_orange {
  background-color: #FDF2E7;
}

.routine_box_orange_long {
  background-color: #FDF2E7;
}

.question_text {
  padding: 30px 20px 10px 40px;
  flex: 1.5;
}

@media screen and (max-width: 1000px) {
  .routine_box_green_long {
    height: 420px;
  }
  .routine_box_orange_long {
    height: 370px;
  }  
  .routine_box_green_long02 {
    background-color: #E8F5EE;
    height: 350px;
  }  
}


@media screen and (max-width: 767px) {
  .question_text {
    padding: 20px 20px 0 20px;
  }
  .routine_box_green_long {
    height: auto;
  }
  .routine_box_orange_long {
    height: auto;
  }  
  .routine_box_green_long02 {
    height: auto;
  }
}

.question_image {
  flex: 1;
}



/*フッター*/

footer {
  left: 0;
  bottom: 0;
  width: 100%;
}

.footer_wrap {
  display: flex;
  position: relative;
  z-index: 1;
}

.footer_left {
  width: 50%;
  background-color: #293F6F;
  padding: 70px 0 190px 0;
}

.footer_green {
  background-color: #19a048;
}

.footer_left_wrap {
  width: 550px;
  margin: 0 0 0 auto;
  padding-left: 30px;
}

.footer_recruit_title {
  width: 300px;
  margin-bottom: 30px;
}

.text_left_white {
  color: #fff;
  line-height: 2.3em;
  padding-bottom: 15px;
}

.footer_right {
  width: 50%;
  background-color: #EEEEE8;
  padding: 0 10% 150px 5%;
}


.footer_recruit_pc {
  width: 450px;
}


.footer_main {
  background-color: #19a048;
  margin: auto;
  margin-top: -150px;
  border-radius: 50px 50px 0 0;
  position: relative;
  z-index: 10;
  /* 数字が大きい方が前面に表示されます */
}

.footer_navy {
  background-color: #293F6F;
}


.flex-container {
  display: flex;
  text-align: left;
  color: #ffffff;
}

@media screen and (max-width: 767px) {
  .flex-container {
    display: block;
  }
}


.flex-container li {
  color: #fff;
  text-align: left;
}

.fax {
  pointer-events: none;
  color: #fff;
}


@media screen and (max-width: 1200px) {
  .footer_right {
    padding: 2% 1% 150px 5%;
  }

  .footer_recruit_pc {
    width: 100%;
  }
}

@media screen and (max-width: 900px) {
  .footer_right {
    padding: 2% 1% 150px 0;
  }

}



@media screen and (max-width: 767px) {

  .footer_wrap {
    display: block;
  }

  .footer_left,
  .footer_right {
    width: 100%;
  }

  .footer_left_wrap,
  .footer_right_wrap {
    width: 90%;
    padding: 0;
    margin: auto;
  }

  .footer_right {
    padding: 0 0 150px 0;
  }

  .footer_left {
    padding: 70px 0 50px 0;
  }
}




/* フッターメイン */

/* フッターのメイン部分 */

.flex-container li {
  padding-top: 50px;
  padding-bottom: 5%;
  padding-right: 4%;
}



.header_rogo {
  width: 200px;
  margin-left: 10%;
  margin-top: 30px;
}

@media screen and (max-width: 767px) {
  .header_rogo {
    margin-top: 25px;
  }
}


.header_rogo:hover {
  opacity: 0.5;
  transition: 0.5s
}



.footer_rogo {
  width: 230px;
  margin-bottom: -5px;
}

.footer_rogo:hover {
  opacity: 0.5;
  transition: 0.5s
}






/* 基本のスタイル (PC向け) */

.sitemap_box {
  width: 100%;
  padding: 10px 0 40px 50px;
}



.flex-container-sitemap {
  list-style: none;
  /* リストのドットを消す */
  margin: auto;
  padding: 0;
  display: flex;
  justify-content: center;
  /* 中央寄せ */
  flex-wrap: wrap;
  /* アイテムが横並びではみ出さないように */
  text-align: left;
}

.parent-menu {
  position: relative;
  margin-right: 90px;
  /* メニュー間隔 */
}

.parent-menu>span {
  font-weight: bold;
  cursor: pointer;
}

/* サブメニューのスタイル (PC) */

.sub-info-title {
  border-bottom: solid 1px #fff;
}

a.sub-info-title {
  color: #ffffff;
  font-weight: 500;
  padding: 4px;
  font-size: 18px;
}

a.sub-info-title:hover {
  opacity: 0.5;
  transition: 0.5s
}



.sub-info {
  list-style: none;
  /* リストのドットを消す */
  margin: 13px 0 15px 0;
}

.sub-info li {
  padding: 2px 0 2px;
}

.sub-info li a {
  text-decoration: none;
  color: #ffffff;
}

.sub-info li a:hover {
  opacity: 0.5;
  transition: 0.5s
}



/* モバイル用スタイル (767px 以下) */
@media (max-width: 767px) {

  .flex-container li {
    padding-right: 1%;
  }


  .sitemap_box {
    padding: 10px;
  }


  .flex-container-sitemap {
    flex-direction: column;
    /* 親メニューを縦並びに */
    align-items: flex-start;
    /* 横並びにするため左寄せ */
  }

  .parent-menu {
    display: block;
    margin-right: 0;
    /* メニュー間隔 */
  }

  .sub-info {
    display: flex;
    flex-direction: row;
    /* 小要素を横並びに */
    flex-wrap: wrap;
    padding-left: 0;
    /* 子要素の左余白を削除 */
  }

  .sub-info li {
    margin-right: 15px;
    /* 小要素間の間隔 */
    padding: 0 0 0 5px;
  }
}

/* 追加: PCでも下に来た要素を左寄せにする */
@media (min-width: 767px) {
  .flex-container-sitemap {
    justify-content: flex-start;
    /* 横並びでアイテムが足りなくなると左寄せ */
  }
}


.credit {
  color: #ffffff;
  padding: 0 0 30px 0;
  font-size: 14px;
}

.maintenance {
  text-align: center;
  font-weight: 500;
  margin: 200px auto;
  font-size: 1.5em;
  color: #19a048;
}

@media (max-width: 767px) {
  .maintenance {
    font-size: 1.2em;
  }
}

.maintenance_footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background-color: #19a048;
  padding: 1rem;           /* 任意の余白 */
  height: 50px;
}

@media (max-width: 767px) {
  .maintenance {
    margin: 40% auto;
  }
}


.maintenance_credit {
  text-align: center;
  color: rgb(255, 255, 255);
  font-size: 0.7em;
}


.nav__header_maintenance {
  width: calc(100% - 100px);
  /* 幅を100%から200px引く */
  height: 120px;
  display: flex;
  position: relative;
  align-items: center;
  justify-content: space-between;
  margin: 0;
  /* ← 中央寄せを解除する */
  padding-top: 20px;
  margin-top: -50px;
  border-radius: 0 0 15px 0;
  z-index: 100;
}

@media screen and (max-width:1100px) {
  .nav__header_maintenance {
    width: 100%;
    /* 幅を100%から200px引く */
  }
}

.page-404 {
  margin: -120px auto 80px auto;
}

.page-404_title {
  color: #19a048;
  font-weight: 500;
  font-size: 2em;
  letter-spacing: 0.15em;
  margin-bottom: 20px;
}

@media screen and (max-width:767px) {
  .page-404 {
    margin: 0 auto 50px auto;
  }  
  .page-404_title {
    color: #19a048;
    font-weight: 500;
    font-size: 2em;
    margin-bottom: 20px;
  }
   }