/* Base
----------------------------------------------- */
/*
　各要素のスタイルを初期化し、デフォルトのスタイルを定義
*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
font,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
details,
figure,
figcaption,
header,
footer,
main,
nav,
section,
time {
  border: 0;
  font-size: 100%;
  font: inherit;
  margin: 0;
  padding: 0;
}

.h2-recruit {
  font-size: 36px;
  line-height: 1.6em;
  margin: 0 0 1em;
  color: #6d521c;
  position: relative;
  width: fit-content;
}

.h2-recruit::after {
  display: none;
}

article,
aside,
details,
figure,
figcaption,
header,
footer,
main,
nav,
section {
  display: block;
}

body {
  -webkit-text-size-adjust: 100%;
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption,
th,
td {
  font-weight: normal;
  text-align: left;
}

blockquote::before,
blockquote::after,
q::before,
q::after {
  content: none;
}

blockquote,
q {
  quotes: none;
}

img {
  vertical-align: middle;
  line-height: 0;
}

a img {
  border: 0;
}

button {
  border: none;
  background: none;
  margin: 0;
  padding: 0;
  outline: none;
  font-size: inherit;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

img {
  max-width: 100%;
  height: auto;
}

svg {
  height: auto;
}

*,
*::after,
*::before {
  box-sizing: border-box;
  background-clip: padding-box;
}

/* Module
----------------------------------------------- */
/*
　あらゆる再利用できるオブジェクト
*/
/* flexbox */
.flex {
  display: flex;
}

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

.flex.column {
  flex-direction: column;
}

.flex.center {
  justify-content: center;
}

.flex.middle {
  align-items: center;
}

@media screen and (max-width: 960px) {
  .flex.column-tab {
    flex-direction: column;
  }
}

@media screen and (max-width: 520px) {
  .flex.column-sp {
    flex-direction: column;
  }
}

/* other element */
.ul-disc>li {
  list-style: disc;
  margin-left: 1em;
}

.ol-decimal>li {
  list-style: decimal;
  margin-left: 1em;
}

/* State
----------------------------------------------- */
.hidden {
  display: none;
}

.hidden-pc {
  display: none;
}

@media screen and (max-width: 960px) {
  .hidden-pc {
    display: block;
  }

  .hidden-pc.inline {
    display: inline;
  }

  .hidden-tab {
    display: none;
  }
}

@media screen and (max-width: 520px) {
  .hidden-tab {
    display: block;
  }

  .hidden-tab.inline {
    display: inline;
  }

  .hidden-sp {
    display: none;
  }
}

/* Utillity
----------------------------------------------- */
.clearfix::after {
  content: "";
  display: block;
  clear: both;
}

.clear {
  clear: both;
}

/* Text */
.fwB {
  font-weight: bold;
}

.fwN {
  font-weight: normal;
}

.bold {
  font-weight: bold;
}

/*
.ffG {
	font-family: "游ゴシック","Yu Gothic","游ゴシック体","YuGothic","ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro",sans-serif;
}
.ffM {
	font-family: "游明朝","Yu Mincho","游明朝体","YuMincho","ヒラギノ明朝 Pro W3","Hiragino Mincho Pro","HiraMinProN-W3",serif;
}
*/
.taR {
  text-align: right;
}

.taL {
  text-align: left;
}

.taC {
  text-align: center;
}

.vaM {
  vertical-align: middle;
}

.indent {
  padding-left: 1em;
  text-indent: -1em;
}

/* Image */
a img {
  transition: all 0.2s;
}

a:hover img {
  opacity: 0.8;
}

*[class|=logo] a:hover {
  text-decoration: none;
}

*[class|=logo] a:hover img {
  opacity: 1;
}

/* button */
.btn {
  display: inline-block;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  text-decoration: none;
  transition: opacity 0.2s;
}

.btn:hover {
  text-decoration: none;
  opacity: 0.8;
}

.btn:hover img {
  opacity: 1;
}

/*
  FONT
----------------------------------------------- */
:root {
  font-size: 1px;
}

@media (max-width: 960px) {
  :root {
    font-size: 0.875px;
  }
}

body {
  font-size: 16rem;
  color: #3c3c3c;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
  letter-spacing: 0.05em;
}

p {
  line-height: 2;
}

li,
dt,
dd,
th,
td,
address {
  line-height: 1.8;
}

a {
  color: inherit;
  text-decoration: none;
}


input,
textarea,
select {
  font-size: 16px;
}

.ffZ {
  font-family: "Zen Maru Gothic", sans-serif;
  letter-spacing: 0.1em;
}

.ffQ {
  font-family: "Quicksand", sans-serif;
}

/*
  LAYOUT
----------------------------------------------- */
body.isMenu {
  overflow: hidden;
}

#wrapper {
  overflow: hidden;
}

/*
  HEADER
----------------------------------------------- */
#header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
  padding: 0 40px;
  background: rgba(255, 255, 255, 0.9);
}

@media (max-width: 1100px) {
  #header {
    padding: 0 30px;
  }
}

@media (max-width: 960px) {
  #header {
    position: fixed;
    left: 0;
    height: 80px;
    padding: 0 20px;
    flex-direction: row-reverse;
    border-top: 10px solid #7dbf65;
    background: none;
  }
}

#header .logo {
  flex-basis: 210px;
  flex-grow: 2;
  margin-left: 10px;
}

@media (max-width: 960px) {
  #header .logo {
    display: none;
  }
}

#header .gnav {
  display: flex;
  margin-right: 6%;
}

#header .gnav li {
  margin-left: 40px;
  line-height: 1;
  white-space: nowrap;
}

#header .gnav li a {
  font-family: "Zen Maru Gothic", sans-serif;
  letter-spacing: 0.1em;
  transition: 0.3s;
}

#header .gnav li a:hover {
  color: #7dbf65;
  text-decoration: none;
}

@media (max-width: 960px) {
  #header .gnav {
    display: none;
  }
}

/*
  CONTENTS
----------------------------------------------- */
#contents {
  padding-top: 25px;
  padding-bottom: 200px;
  border-left: 25px solid #7dbf65;
}

@media (max-width: 960px) {
  #contents {
    padding-top: 10px;
    padding-bottom: 100px;
    border-left: none;
  }
}

.scroll_bar {
  position: relative;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  position: fixed;
  z-index: 80;
  bottom: 20px;
  right: 20px;
  color: #7dbf65;
  font-size: 13rem;
  letter-spacing: 0.09em;
  transition: 0.6s;
}

.scroll_bar::after {
  display: inline-block;
  margin-top: 0.7em;
  margin-right: 0.1em;
  content: "";
  width: 2px;
  height: 50px;
  -webkit-transform: scale(1, 0);
  transform: scale(1, 0);
  -webkit-transform-origin: 0 0;
  transform-origin: 0 0;
  -webkit-animation: lineAnim 1.8s linear infinite;
  animation: lineAnim 1.8s linear infinite;
}

@media (max-width: 960px) {
  .scroll_bar::after {
    height: 40px;
  }
}

@-webkit-keyframes lineAnim {
  10% {
    -webkit-transform: scale(1, 0);
    transform: scale(1, 0);
  }

  60% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }

  100% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}

@keyframes lineAnim {
  10% {
    -webkit-transform: scale(1, 0);
    transform: scale(1, 0);
  }

  60% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }

  100% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}

.scroll_bar::after {
  background: #7dbf65;
}

.scroll_bar.hide {
  opacity: 0;
}

@media (max-width: 960px) {
  .scroll_bar {
    right: 10px;
  }
}

/*
  PARTS
----------------------------------------------- */
.btn {
  display: inline-flex;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  text-decoration: none;
  transition: opacity 0.2s;
}

.btn:hover {
  text-decoration: none;
  opacity: 0.8;
}

.btn:hover img {
  opacity: 1;
}

.button {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  width: 450px;
  height: 60px;
  margin-left: auto;
  margin-right: auto;
  border: 3px solid transparent;
  border-radius: 60px;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  font-weight: 700;
  letter-spacing: 0.15em;
  transition: 0.3s;
  position: relative;
}

.button.small {
  width: 300px;
}

@media (max-width: 520px) {
  .button {
    width: 100%;
  }

  .button.small {
    width: 100%;
  }
}

.button::before {
  position: absolute;
  top: 50%;
  right: 27px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 17px;
  height: 3px;
  border-radius: 3px;
  content: "";
  transition: 0.4s;
}

.button svg {
  position: absolute;
  top: 50%;
  right: 25px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3px;
  transition: 0.4s;
}

.button svg.pdf {
  position: static;
  -webkit-transform: none;
  transform: none;
  margin: 0 3px;
  stroke-width: 1.5px;
}

.button:hover {
  text-decoration: none;
}

.button:hover::before {
  width: 35px;
}

.button.back::before {
  right: inherit;
  left: 27px;
}

.button.back svg {
  right: inherit;
  left: 25px;
  -webkit-transform: rotate(180deg) translateY(50%);
  transform: rotate(180deg) translateY(50%);
}

.button.white {
  border-color: #fff;
  color: #fff;
}

.button.white::before {
  background: #fff;
}

.button.white svg {
  stroke: #fff;
}

.button.green {
  background: #fff;
  border-color: #7dbf65;
  color: #7dbf65;
}

.button.green::before {
  background: #7dbf65;
}

.button.green svg {
  stroke: #7dbf65;
}

.button:hover.white {
  background: #fff;
  color: #7dbf65;
}

.button:hover.white::before {
  background: #7dbf65;
}

.button:hover.white svg {
  stroke: #7dbf65;
}

.button:hover.green {
  background: #7dbf65;
  color: #fff;
}

.button:hover.green::before {
  background: #fff;
}

.button:hover.green svg {
  stroke: #fff;
}

.breadcrumb {
  display: flex;
  align-items: center;
  height: 80px;
  padding-left: 30px;
  margin-right: calc(50% - 480px);
  margin-bottom: 80px;
  position: relative;
}

.breadcrumb::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 10px;
  background-image: linear-gradient(to right, #7dbf65 30%, transparent 0);
  background-size: 7px 100%;
  pointer-events: none;
}

@media (max-width: 960px) {
  .breadcrumb::after {
    height: 6px;
    background-size: 6px 100%;
  }
}

.breadcrumb>* {
  font-size: 12rem;
}

.breadcrumb>*+* {
  position: relative;
  margin-left: 2em;
}

.breadcrumb>*+*::before {
  position: absolute;
  top: 50%;
  left: -1em;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  content: "-";
}

@media (max-width: 1100px) {
  .breadcrumb {
    margin-right: 80px;
    margin-bottom: 40px;
  }
}

.pagettl {
  text-align: center;
}

@media screen and (max-width: 1020px) {
  .pagettl {
    padding-left: 0;
  }
}

@media (max-width: 960px) {
  .pagettl {
    flex-direction: column;
    margin-bottom: 100px;
  }
}

.pagettl h2 {
  width: 100%;
  padding-top: 30px;
  display: flex;
  flex-direction: column;
}

.pagettl .recruit-header::after {
  display: none;
}

.pagettl h2 .ja {
  margin-top: 1em;
  font-size: 45rem;
  color: #7dbf65;
}

.pagettl h2 .en {
  margin-top: 1em;
}

@media (max-width: 960px) {
  .pagettl h2 {
    width: 100%;
    padding: 0;
    align-items: center;
  }

  .pagettl h2 i {
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
  }

  .pagettl h2 .ja {
    margin-top: 0.6em;
    font-size: 30px;
  }

  .pagettl h2 .en {
    font-size: 18px;
  }
}

.pagettl .image {
  position: relative;
  width: 51.5vw;
}

.pagettl .image .illustration {
  position: absolute;
}

.pagettl .image .illustration img:not(.base) {
  position: absolute;
  max-width: inherit;
}

@media (max-width: 960px) {
  .pagettl .image {
    width: 100%;
    margin-top: 35px;
  }
}

.pagettl .mainimg_slider .slick-dots {
  bottom: -35px;
}

.pagettl .mainimg_slider .slick-dots button {
  margin: 0 10px;
  width: 12px;
  height: 12px;
  border: 3px solid #7dbf65;
  background: #fff;
}

.pagettl .mainimg_slider .slick-dots .slick-active button {
  background: #7dbf65;
}

@media (max-width: 960px) {
  .pagettl .mainimg_slider .slick-dots {
    justify-content: flex-end;
    margin-right: 10px;
  }
}

.hasAnchor {
  position: relative;
}

@media (max-width: 960px) {
  .hasAnchor {
    padding-left: 0;
  }
}

.ttl-h3 {
  position: relative;
  padding-bottom: 35px;
  margin-bottom: 2em;
  font-size: 32rem;
  color: #7dbf65;
  text-align: center;
}

.ttl-h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 10px;
  background-image: linear-gradient(to right, #7dbf65 30%, transparent 0);
  background-size: 7px 100%;
  pointer-events: none;
}

@media (max-width: 960px) {
  .ttl-h3::after {
    height: 6px;
    background-size: 6px 100%;
  }
}

@media (max-width: 960px) {
  .ttl-h3 {
    padding-bottom: 25px;
    font-size: 22px;
  }
}

.intersection {
  opacity: 0;
  -webkit-transform: translateY(30px);
  transform: translateY(30px);
  transition: 0.8s;
}

.intersection.view {
  opacity: 1;
  -webkit-transform: none;
  transform: none;
}

/* ///////////////////////////////////////////////

　県央福祉会で働く人

/////////////////////////////////////////////// */
.sec {
  margin-top: 135px;
  padding-left: calc(50% - 480px);
  padding-right: calc(50% - 480px);
}

@media screen and (max-width: 1220px) {
  .sec {
    padding-left: 30px;
    padding-right: 30px;
  }
}

@media (max-width: 960px) {
  .sec {
    margin-top: 100px;
  }
}

@media (max-width: 520px) {
  .anchor_nav li {
    flex-basis: calc(50% - 10px);
  }
}


/*
  アーカイブページ
----------------------------------------------- */

.pagettl .f2 {
  top: 0%;
  left: 0%;
  width: 20%;
}

@media (max-width: 960px) {
  .pagettl .f2 {
    top: -5%;
    left: 45%;
    width: 18%;
  }
}

.pagettl .f3 {
  top: 34%;
  left: 17%;
  width: 21%;
}

@media (max-width: 960px) {
  .pagettl .f3 {
    top: 50%;
    left: 56%;
  }
}

.pagettl .j1 {
  top: 0%;
  right: 0%;
  width: 46%;
}

@media (max-width: 960px) {
  .pagettl .j1 {
    right: inherit;
  }
}

/* 県央福祉会で働く人 */
.workers {
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
  margin-bottom: 80px;
}

@media (max-width: 960px) {
  .workers {
    gap: 30px;
    flex-direction: column;
    margin-bottom: 60px;
  }
}

.workers>* {
  flex-basis: calc(25% - 45px);
  border: 3px solid #7dbf65;
  border-radius: 25px;
  background: #fff;
  overflow: hidden;
  color: #7dbf65;
  line-height: 1.7;
  transition: 0.2s;
}

.workers>*:hover {
  background: #7dbf65;
  color: #fff;
  text-decoration: none;
}

.workers>*:hover .thumb::after {
  background: rgba(159, 194, 56, 0.6);
}

.workers>*:hover img {
  opacity: 1;
}

@media (max-width: 960px) {
  .workers>* {
    display: flex;
  }

  .workers>*:nth-child(even) {
    flex-direction: row-reverse;
  }

  .workers>*>* {
    width: 50%;
  }
}

.workers .thumb {
  overflow: hidden;
  position: relative;
}

.workers .thumb::after {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  transition: 0.2s;
}

.workers .labels {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 140px;
  text-align: center;
  line-height: 1;
}

.workers .labels em {
  font-size: 20rem;
}

.workers .labels strong {
  margin-top: 0.5em;
  font-size: 20rem;
}

@media (max-width: 960px) {
  .workers .labels {
    height: inherit;
  }
}

/* 年齢別構成比 */
#age-structure>h3 {
  color: #666666;
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  margin-top: 18px;
}

.age-graph {
  display: flex;
  flex-wrap: wrap;
}

.age-graph dt,
.age-graph dd {
  display: flex;
  align-items: center;
  padding: 10px 0;
  line-height: 1;
}

.age-graph dt {
  width: 95px;
  /* ラベル幅 */
  justify-content: flex-end;
  padding-right: 1em;
  border-right: 1px solid #707070;
  white-space: nowrap;
}

.age-graph dd {
  width: calc(100% - 95px);
  justify-content: space-between;
}

.age-graph .graph {
  flex-basis: calc(100% - 5.5em);
}

.age-graph .graph .bar {
  display: block;
  height: 20px;
  background: #7dbf65;
  transform-origin: left;
  transition: .8s;
}

.age-graph .number {
  flex-basis: 5.5em;
  font-size: 14rem;
  text-align: right;
  color: #7dbf65;
}

.age-graph .number .countup {
  font-size: 28rem;
  color: #7dbf65;
}

.charts-container {
  display: grid;
  gap: 24px;
}

@media (min-width: 960px) {
  .charts-container {
    grid-template-columns: 1fr 1fr;
  }
}

.chart-box {
  background: #fff;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .06);
}

.stat-cards {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.stat-card {
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .06);
}

.stat-label {
  font-weight: 600;
  margin-bottom: 8px;
  color: #666666;
}

.stat-value {
  font-weight: 800;
  font-size: clamp(28px, 3.4vw, 40px);
  line-height: 1;
}

.stat-value span {
  color: #7dbf65;
}

.stat-value small {
  font-size: .5em;
  margin-left: .25em;
  font-weight: 700;
  color: #7dbf65;
}

.stat-note {
  margin-top: 6px;
  font-size: 12px;
  color: #666;
}

.qual-list {
  width: 40%;
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .06);
}

@media (max-width: 768px) {
  .qual-list {
    width: 100%;
  }
}

.qual-title {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 12px;
  color: #666666;
}

.qual-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 16px;
}

.qual-grid dt {
  font-weight: 700;
}

.qual-grid dd {
  margin: 0;
  text-align: right;
  font-weight: 800;
  font-size: 30px;
  color: #7dbf65;
}

.qual-grid dd span {
  font-size: 18px;
  color: #7dbf65;
  padding-left: 5px;
}

.data-link-wrap {
  margin: 18px 0 8px;
}

.data-link-wrap a:visited {
  color: #669e52;
}

.data-link-btn,
.data-link-inline {
  display: inline-block;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid #e0e0e0;
  text-decoration: none;
  font-weight: 700;
}

.data-link-btn {
  background: #f7f7f7;
}

/* Q&A アコーディオン */
/* --- FAQ 共通 --- */
.faq-toggle {
  display: none;
}

.faq-toggle~dd {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 0;
}

.faq-toggle:checked~dd {
  max-height: 1000px;
  /* 十分に大きな値でOK */
  padding: 40px;
}

/* 矢印回転 */
.faq-toggle:checked~dt .arrow {
  background: #7dbf65;
  transform: none;
}

.faq-toggle:checked~dt .arrow path {
  stroke: #fff;
}

#faq dt {
  display: flex;
  margin-top: 2em;
  margin-bottom: 1.2em;
  font-size: 18rem;
  position: relative;
  padding-right: 40px;
  cursor: pointer;
}

#faq dt i {
  margin-right: 1.5em;
  color: #7dbf65;
  font-size: 24rem;
  font-style: normal;
  line-height: 1.25;
}

#faq dt .arrow {
  position: absolute;
  top: 5px;
  right: 0;
  width: 28px;
  height: 28px;
  border: 3px solid #7dbf65;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 3px;
  transform: rotate(-180deg);
  transition: 0.2s;
}

#faq dt .arrow svg {
  width: 15px;
  height: 15px;
}

#faq dt .arrow path {
  fill: none;
  stroke: #7dbf65;
  stroke-linecap: round;
  stroke-width: 3px;
  transition: 0.2s;
}

@media (max-width: 960px) {
  #faq dt {
    flex-direction: column;
  }

  #faq dt i {
    margin-bottom: 7px;
  }
}

#faq dd {
  margin-bottom: 2.7em;
  background: #f1f6e1;
  border-radius: 20px;
  line-height: 2;
  display: flex;
  flex-direction: row;
  gap: 0.8em;
}

#faq dd i {
  color: #7dbf65;
  font-size: 24rem;
  font-style: normal;
  line-height: 1.2;
}

#faq dt .sp {
  display: none;
}

@media (max-width: 960px) {
  #faq dd {
    flex-direction: column;
  }

  #faq dd i {
    margin-right: 0;
  }

  #faq dt .sp {
    display: block;
  }

  .faq-toggle:checked~dd {
    max-height: 1000px;
    padding: 15px;
  }

}

/* 募集要項 */
#requirements dl {
  display: flex;
  flex-wrap: wrap;
}

#requirements dl dt,
#requirements dl dd {
  padding: 1.5em 0;
  line-height: 2;
}

#requirements dl dt:not(:first-of-type),
#requirements dl dd:not(:first-of-type) {
  border-top: 1px solid #000;
}

#requirements dl dt {
  width: 170px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

#requirements dl dd {
  width: calc(100% - 170px);
}

@media (max-width: 960px) {
  #requirements dl {
    flex-direction: column;
  }

  #requirements dl dt,
  #requirements dl dd {
    padding: 1.5em 0;
    line-height: 2;
  }

  #requirements dl dt:not(:first-of-type),
  #requirements dl dd:not(:first-of-type) {
    border-top: 1px solid #000;
  }

  #requirements dl dt {
    width: 100%;
    padding-bottom: 0;
  }

  #requirements dl dd {
    width: 100%;
    padding-top: 0.5em;
  }

  #requirements dl dd:not(:first-of-type) {
    border-top: none;
  }
}

/* 人材育成 */
.sec_about {
  padding-top: 80px;
  padding-bottom: 40px;
}

@media all and (max-width: 768px) {
  .sec_about {
    padding-top: 40px;
    display: flex;
    flex-direction: column;
  }
}

.sec_about h2 {
  text-align: center;
  margin: 0 auto 40px;
  color: #6d521c;
}

@media all and (max-width: 768px) {
  .sec_about h2 {
    padding: 0 12px;
  }
}

.sec_about p.lead {
  width: 600px;
  margin: 0 auto 32px;
}

@media all and (max-width: 768px) {
  .sec_about p.lead {
    width: 100%;
    padding: 0 12px;
  }
}

.sec_about .philosophy {
  width: 800px;
  margin: 0 auto 32px;
}

@media all and (max-width: 768px) {
  .sec_about .philosophy {
    width: 100%;
    padding: 0 12px;
  }
}

.sec_about .philosophy p {
  font-size: 1.5rem;
  margin-bottom: 0;
}

@media all and (max-width: 768px) {
  .sec_about .philosophy p {
    font-size: 1.2rem;
    margin-top: 10px;
    padding: 0 10px;
  }
}

.sec_about .philosophy .renen_color {
  text-align: center;
  color: #ffffff;
  background: #26baf8;
  border-radius: 40px;
  font-size: 1.4rem;
  padding: 5px 20px;
  margin-right: 15px;
}

@media all and (max-width: 768px) {
  .sec_about .philosophy .renen_color {
    font-size: 1.2rem;
    margin: 0;
    height: 40px;
  }
}

.sec_about p.about_text {
  text-align: center;
  font-size: 1.8rem;
  color: #225d0d;
  font-weight: 600;
}

@media all and (max-width: 768px) {
  .sec_about p.about_text {
    font-size: 1.6rem;
  }
}

.sec_about img.mainImg {
  width: 800px;
  height: calc(800px / 16 * 9);
  margin: 0 auto;
  display: block;
}

@media all and (max-width: 768px) {
  .sec_about img.mainImg {
    width: 100%;
    height: calc(100vw / 3 * 2);
    margin-bottom: 16px;
  }
}

.sec_about img.philosophyImg {
  max-width: 100%;
  margin: 0 auto;
}

.sec_about .sectionFooter {
  display: flex;
  margin-left: calc((100vw - 800px) / 2);
  gap: 2%;
}

@media all and (max-width: 768px) {
  .sec_about .sectionFooter {
    margin-left: 0;
    order: 4;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0 16px;
  }
}

.sec_about .sectionFooter .leftWrap {
  width: 31%;
  padding-top: 16px;
}

@media all and (max-width: 768px) {
  .sec_about .sectionFooter .leftWrap {
    width: 100%;
    order: 3;
    padding: 0 12px;
  }

  .sec_about .sectionFooter .leftWrap a {
    margin-left: auto;
    margin-right: auto;
  }
}

.sec_about .sectionFooter .leftWrap p {
  margin-bottom: 32px;
}

.sec_about .sectionFooter img {
  width: 31%;
  height: calc((100vw - ((100vw - 800px) / 2)) * 0.31 / 3 * 2);
  border: solid 5px white;
  margin-bottom: 32px;
  margin-top: -32px;
}

@media all and (max-width: 768px) {
  .sec_about .sectionFooter img {
    width: 45%;
    margin-top: 0;
    order: 1;
    border: solid 0px white;
    margin-bottom: 16px;
  }
}

/* odd セクション用背景と配置調整 */
.sec_about:nth-child(odd) {
  background-color: #fff9e1;
  /* $c-yellow_l */
}

.sec_about:nth-child(odd) img.mainImg {
  display: block;
  margin-left: auto;
}

.sec_about:nth-child(odd) .sectionFooter {
  margin-right: calc((100vw - 800px) / 2);
  margin-left: auto;
  flex-direction: row-reverse;
  margin-top: 55px;
}

@media all and (max-width: 768px) {
  .sec_about:nth-child(odd) .sectionFooter {
    flex-direction: row;
    margin-right: auto;
    margin-top: 10px;
  }
}

.sec_about+section {
  margin-top: 30px;
}

.contents {
  width: 100%;
  max-width: calc(1040px + 20px * 2);
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

.nurturing_title {
  position: relative;
  display: inline-block;
  margin-bottom: 40px;
  padding: 0 5px;
  color: #577082;
  font-size: 36px;
  font-weight: 600;
  letter-spacing: 0.1em;
}

@media screen and (max-width: 45em) {
  .nurturing_title {
    font-size: 22px;
    margin-top: 25px;
  }
}

.nurturing_title span {
  display: block;
  padding-top: 20px;
  font-size: 14px;
  letter-spacing: normal;
  color: #565656;
}

.nurturing_title_v2 {
  position: relative;
  display: inline-block;
  margin-bottom: 40px;
  padding: 0 5px;
  color: #577082;
  font-size: 36px;
  font-weight: 600;
  letter-spacing: 0.1em;
}

@media screen and (max-width: 45em) {
  .nurturing_title_v2 {
    font-size: 22px;
    margin-top: 30px;
  }
}

.nurturing_V1 {
  margin-bottom: 180px;
}

@media screen and (max-width: 45em) {
  .nurturing_V1 {
    margin-bottom: 0;
  }
}

@media screen and (max-width: 45em) {
  .nurturing_V1 .top_contents_title {
    line-height: 1.6;
  }

  .nurturing_V1 .top_contents_title::before {
    top: 55%;
    bottom: 1.2em;
    margin-top: 0;
  }

  .nurturing_V1 .top_contents_title::after {
    top: auto;
    bottom: 1.2em;
    margin-top: 0;
  }
}

.nurturing_V1 .top_about_inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 60px;
}

@media screen and (max-width: 45em) {
  .nurturing_V1 .top_about_inner {
    flex-direction: column;
    max-width: 100%;
  }
}

.nurturing_V1 .text_box {
  max-width: 100%;
  text-align: left;
  font-size: 18px;
}

.nurturing_V1 .text_v2 {
  text-align: center;
}

@media screen and (max-width: 45em) {
  .nurturing_V1 .text_v2 {
    text-align: left;
  }
}

.nurturing_V1 .keno_ul {
  text-align: left;
}

@media screen and (max-width: 45em) {
  .nurturing_V1 .keno_ul {
    margin: 0 0 1rem 0;
    padding: 0;
  }
}

.nurturing_V1 .keno_ul .keno_li {
  margin: 25px 0;
}

.nurturing_V1 .keno_ul .keno_li .keno_a {
  color: #22650a;
  font-weight: 600;
}

.nurturing_V1 .keno_ul .keno_li .keno_a:hover {
  color: #7dc065;
}

.nurturing_V1 figure {
  position: relative;
  flex-basis: 50%;
  flex-shrink: 0;
  margin-left: 60px;
}

@media screen and (max-width: 45em) {
  .nurturing_V1 figure {
    max-width: 100%;
    margin-top: 30px;
    margin-left: 0;
  }
}

.nurturing_V1 figure::after {
  position: absolute;
  bottom: -27.5%;
  left: 30%;
  z-index: -1;
  content: "";
  width: 100%;
  height: 100%;
  background: #ebebeb;
}

@media screen and (max-width: 45em) {
  .nurturing_V1 figure::after {
    bottom: -40px;
    left: 20px;
  }
}

.nurturing_V2 {
  margin-top: 50px;
  margin-bottom: 180px;
}

@media screen and (max-width: 45em) {
  .nurturing_V2 {
    margin-bottom: 0;
  }
}

/* .top_contents_title（中のメディアクエリ対応） */
@media screen and (max-width: 45em) {
  .nurturing_V2 .top_contents_title {
    line-height: 1.6;
  }

  .nurturing_V2 .top_contents_title::before {
    top: 55%;
    bottom: 1.2em;
    margin-top: 0;
  }

  .nurturing_V2 .top_contents_title::after {
    top: auto;
    bottom: 1.2em;
    margin-top: 0;
  }
}

/* innerレイアウト */
.nurturing_V2 .top_about_inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 60px;
}

@media screen and (max-width: 45em) {
  .nurturing_V2 .top_about_inner {
    flex-direction: column;
    max-width: 100%;
  }
}

/* 右寄せ構造 */
.nurturing_V2 .fd-right {
  flex-direction: row-reverse;
  margin-left: 0;
}

@media screen and (max-width: 45em) {
  .nurturing_V2 .fd-right {
    flex-direction: column;
    margin-right: 0;
  }
}

/* テキストボックス */
.nurturing_V2 .text_box {
  max-width: 100%;
  text-align: left;
  font-size: 18px;
}

/* 画像 */
.nurturing_V2 figure {
  position: relative;
  flex-basis: 50%;
  flex-shrink: 0;
  margin-left: 0;
  margin-right: 60px;
}

@media screen and (max-width: 45em) {
  .nurturing_V2 figure {
    max-width: 100%;
    margin-top: 30px;
    margin-right: 0;
  }
}

/* figure 背景 */
.nurturing_V2 figure::after {
  position: absolute;
  bottom: -27.5%;
  left: -30%;
  z-index: -1;
  content: "";
  width: 100%;
  height: 100%;
  background: #ebebeb;
}

@media screen and (max-width: 45em) {
  .nurturing_V2 figure::after {
    bottom: -40px;
    left: -40px;
  }
}

/* 採用の流れ */
#flow ol {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: center;
  gap: 50px;
}

#flow ol li {
  flex-basis: calc(33.333% - 33.333px);
  min-width: 280px;
  background: #f1f6e1;
  border-radius: 20px;
  margin-top: 80px;
  padding-top: 0;
  position: relative;
}

#flow ol li:not(:first-of-type):before {
  position: absolute;
  top: -85px;
  left: 47%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  content: url(../img/recruit/mrk-arrow.svg);
  rotate: 90deg;
}

@media (max-width: 520px) {
  #flow ol {
    flex-direction: column;
  }

  #flow ol li {
    margin-top: 70px;
    padding-top: 50px;
  }

  #flow ol li:not(:first-of-type):before {
    top: -85px;
    left: 43%;
  }
}

#flow .number {
  width: 12%;
  padding-top: 12%;
  border: 3px solid #7dbf65;
  border-radius: 50%;
  background: #fff;
  color: #7dbf65;
  box-sizing: content-box;
  position: absolute;
  top: 5px;
  left: 85px;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

#flow .number>* {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  white-space: nowrap;
}

#flow .number small {
  top: 15%;
  font-size: 14rem;
}

#flow .number em {
  top: 50%;
  font-size: 22rem;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

@media (max-width: 520px) {
  #flow .number {
    width: 120px;
    padding-top: 120px;
  }
}

#flow .content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 50px 25px;
  height: 100%;
}

#flow .content strong {
  font-size: 18rem;
  font-weight: 700;
  text-align: center;
}

#flow .content>*+* {
  padding-top: 1.5em;
}

@media (max-width: 520px) {
  #flow .content {
    padding: 40px 30px;
  }
}

.porocessPoint {
  border: 2px solid #7dbf65;
  margin-top: 45px;
  padding: 15px 25px;
  border-radius: 15px;
}

.ppTitle {
  border-bottom: 1px solid #b3b3b3;
  font-size: 1.4em;
}

.ppScript {
  font-size: 1.2em;
  padding-top: 10px;
}

/* エントリー */
#entry ul {
  display: grid;
  gap: 35px;
  grid-auto-flow: column;
  justify-content: center;
}

#entry ul .button {
  /*  width: 100%; 2つの時*/
  width: 350px;
}

@media (max-width: 960px) {
  #entry ul {
    gap: 25px;
    grid-auto-flow: row;
  }

  #entry ul .button {
    width: 315px;
  }
}


@media(min-width:751px) {
  .sp-only {
    display: none !important;
  }
}

@media(max-width:750px) {
  .pc-only {
    display: none !important;
  }
}

.charts-container {
  display: flex;
  flex-wrap: wrap;
  gap: 75px 50px;
  justify-content: center;
  margin-bottom: 40px;
}

.chart-box {
  flex: 1 1 320px;
  max-width: 400px;
}

.catch_img {
  width: 110%;
  margin-left: 60%;
  margin-top: 35px;
}

.catch_img img {
  width: 50%;
}

.recruit-contacnt {
  margin-top: 100px;
}

.recruit-contacnt p {
  font-size: 22px;
  margin-bottom: 35px;
}

.recruit-footer-icon-area {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.recruit-footer-insta {
  width: 50%;
  margin-right: 12%;
}

.recruit-footer-insta>p {
  margin-bottom: 5px;
}

.recruit-footer-insta>a>img {
  width: 40px;
}

.recruit-footer-pdf {
  width: 35%;
}

.recruit-footer-pdf>p {
  margin-bottom: 5px;
}

.recruit-footer-pdf>a>img {
  width: 40px;
}

@media(max-width:750px) {
  .catch_img {
    margin-left: 0;
  }

  .catch_img img {
    width: 93%;
  }

  .recruit-contacnt p {
    font-size: 18px;
  }

  .recruit-footer-icon-area {
    flex-direction: column;
  }

  .recruit-footer-insta {
    width: 100%;
    margin-bottom: 25px;
  }

  .recruit-footer-pdf {
    width: 100%;
  }
}



/*
  記事ページ
----------------------------------------------- */
.worker_post header {
  padding-left: calc(50% - 480px);
  display: flex;
  align-items: flex-end;
  margin-bottom: 180px;
}

@media screen and (max-width: 1020px) {
  .worker_post header {
    padding-left: 30px;
  }
}

@media (max-width: 960px) {
  .worker_post header {
    flex-direction: column-reverse;
    margin-bottom: 100px;
  }
}

.worker_post header .text {
  width: calc(100% - 51.5vw);
  padding: 20px 0;
}

.worker_post header .text .catch {
  color: #7dbf65;
  font-size: 24rem;
  line-height: 1.9;
}

.worker_post header .text .meta {
  margin-top: 4em;
  display: flex;
  flex-direction: column;
}

.worker_post header .text .name {
  margin-top: 1em;
  color: #7dbf65;
  font-size: 24rem;
}

@media (max-width: 960px) {
  .worker_post header .text {
    width: 100%;
    padding: 30px 0 0;
  }

  .worker_post header .text .meta {
    margin-top: 2em;
  }
}

.worker_post header .image {
  width: 51.5vw;
}

@media (max-width: 960px) {
  .worker_post header .image {
    width: 100%;
    margin-top: 35px;
  }
}

.worker_post .body {
  padding-left: calc(50% - 370px);
  padding-right: calc(50% - 370px);
}

@media screen and (max-width: 800px) {
  .worker_post .body {
    padding-left: 30px;
    padding-right: 30px;
  }
}

.worker_post .body figure {
  margin: 5em auto;
}

.worker_post .body h3 {
  margin-bottom: 1.2em;
  padding-left: 90px;
  color: #7dbf65;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 24rem;
  letter-spacing: 0.1em;
  line-height: 1.6;
  position: relative;
}

.worker_post .body h3 strong,
.worker_post .body h3 b {
  position: absolute;
  top: 0;
  left: 0;
  color: #7dbf65;
}

.worker_post .body p {
  margin-bottom: 3em;
  padding-left: 90px;
}

@media (max-width: 960px) {
  .worker_post .body figure {
    margin: 3em auto;
  }

  .worker_post .body h3 {
    margin-bottom: 0.8em;
    padding-left: 0;
    display: flex;
    flex-direction: column;
  }

  .worker_post .body h3 strong,
  .worker_post .body h3 b {
    position: static;
    margin-bottom: 10px;
  }

  .worker_post .body p {
    margin-bottom: 2.5em;
    padding-left: 0;
  }
}

.worker_schedule {
  margin-top: 120px;
  padding-left: calc(50% - 480px);
  padding-right: calc(50% - 480px);
}

.v-schedule-sec-list {
  padding: 0 40px 0;
}

.v-schedule-sec-list.scr-anin--on .v-schedule-sec-list__item {
  opacity: 1;
  translate: 0 0;
}

.v-schedule-sec-list__item {
  display: flex;
  align-items: flex-start;
  gap: 5px;
  padding-inline: 10px;
  opacity: 0;
  translate: 0 15px;
  transition: opacity 0.6s ease, translate 0.6s ease;
}

.v-schedule-sec-list__item:nth-of-type(2) {
  transition-delay: 0.05s;
}

.v-schedule-sec-list__item:nth-of-type(3) {
  transition-delay: 0.1s;
}

.v-schedule-sec-list__item:nth-of-type(4) {
  transition-delay: 0.15s;
}

.v-schedule-sec-list__item:nth-of-type(5) {
  transition-delay: 0.2s;
}

.v-schedule-sec-list__item:nth-of-type(6) {
  transition-delay: 0.25s;
}

.v-schedule-sec-list__item:nth-of-type(7) {
  transition-delay: 0.3s;
}

.v-schedule-sec-list__item:nth-of-type(8) {
  transition-delay: 0.35s;
}

.v-schedule-sec-list__item:nth-of-type(9) {
  transition-delay: 0.4s;
}

.v-schedule-sec-list__item:not(:last-of-type) {
  position: relative;
  padding-bottom: 30px;
}

.v-schedule-sec-list__item:not(:last-of-type)::before {
  content: '';
  position: absolute;
  inset: 16.5px auto 0 14px;
  height: 100%;
  width: 1px;
  background: #d9d9d9;
}

.v-schedule-sec-list__hour {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0;
  width: 75px;
  padding-left: 19px;
  flex-shrink: 0;
  color: var(--schedule-primary-color);
  position: relative;
}

.v-schedule-sec-list__hour::before {
  content: '';
  position: absolute;
  inset: 0 auto 0 0;
  margin: auto;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #0f9c3c;
}

.v-schedule-sec-list__ttl {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0;
  color: var(--schedule-primary-color);
  display: block;
}

.v-schedule-sec-list__txt {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0;
  display: block;
}

.other_posts {
  padding-left: calc(50% - 480px);
  padding-right: calc(50% - 480px);
}

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

  .other_posts,
  .worker_schedule {
    padding-left: 30px;
    padding-right: 30px;
  }

  .v-schedule-sec-list {
    padding: 0 20px 0;
  }

}

.other_posts .button {
  margin-top: 200px;
}

@media (max-width: 960px) {
  .other_posts .button {
    margin-top: 100px;
  }
}

@media(min-width:751px) {
  .sp-only {
    display: none !important;
  }
}

@media(max-width:750px) {
  .pc-only {
    display: none !important;
  }
}