@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Roboto:ital,wght@0,100..900;1,100..900&family=Zen+Maru+Gothic:wght@400;500;700&display=swap");
.anim {
  backface-visibility: hidden;
  will-change: transform;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.anim--slow {
  animation-duration: 2s !important;
}

.anim--delay {
  animation-delay: 1s !important;
}

.anim-hide {
  opacity: 0;
}

.anim-fadeIn {
  opacity: 0;
}
.anim-fadeIn.onAnim {
  animation: fadeIn 2s ease 0s 1 alternate forwards;
}

@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}
.anim-fadeUp {
  opacity: 0;
}
.anim-fadeUp.onAnim {
  animation: fadeUp 2s ease 0s 1 alternate forwards;
}

@keyframes fadeLeft {
  0% {
    opacity: 0;
    transform: translateX(50px);
  }
  100% {
    opacity: 1;
    transform: translateX(0px);
  }
}
.anim-fadeLeft {
  opacity: 0;
}
.anim-fadeLeft.onAnim {
  animation: fadeLeft 2s ease 0s 1 alternate forwards;
}

@keyframes fadeRight {
  0% {
    opacity: 0;
    transform: translateX(-50px);
  }
  100% {
    opacity: 1;
    transform: translateX(0px);
  }
}
.anim-fadeRight {
  opacity: 0;
}
.anim-fadeRight.onAnim {
  animation: fadeRight 2s ease 0s 1 alternate forwards;
}

.mainHeader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 990;
  background-color: #fff;
  box-shadow: 0 0.0625rem 0.25rem rgba(142, 142, 142, 0.3);
}
.mainHeader .inner {
  position: static;
  max-width: 1080px;
}
@media all and (max-width: 1080px) {
  .mainHeader .inner {
    padding-right: 0.625rem;
  }
}
@media all and (max-width: 740px) {
  .mainHeader .inner {
    padding-left: 0.625rem;
  }
}
.mainHeader__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 6.25rem;
  position: static;
  gap: 0.625rem;
}
@media all and (max-width: 1080px) {
  .mainHeader__inner {
    height: 3.75rem;
  }
}
.mainHeader__heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15em;
  font-size: 0.9375rem;
  font-weight: 600;
}
@media all and (max-width: 1080px) {
  .mainHeader__heading {
    font-size: 0.625rem;
  }
}
@media all and (max-width: 740px) {
  .mainHeader__heading {
    font-size: 0.5rem;
  }
}
.mainHeader__heading .logo {
  max-width: 16.125rem;
}
@media all and (max-width: 1080px) {
  .mainHeader__heading .logo {
    max-width: 12.5rem;
  }
}
@media all and (max-width: 740px) {
  .mainHeader__heading .logo {
    max-width: 9.75rem;
  }
}
.mainHeader__right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  height: 100%;
}
@media all and (max-width: 1080px) {
  .mainHeader__right {
    align-items: center;
    flex-direction: row;
    gap: 0.625rem;
  }
}
@media all and (max-width: 740px) {
  .mainHeader__right {
    gap: 0.3125rem;
  }
}
@media all and (max-width: 1080px) {
  .mainHeader__subNav {
    margin-top: -0.5rem;
  }
}
@media all and (max-width: 740px) {
  .mainHeader__subNav {
    margin-top: -0.75rem;
  }
}
.mainHeader__subNav ul {
  display: flex;
  gap: 0.3125rem;
}
@media all and (max-width: 740px) {
  .mainHeader__subNav ul {
    gap: 0.1875rem;
  }
}
.mainHeader__subNav a {
  background-color: #7fbf42;
  color: #fff;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  transition: all 0.2s ease 0s;
  width: 8.75rem;
  height: 2.875rem;
  border-radius: 0 0 0.375rem 0.375rem;
}
.mainHeader__subNav a:hover {
  text-decoration: none;
}
@media (hover: none) {
  .mainHeader__subNav a {
    transition: none !important;
  }
}
@media (hover: hover) {
  .mainHeader__subNav a:hover {
    text-decoration: none;
    background-color: #659c31;
  }
}
.mainHeader__subNav a:active {
  text-decoration: none;
  background-color: #659c31;
}
@media all and (max-width: 1080px) {
  .mainHeader__subNav a {
    height: 3.25rem;
  }
}
@media all and (max-width: 740px) {
  .mainHeader__subNav a {
    font-size: 0.6875rem;
    padding: 2.25em 0.4em 1.2em;
    height: auto;
    width: 4.375rem;
  }
}

@media all and (max-width: 1080px) {
  .gNav {
    position: fixed;
    z-index: 990;
    opacity: 0;
    transform: translateX(-102%);
    transition: opacity 0.4s ease 0s, transform 0s ease 0.4s;
    margin-top: 3.75rem;
    top: 0;
    right: 0;
    background-color: #fff;
    box-shadow: 0 0.0625rem 0.25rem rgba(142, 142, 142, 0.3) inset;
    width: 100%;
    overflow: auto;
    height: calc(100vh - 3.75rem);
  }
  .gNav.active {
    transition: opacity 0.4s ease 0s, transform 0s ease 0s;
    opacity: 1;
    transform: translateX(0%);
  }
}
.gNav__mainNav {
  display: flex;
  line-height: 1.4;
  font-size: 0.875rem;
}
@media all and (max-width: 1080px) {
  .gNav__mainNav {
    flex-direction: column;
    font-size: 1rem;
    margin-top: 0;
  }
}
@media all and (min-width: 1081px) {
  .gNav__mainNav__item {
    margin-left: 1em;
  }
  .gNav__mainNav__item:first-child {
    margin-left: 0;
  }
  .gNav__mainNav__item:first-child > a:before {
    display: none;
  }
}
@media all and (max-width: 1080px) {
  .gNav__mainNav__item {
    border-bottom: 0.0625rem solid #c3d82e;
  }
}
.gNav__mainNav__item > a {
  display: flex;
  justify-content: center;
  align-items: center;
  justify-content: space-between;
  transition: all 0.2s ease 0s;
  padding: 1.2em 0 1.2em 1em;
  position: relative;
}
.gNav__mainNav__item > a:hover {
  text-decoration: none;
}
.gNav__mainNav__item > a:before {
  content: "";
  width: 0.0625rem;
  height: 1em;
  position: absolute;
  left: 0;
  top: 50%;
  translate: 0 -50%;
  background-color: #000;
}
@media (min-width: 1081px) and (hover: none) {
  .gNav__mainNav__item > a {
    transition: none !important;
  }
}
@media (min-width: 1081px) and (hover: hover) {
  .gNav__mainNav__item > a:hover {
    color: #7fbf42;
  }
}
@media all and (min-width: 1081px) {
  .gNav__mainNav__item > a:active {
    color: #7fbf42;
  }
}
@media all and (max-width: 1080px) {
  .gNav__mainNav__item > a {
    padding: 1.25em 1.5em;
    font-weight: bold;
  }
  .gNav__mainNav__item > a:before {
    display: none;
  }
  .gNav__mainNav__item > a:after {
    content: "›";
    font-size: 1.6em;
    line-height: 1;
    margin-top: -0.2em;
  }
}
@media (max-width: 1080px) and (hover: none) {
  .gNav__mainNav__item > a {
    transition: none !important;
  }
}
@media (max-width: 1080px) and (hover: hover) {
  .gNav__mainNav__item > a:hover {
    background-color: #c3d82e;
    text-decoration: none;
  }
}
@media all and (max-width: 1080px) {
  .gNav__mainNav__item > a:active {
    background-color: #c3d82e;
    text-decoration: none;
  }
}
@media all and (min-width: 1081px) {
  .gNav__mainNav__item:hover .gNav__mainNav__child {
    opacity: 1;
    visibility: visible;
  }
}
@media all and (max-width: 1080px) {
  .gNav__mainNav__item.hasChild > a:after {
    content: "+";
  }
  .gNav__mainNav__item.hasChild > a.active:after {
    content: "-";
  }
}
@media all and (min-width: 1081px) {
  .gNav__mainNav__child {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100vw;
    background-color: #fff;
    translate: 0 99%;
    transition: visibility 0.4s, opacity 0.4s;
    padding-top: 0.875rem;
    padding-bottom: 2.25rem;
    opacity: 0;
    visibility: hidden;
    display: block !important;
  }
  .gNav__mainNav__child__list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
  }
  .gNav__mainNav__child__list a {
    display: block;
    position: relative;
    transition: opacity 0.3s ease 0s;
  }
}
@media (min-width: 1081px) and (hover: none) {
  .gNav__mainNav__child__list a {
    transition: none !important;
  }
}
@media (min-width: 1081px) and (hover: hover) {
  .gNav__mainNav__child__list a:hover {
    opacity: 0.8;
    text-decoration: none;
  }
}
@media all and (min-width: 1081px) {
  .gNav__mainNav__child__list a:active {
    opacity: 0.8;
    text-decoration: none;
  }
  .gNav__mainNav__child__list a .img {
    width: 100%;
    aspect-ratio: 22/15;
  }
  .gNav__mainNav__child__list a .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .gNav__mainNav__child__list a .text {
    position: absolute;
    bottom: 0;
    left: 0;
    text-align: center;
    z-index: 5;
    padding: 0.4em;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.6);
  }
}
@media all and (max-width: 1080px) {
  .gNav__mainNav__child {
    display: none;
  }
  .gNav__mainNav__child .img {
    display: none;
  }
  .gNav__mainNav__child__list li {
    border-top: 0.0625rem solid #d0d0d0;
  }
  .gNav__mainNav__child__list a {
    padding: 1rem 1.15em 1rem 1.5em;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.875rem;
  }
  .gNav__mainNav__child__list a:after {
    content: "›";
    font-size: 1.6em;
    line-height: 1;
    margin-top: -0.2em;
    opacity: 0.35;
  }
}

.spBT {
  all: unset;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  line-height: 1;
  width: 3.125rem;
  height: 3.125rem;
  cursor: pointer;
  position: relative;
  background-color: #fff;
  z-index: 999;
  padding: 0;
  transition: all 1s ease 0s;
}
@media all and (min-width: 1081px) {
  .spBT {
    display: none;
  }
}
.spBT__barWrap {
  position: relative;
  display: block;
  width: 70%;
  height: 0.125rem;
}
.spBT__barWrap span {
  height: 0.125rem;
  background-color: #000;
  width: 100%;
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  transition: all 0.2s ease 0s;
}
.spBT__barWrap span:hover {
  text-decoration: none;
}
.spBT__barWrap span:first-child {
  translate: 0 -0.5rem;
}
.spBT__barWrap span:last-child {
  translate: 0 0.5rem;
}
.spBT__close {
  overflow: hidden;
  height: 0;
  transition: all 0.2s ease 0s;
  line-height: 1.2;
  font-size: 0.625rem;
  margin-top: 1.2em;
  margin-bottom: -1.2em;
}
.spBT__close:hover {
  text-decoration: none;
}
.spBT.active .spBT__barWrap {
  scale: 0.9;
}
.spBT.active .spBT__barWrap span {
  background-color: #7fbf42;
}
.spBT.active .spBT__barWrap span:first-child {
  translate: 0 0;
  rotate: 45deg;
}
.spBT.active .spBT__barWrap span:nth-child(2) {
  opacity: 0;
}
.spBT.active .spBT__barWrap span:last-child {
  translate: 0 0;
  rotate: -45deg;
  width: 100%;
}
.spBT.active .spBT__close {
  height: 1.2em;
}

a {
  color: #000;
}
@media (hover: hover) {
  a:hover {
    text-decoration: underline;
  }
}

a[rel="noreferrer noopener"] {
  text-decoration: underline;
}

html {
  font-size: 16px;
  min-height: 100vh;
  min-height: -webkit-fill-available;
}
@media all and (max-width: 740px) {
  html {
    font-size: 3.5896vw;
  }
}

body {
  font-size: 16px;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-weight: 400;
  font-style: normal;
  line-height: 1.6;
  color: #000;
  overscroll-behavior: none;
  background-color: #fff;
}
body.hide {
  overflow: hidden;
}
body figure {
  margin: 0;
}
@media all and (max-width: 740px) {
  body {
    font-size: 3.5896vw !important;
  }
}

img {
  height: auto;
}

.roboto {
  font-family: "Roboto", "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

.marugo {
  font-family: "Zen Maru Gothic", "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.bold {
  font-weight: bold;
}

.fw-400 {
  font-weight: 400;
}

.fw-500 {
  font-weight: 500;
}

.fw-600 {
  font-weight: 600;
}

.fw400 {
  font-weight: 400;
}

.fw500 {
  font-weight: 500;
}

.fw600 {
  font-weight: 600;
}

button,
select {
  color: #000;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.6;
}

.o_tab {
  display: none !important;
}

.o_sp {
  display: none !important;
}

.o_sp2 {
  display: none !important;
}

.hiddenBox {
  overflow: hidden;
}

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

@media all and (max-width: 740px) {
  .text-center-sp {
    text-align: center;
  }
}

@media all and (max-width: 740px) {
  .text-left-sp {
    text-align: left;
  }
}

.text-right {
  text-align: right;
}

@media all and (min-width: 741px) {
  .text-right-pc {
    text-align: right;
  }
}

@media all and (max-width: 1080px) {
  body {
    font-size: 16px;
  }
}
@media all and (max-width: 1180px) {
  .o_large {
    display: none !important;
  }
}

@media all and (max-width: 1080px) {
  .o_pc {
    display: none !important;
  }
}

@media all and (max-width: 1080px) {
  .o_tab {
    display: block !important;
  }
}
@media all and (max-width: 740px) {
  .o_sp {
    display: block !important;
  }
  .no_sp {
    display: none !important;
  }
}
@media all and (max-width: 560px) {
  .o_sp2 {
    display: block !important;
  }
  .no_sp2 {
    display: none !important;
  }
}
.br {
  display: none;
}
@media all and (min-width: 1081px) {
  .br.pc {
    display: inline;
  }
}
@media all and (max-width: 1180px) and (min-width: 1081px) {
  .br.pc2 {
    display: inline;
  }
}
@media all and (max-width: 1080px) and (min-width: 741px) {
  .br.tab {
    display: inline;
  }
}
@media all and (max-width: 740px) {
  .br.sp {
    display: inline;
  }
}

.color-key {
  color: #7fbf42 !important;
}

.color-key2 {
  color: #c3d82e !important;
}

.color-key3 {
  color: #fff200 !important;
}

.color-white {
  color: #fff;
}

.bg-key {
  background: #7fbf42;
}

.bg-wave {
  background-repeat: repeat-x;
  background-size: auto 100%;
  background-image: url(../images/common/bg_wave.webp);
}
@media all and (max-width: 740px) {
  .bg-wave {
    background-position: left -10% center;
  }
}

.bg-wave2 {
  position: relative;
}
.bg-wave2__bg {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.bg-wave2__bg:before, .bg-wave2__bg:after {
  content: "";
  width: 100%;
  aspect-ratio: 1280/81;
  background-position: top center;
  background-size: cover;
  transform-origin: top center;
  background-image: url(../images/common/bg_wave2.webp);
  scale: 1.02;
}
.bg-wave2__bg:after {
  scale: -1 -1;
  translate: 0 100%;
}
.bg-wave2__bg > div {
  flex: 1;
  background-color: #f3f7d5;
}

.pt-lg {
  padding-top: 9.375rem;
}
@media all and (max-width: 740px) {
  .pt-lg {
    padding-top: 6.25rem;
  }
}

.pb-lg {
  padding-bottom: 9.375rem;
}
@media all and (max-width: 1080px) {
  .pb-lg {
    padding-bottom: 6.25rem;
  }
}
@media all and (max-width: 740px) {
  .pb-lg {
    padding-bottom: 5rem;
  }
}

.pt-md {
  padding-top: 6.25rem;
}
@media all and (max-width: 740px) {
  .pt-md {
    padding-top: 3.75rem;
  }
}

.pb-md {
  padding-bottom: 6.25rem;
}
@media all and (max-width: 740px) {
  .pb-md {
    padding-bottom: 3.75rem;
  }
}

.pt50 {
  padding-top: 3.125rem;
}

.pb50 {
  padding-bottom: 3.125rem;
}

.w100 {
  width: 100%;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.mb-min {
  margin-bottom: 1.25rem;
}

.mb-sml {
  margin-bottom: 1.875rem;
}
@media all and (max-width: 740px) {
  .mb-sml {
    margin-bottom: 1.25rem;
  }
}

.mb-md {
  margin-bottom: 3.75rem;
}
@media all and (max-width: 740px) {
  .mb-md {
    margin-bottom: 2.5rem;
  }
}

.mb05em {
  margin-bottom: 0.5em;
}

.mb1em {
  margin-bottom: 1em;
}

.mb15em {
  margin-bottom: 1.5em;
}

.mb10 {
  margin-bottom: 0.625rem;
}

.mb20 {
  margin-bottom: 1.25rem;
}

.mb30 {
  margin-bottom: 1.875rem;
}

.mb40 {
  margin-bottom: 2.5rem;
}

.mb50 {
  margin-bottom: 3.125rem;
}

.mb60 {
  margin-bottom: 3.75rem;
}

.mb80 {
  margin-bottom: 5rem;
}

.mb-lg {
  margin-bottom: 5rem;
}
@media all and (max-width: 1080px) {
  .mb-lg {
    margin-bottom: 3.75rem;
  }
}

.mb-lg2 {
  margin-bottom: 5rem;
}
@media all and (max-width: 1080px) {
  .mb-lg2 {
    margin-bottom: 3.125rem;
  }
}

.mb-hg {
  margin-bottom: 6.25rem;
}
@media all and (max-width: 1080px) {
  .mb-hg {
    margin-bottom: 3.75rem;
  }
}

.mt-lg {
  margin-top: 5rem;
}
@media all and (max-width: 1080px) {
  .mt-lg {
    margin-top: 3.75rem;
  }
}

.mb-md {
  margin-bottom: 3.75rem;
}
@media all and (max-width: 1080px) {
  .mb-md {
    margin-bottom: 2.5rem;
  }
}

.mt-md {
  margin-top: 3.75rem;
}
@media all and (max-width: 1080px) {
  .mt-md {
    margin-top: 2.5rem;
  }
}

.mb-hg {
  margin-bottom: 7.5rem;
}
@media all and (max-width: 1080px) {
  .mb-hg {
    margin-bottom: 6.25rem;
  }
}
@media all and (max-width: 740px) {
  .mb-hg {
    margin-bottom: 5rem;
  }
}

@media all and (max-width: 740px) {
  .mb30-sp {
    margin-bottom: 1.875rem;
  }
}

@media all and (max-width: 740px) {
  .mb40-sp {
    margin-bottom: 2.5rem;
  }
}

@media all and (max-width: 740px) {
  .mb50-sp {
    margin-bottom: 3.125rem;
  }
}

@media all and (max-width: 740px) {
  .mt40-sp {
    margin-top: 2.5rem;
  }
}

@media all and (max-width: 740px) {
  .mt50-sp {
    margin-top: 3.125rem;
  }
}

@media all and (max-width: 740px) {
  .mb20-sp {
    margin-bottom: 1.25rem;
  }
}

@media all and (max-width: 740px) {
  .mt20-sp {
    margin-top: 1.25rem;
  }
}

@media all and (max-width: 740px) {
  .mb0-sp {
    margin-bottom: 0;
  }
}

@media all and (max-width: 740px) {
  .mt0-sp {
    margin-top: 0;
  }
}

#mainContainer {
  margin-top: 6.25rem;
}
@media all and (max-width: 1080px) {
  #mainContainer {
    margin-top: 3.75rem;
  }
}

.inner {
  padding-left: 40px;
  padding-right: 40px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 5;
}
@media all and (max-width: 1080px) {
  .inner {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}
@media all and (max-width: 740px) {
  .inner {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}

.inner-box {
  max-width: 68.75rem;
  margin-left: auto;
  margin-right: auto;
}

.max648 {
  max-width: 40.5rem;
  margin-left: auto;
  margin-right: auto;
}

.max720 {
  max-width: 45rem;
  margin-left: auto;
  margin-right: auto;
}

.max760 {
  max-width: 47.5rem;
  margin-left: auto;
  margin-right: auto;
}

.max800 {
  max-width: 50rem;
  margin-left: auto;
  margin-right: auto;
}

.max830 {
  max-width: 51.875rem;
  margin-left: auto;
  margin-right: auto;
}

.max860 {
  max-width: 53.75rem;
  margin-left: auto;
  margin-right: auto;
}

.max1000 {
  max-width: 62.5rem;
  margin-left: auto;
  margin-right: auto;
}

.font-res16 {
  font-size: 16px;
}
@media all and (max-width: 1080px) {
  .font-res16 {
    font-size: max(1rem, 1.4814814815vw);
  }
}
@media all and (max-width: 740px) {
  .font-res16 {
    font-size: max(1rem, 2.6666666667vw);
  }
}

.ls01 {
  letter-spacing: 0.1em;
}

.lh2 {
  line-height: 2;
}

.commonHeading {
  display: flex;
  align-items: center;
  flex-direction: column;
  text-align: center;
  font-size: 1.625rem;
}
@media all and (max-width: 740px) {
  .commonHeading {
    font-size: 1.25rem;
  }
}
.commonHeading__en {
  font-weight: 900;
  color: #c3d82e;
}

.commonHeading2 {
  font-size: 1.25rem;
  color: #7fbf42;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media all and (max-width: 740px) {
  .commonHeading2 {
    font-size: 1rem;
  }
}
.commonHeading2 .text {
  margin: 0 1em;
  flex-shrink: 0;
  text-align: center;
}
.commonHeading2 .bar {
  height: 0.0625rem;
  position: relative;
  width: 100%;
  background-color: #7fbf42;
  max-width: 6.25rem;
}
.commonHeading2 .bar:after {
  content: "";
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  background-color: #7fbf42;
  width: 0.0625rem;
  height: 1em;
}
.commonHeading2 .bar:first-child:after {
  right: 0;
}
.commonHeading2 .bar:last-child:after {
  left: 0;
}

.commonHeading3 {
  border-left: 0.375rem solid #7fbf42;
  padding-left: 0.625rem;
  font-size: 1.5rem;
  line-height: 1.4;
  color: #7fbf42;
  font-weight: 600;
}
@media all and (max-width: 740px) {
  .commonHeading3 {
    font-size: 1.125rem;
  }
}

.commonHeading4 {
  border-top: 0.125rem solid #7fbf42;
  display: flex;
  justify-content: center;
}
.commonHeading4 span {
  text-align: center;
  position: relative;
  min-width: 16.875rem;
  max-width: 80%;
  padding: 0.1em 0.5em;
  background-color: #7fbf42;
  color: #fff;
  font-weight: 600;
  font-size: 1.25rem;
}
@media all and (max-width: 740px) {
  .commonHeading4 span {
    font-size: 1.125rem;
    min-width: 12.5rem;
    padding: 0.2em 0.5em;
  }
}
.commonHeading4 span:before {
  content: "";
  width: 3em;
  height: 100%;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: left center;
  position: absolute;
  left: 0;
  top: 0;
  background-image: url(../images/pages/people/message_headingBG.webp);
  translate: -99% 0;
  scale: -1 1;
}
.commonHeading4 span:after {
  content: "";
  width: 3em;
  height: 100%;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: left center;
  position: absolute;
  right: 0;
  top: 0;
  background-image: url(../images/pages/people/message_headingBG.webp);
  translate: 99% 0;
}

.commonHeading5 {
  font-size: 1.125rem;
  color: #7fbf42;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
}
@media all and (max-width: 740px) {
  .commonHeading5 {
    font-size: 1rem;
  }
}
.commonHeading5 span {
  margin: 0 2em;
  flex-shrink: 0;
  text-align: center;
}
.commonHeading5:before, .commonHeading5:after {
  content: "";
  height: 0.125rem;
  position: relative;
  width: 100%;
  background-color: #7fbf42;
}

.fz12 {
  font-size: 0.75rem;
}

.fz13 {
  font-size: 0.8125rem;
}

.fz14 {
  font-size: 0.875rem;
}

.fz16 {
  font-size: 1rem !important;
}

.fz18 {
  font-size: 1.125rem;
}

.fz20 {
  font-size: 1.25rem;
}

.fz22 {
  font-size: 1.375rem;
}

.fz24 {
  font-size: 1.5rem;
}

.fz26 {
  font-size: 1.625rem;
}

.fz30 {
  font-size: 1.875rem;
}

.fz34 {
  font-size: 2.125rem;
}

.fz38 {
  font-size: 2.375rem;
}

@media all and (max-width: 740px) {
  .fz10-sp {
    font-size: 0.625rem !important;
  }
}

@media all and (max-width: 740px) {
  .fz12-sp {
    font-size: 0.75rem !important;
  }
}

@media all and (max-width: 740px) {
  .fz13-sp {
    font-size: 0.8125rem;
  }
}

@media all and (max-width: 740px) {
  .fz14-sp {
    font-size: 0.875rem;
  }
}

@media all and (max-width: 740px) {
  .fz16-sp {
    font-size: 1rem !important;
  }
}

@media all and (max-width: 740px) {
  .fz18-sp {
    font-size: 1.125rem;
  }
}

@media all and (max-width: 740px) {
  .fz20-sp {
    font-size: 1.25rem;
  }
}

@media all and (max-width: 740px) {
  .fz22-sp {
    font-size: 1.375rem;
  }
}

@media all and (max-width: 740px) {
  .fz24-sp {
    font-size: 1.5rem;
  }
}

.flex-start {
  display: flex;
  justify-content: flex-start;
}

.flex-end {
  display: flex;
  justify-content: flex-end;
}

.sp-flex-end {
  display: flex;
  justify-content: flex-start;
}
@media all and (max-width: 740px) {
  .sp-flex-end {
    justify-content: flex-end;
  }
}

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

.commonBT {
  appearance: none;
  border: 0;
  background-image: none;
  border-radius: 5em;
  transition: all 0.2s ease 0s;
  min-width: 12.5rem;
  width: 100%;
  max-width: 20.625rem;
  padding: 0.8125rem 2.8125rem 1rem;
  position: relative;
  line-height: 1.2;
  font-size: 1.25rem;
  background-color: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #7fbf42;
  color: #fff;
  font-weight: bold;
}
.commonBT:hover {
  text-decoration: none;
}
@media (hover: none) {
  .commonBT {
    transition: none !important;
  }
}
@media (hover: hover) {
  .commonBT:hover {
    text-decoration: none;
    background-color: #eef7e6;
    color: #7fbf42;
  }
}
.commonBT:active {
  text-decoration: none;
  background-color: #eef7e6;
  color: #7fbf42;
}
.commonBT.max280 {
  max-width: 17.5rem;
}
@media all and (max-width: 740px) {
  .commonBT {
    font-size: 1.125rem;
    width: auto;
  }
}
.commonBT--medium {
  min-width: 11.375rem;
  font-size: 1rem;
  width: auto;
}
@media all and (max-width: 740px) {
  .commonBT--medium {
    font-size: 0.875rem;
    padding: 0.5rem 2.8125rem 0.625rem;
    min-width: 7.5rem;
  }
}
.commonBT--small {
  font-size: 0.8125rem;
  min-width: 11.375rem;
  padding: 0.25rem 2.8125rem 0.375rem;
  width: auto;
}
@media all and (max-width: 740px) {
  .commonBT--small {
    font-size: 0.75rem;
  }
}
.commonBT--ptSmall {
  padding-left: 1.5625rem;
}
.commonBT--pSmall {
  padding-top: 0.5rem;
  padding-bottom: 0.625rem;
}
.commonBT--white {
  color: #7fbf42;
  background-color: #fff;
}
@media (hover: none) {
  .commonBT--white {
    transition: none !important;
  }
}
@media (hover: hover) {
  .commonBT--white:hover {
    color: #fff;
    background-color: #7fbf42;
  }
}
.commonBT--white:active {
  color: #fff;
  background-color: #7fbf42;
}
.commonBT--yellow {
  color: #000;
  background-color: #fff200;
}
@media (hover: none) {
  .commonBT--yellow {
    transition: none !important;
  }
}
@media (hover: hover) {
  .commonBT--yellow:hover {
    opacity: 0.7;
    color: #000;
  }
}
.commonBT--yellow:active {
  opacity: 0.7;
  color: #000;
}
.commonBT--border {
  color: #7fbf42;
  background-color: #fff;
  border: 0.125rem solid #7fbf42;
}
@media (hover: none) {
  .commonBT--border {
    transition: none !important;
  }
}
@media (hover: hover) {
  .commonBT--border:hover {
    color: #fff;
    background-color: #7fbf42;
  }
}
.commonBT--border:active {
  color: #fff;
  background-color: #7fbf42;
}
.commonBT--borderBK {
  color: #000;
  background-color: #fff;
  border: 0.0625rem solid #000;
}
@media (hover: none) {
  .commonBT--borderBK {
    transition: none !important;
  }
}
@media (hover: hover) {
  .commonBT--borderBK:hover {
    color: #fff;
    background-color: #000;
  }
}
.commonBT--borderBK:active {
  color: #fff;
  background-color: #000;
}
.commonBT--large {
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  font-size: 1.5rem;
}
@media all and (max-width: 740px) {
  .commonBT--large {
    font-size: 1.125rem;
  }
}
.commonBT--en {
  padding-bottom: 0.65em;
}
@media all and (max-width: 740px) {
  .commonBT--dl {
    width: 17.5rem;
  }
}
.commonBT--dl .dl-icon {
  position: absolute;
  left: 1.875rem;
  top: 50%;
  translate: 0 -50%;
}
@media all and (max-width: 740px) {
  .commonBT--dl .dl-icon {
    left: 1.25rem;
  }
}
.commonBT--dl .dl-icon path {
  transition: all 0.2s ease 0s;
}
.commonBT--dl .dl-icon path:hover {
  text-decoration: none;
}
@media (hover: none) {
  .commonBT--dl {
    transition: none !important;
  }
}
@media (hover: hover) {
  .commonBT--dl:hover path {
    fill: #7fbf42;
  }
}
.commonBT--dl:active path {
  fill: #7fbf42;
}
.commonBT--dl:after {
  display: none;
}
.commonBT:after {
  content: "›";
  font-size: 1.6em;
  line-height: 1;
  margin-top: -0.125em;
  transition: all 0.2s ease 0s;
  position: absolute;
  right: 0.75em;
  top: 50%;
  translate: 0 -50%;
}
.commonBT:after:hover {
  text-decoration: none;
}
.commonBT--toggle:after {
  rotate: 90deg;
  translate: 0 -40%;
}
.commonBT--toggle.active:after {
  rotate: -90deg;
  translate: -50% -40%;
}

.layout-column2 {
  display: flex;
  gap: 2.5rem 2.5rem;
}
@media all and (min-width: 741px) {
  .layout-column2.reverse {
    flex-direction: row-reverse;
  }
}
.layout-column2__img {
  flex: 1;
  flex-shrink: 0;
}
.layout-column2__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
  flex-shrink: 0;
}
@media all and (max-width: 740px) {
  .layout-column2 {
    flex-direction: column;
    gap: 2.5rem;
  }
}

.toModalContent {
  display: none;
}

.modal {
  position: fixed;
  inset: 0;
  padding: 6.25rem 2.5rem;
  background-color: rgba(255, 255, 255, 0.5);
  z-index: 9999;
  display: none;
  backdrop-filter: blur(0.05rem);
  -webkit-backdrop-filter: blur(0.05rem);
}
@media all and (max-width: 740px) {
  .modal {
    padding: 6.25rem 1.875rem;
  }
}
.modal__wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
}
.modal__inner {
  position: relative;
  width: 100%;
  max-width: 37.5rem;
  height: auto;
  max-height: calc(100% - 7.5rem);
  min-height: 18.75rem;
  margin: auto;
  display: flex;
  flex-direction: column;
}
@media all and (max-width: 740px) {
  .modal__inner {
    max-height: calc(100% - 6.25rem);
    top: -1.875rem;
    padding: 0 1.875rem;
  }
}
.modal__content {
  background: #fff;
  border-radius: 1.25rem;
  border: 0.0625rem solid #7fbf42;
  width: 100%;
  overflow: auto;
  flex: 1;
  overscroll-behavior: contain;
  pointer-events: auto;
  max-height: 100%;
}
.modal__close {
  position: absolute;
  top: 0.625rem;
  right: 0.625rem;
  border-radius: 50%;
  width: 2.625rem;
  aspect-ratio: 1/1;
  cursor: pointer;
}
@media all and (max-width: 740px) {
  .modal__close {
    right: 2.5rem;
  }
}
.modal__close:before, .modal__close:after {
  content: "";
  position: absolute;
  width: 50%;
  height: 0.0625rem;
  background-color: #7fbf42;
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
}
.modal__close:before {
  rotate: -45deg;
}
.modal__close:after {
  rotate: 45deg;
}
.modal__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 1.875rem;
  aspect-ratio: 1/1;
  z-index: 1;
  cursor: pointer;
  background-image: url("../images/common/slide-arrow.webp");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 40%;
}
@media all and (max-width: 740px) {
  .modal__arrow {
    width: 1.875rem;
  }
}
.modal__arrow--prev {
  left: 0.625rem;
}
@media all and (max-width: 740px) {
  .modal__arrow--prev {
    left: 2.5rem;
  }
}
.modal__arrow--next {
  right: 0.625rem;
  scale: -1 1;
}
@media all and (max-width: 740px) {
  .modal__arrow--next {
    right: 2.5rem;
  }
}

.top-fv {
  width: 100%;
  position: relative;
  z-index: 0;
  will-change: auto;
  backface-visibility: unset;
  transition: all 0.35s ease 0s;
  overflow: hidden;
}
.top-fv.hide {
  opacity: 0;
  visibility: hidden;
}
.top-fv.hide .top-fv__movie {
  opacity: 0;
  visibility: hidden;
}
.top-fv__movie {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  transition: all 0.35s ease 0s;
}
.top-fv__movie:before {
  content: "";
  background-color: #7fbf42;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.3;
}
.top-fv__movie video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.top-fv__content {
  position: relative;
  z-index: 5;
  color: #fff;
}
.top-fv__content__main {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.top-fv__content__main.onAnim .top-fv__scroll1 {
  opacity: 1;
}
.top-fv__content__main.onAnim .top-shorttime {
  opacity: 1;
}
@media all and (min-width: 741px) {
  .top-fv__content__main {
    min-height: calc(100vh - 6.25rem);
    height: 580px;
  }
}
@media all and (min-width: 741px) and (max-width: 1080px) {
  .top-fv__content__main {
    min-height: calc(100vh - 3.75rem);
  }
}
@media all and (max-width: 740px) {
  .top-fv__content__main {
    gap: 2.5rem;
    flex-direction: column;
    padding-top: 7.5rem;
  }
}
.top-fv__content__main .lead {
  font-size: 2rem;
}
@media all and (max-width: 740px) {
  .top-fv__content__main .lead {
    font-size: 1.25rem;
  }
}
.top-fv__content__main .top-shorttime {
  display: flex;
  position: absolute;
  right: 0;
  top: 1.25rem;
  align-items: center;
  transition: all 1s ease;
  opacity: 0;
  line-height: 1.4;
  padding: 0.75em 0 0.75em 1.5em;
  font-size: 0.875rem;
}
@media all and (max-width: 740px) {
  .top-fv__content__main .top-shorttime {
    font-size: 0.75rem;
  }
}
.top-fv__content__main .top-shorttime:before {
  content: "";
  width: 400%;
  position: absolute;
  left: 0;
  height: 100%;
  top: 0;
  background-color: #fff200;
  border-radius: 3em 0 0 3em;
}
@media (hover: none) {
  .top-fv__content__main .top-shorttime {
    transition: none !important;
  }
}
@media (hover: hover) {
  .top-fv__content__main .top-shorttime:hover {
    filter: brightness(1.2);
    text-decoration: none;
  }
}
.top-fv__content__main .top-shorttime:active {
  filter: brightness(1.2);
  text-decoration: none;
}
.top-fv__content__main .top-shorttime .text {
  display: flex;
  position: relative;
  z-index: 5;
  gap: 0.5em;
}
.top-fv__content__main .top-shorttime .text:after {
  content: "›";
  font-size: 2em;
  line-height: 1;
  margin-top: -0.225em;
  transition: all 0.2s ease 0s;
}
.top-fv__content__main .top-shorttime .text:after:hover {
  text-decoration: none;
}
.top-fv__content__sub {
  padding: 2.5rem 0 5rem;
}
.top-fv__content__sub .text {
  font-size: 1.125rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.6em;
  line-height: 1.9;
  text-align: center;
}
@media all and (max-width: 740px) {
  .top-fv__content__sub .text {
    font-size: 1rem;
  }
}
.top-fv__scroll1 {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: #fff200;
  position: absolute;
  bottom: 0.125rem;
  left: 50%;
  translate: -50% 0;
  font-size: 0.875rem;
  font-weight: 600;
  transition: all 1s ease 1s;
  opacity: 0;
}
@media all and (max-width: 740px) {
  .top-fv__scroll1 {
    position: relative;
    bottom: 0;
    left: 0;
    translate: 0;
    font-size: 0.6875rem;
  }
}
.top-fv__scroll1 .text {
  width: 5.125rem;
  height: 5rem;
  position: relative;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url(../images/top/fv_scroll.webp);
}
@media all and (max-width: 740px) {
  .top-fv__scroll1 .text {
    width: 3.75rem;
    height: 3.75rem;
  }
}
.top-fv__scroll1 .text > span {
  display: block;
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  width: 100%;
  left: 0;
}
.top-fv__scroll1 .arrow {
  height: 7.6875rem;
  background-color: #fff200;
  width: 0.125rem;
}
@media all and (max-width: 740px) {
  .top-fv__scroll1 .arrow {
    height: 5rem;
  }
}
.top-fv__scroll1 .arrow:after {
  content: "";
  width: 0.625rem;
  height: 0.625rem;
  border: 0.125rem solid transparent;
  border-left-color: #fff200;
  border-bottom-color: #fff200;
  position: absolute;
  bottom: -0.125rem;
  left: 50%;
  translate: -50% -20%;
  rotate: -45deg;
}
.top-fv__scroll2 {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: #fff200;
  margin: 3.125rem auto 0;
}
.top-fv__scroll2 .arrow {
  height: 7.6875rem;
  background-color: #fff200;
  width: 0.125rem;
}
@media all and (max-width: 740px) {
  .top-fv__scroll2 .arrow {
    height: 5rem;
  }
}
.top-fv__scroll2 .arrow:after {
  content: "";
  width: 0.625rem;
  height: 0.625rem;
  border: 0.125rem solid transparent;
  border-left-color: #fff200;
  border-bottom-color: #fff200;
  position: absolute;
  bottom: -0.125rem;
  left: 50%;
  translate: -50% -20%;
  rotate: -45deg;
}

.top-gallery {
  position: relative;
}
.top-gallery:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 80%;
  bottom: -5%;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 50%);
}

.top-wrap1 {
  padding-top: 8.125rem;
  background-color: #fff;
  z-index: 3;
  position: relative;
}
.top-wrap1:after {
  content: "";
  bottom: -0.1875rem;
  width: 100%;
  height: 2.125rem;
  position: absolute;
  left: 0;
  background-color: #7fbf42;
}
@media all and (max-width: 740px) {
  .top-wrap1:after {
    height: 4.375rem;
  }
}
@media all and (max-width: 740px) {
  .top-wrap1 {
    padding-top: 3.125rem;
  }
}

.top-news__wrapper {
  display: flex;
}
@media all and (max-width: 740px) {
  .top-news__wrapper {
    flex-direction: column;
    align-items: center;
  }
}
.top-news__header {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 1.875rem 0 0;
}
@media all and (max-width: 740px) {
  .top-news__header {
    display: contents;
  }
}
@media all and (max-width: 740px) {
  .top-news__header .btWrap {
    margin-top: 1.875rem;
    order: 5;
  }
}
.top-news__content {
  flex: 2;
}
.top-news__list li {
  padding: 0.75em 0;
  border-top: 0.0625rem solid #000;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5em 1em;
}
.top-news__list li:last-child {
  border-bottom: 0.0625rem solid #000;
}
.top-news__list li .title {
  width: 100%;
  font-weight: 400;
}
.top-news__list li .category {
  font-size: 0.75rem;
  color: #fff;
  padding: 0.3em 1.5em;
  border-radius: 4em;
  background-color: #7fbf42;
  line-height: 1;
}
.top-news__list li .category.internship {
  background-color: #c2d82d;
}
.top-news__list li .category.other {
  background-color: #fff200;
  color: #000;
}

.top-lead {
  padding-top: 5rem;
}
.top-lead__box {
  position: relative;
}
.top-lead__box .img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.top-lead__box .img img {
  width: 100%;
  height: 100%;
}
.top-lead__box .content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 5;
  padding: 5.625rem 1.875rem;
}
@media all and (max-width: 740px) {
  .top-lead__box .content {
    padding: 1.875rem 1.25rem;
  }
}
.top-lead__box .heading {
  font-size: 1.625rem;
  color: #7fbf42;
  text-align: center;
  font-weight: 500;
}
@media all and (max-width: 740px) {
  .top-lead__box .heading {
    font-size: 0.875rem;
  }
}
.top-lead__box .btWrap {
  max-width: 20.625rem;
  width: 100%;
}
@media all and (max-width: 740px) {
  .top-lead__box .btWrap {
    max-width: 13.75rem;
  }
}
.top-lead__box .commonBT {
  width: 100%;
  line-height: 1;
  padding-top: 0.8em;
}

.top-people {
  overflow: hidden;
  position: relative;
  z-index: 3;
}
.top-people__heading {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.top-people__heading .main {
  font-size: 3.75rem;
  color: #7fbf42;
  line-height: 1;
  letter-spacing: 0.1em;
  font-weight: bold;
  margin-bottom: 0.2em;
}
@media all and (max-width: 740px) {
  .top-people__heading .main {
    font-size: 2.25rem;
  }
}
.top-people__heading .sub {
  font-size: 0.875rem;
}
.top-people .btWrap {
  display: flex;
  justify-content: flex-end;
  max-width: 62.5rem;
  margin: 0 auto;
  margin-bottom: 2.5rem;
}
.top-people__slide {
  max-width: 42.375rem;
  margin: 0 auto;
  overflow: visible;
}
.top-people__slide .swiper-wrapper {
  overflow: visible;
}
.top-people__slide .swiper-slide a {
  display: block;
  transition: opacity 0.3s ease 0s;
  overflow: hidden;
  border-radius: 0.625rem;
  position: relative;
}
@media (hover: none) {
  .top-people__slide .swiper-slide a {
    transition: none !important;
  }
}
@media (hover: hover) {
  .top-people__slide .swiper-slide a:hover {
    opacity: 0.8;
    text-decoration: none;
  }
}
.top-people__slide .swiper-slide a:active {
  opacity: 0.8;
  text-decoration: none;
}
.top-people__slide .swiper-slide .img {
  position: relative;
  aspect-ratio: 21/27;
}
.top-people__slide .swiper-slide .img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.top-people__slide .swiper-slide .content {
  position: absolute;
  z-index: 5;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 0.5em 0.8em;
  color: #fff;
  background-color: rgba(69, 142, 0, 0.7);
  display: flex;
  flex-direction: column;
}
@media all and (max-width: 740px) {
  .top-people__slide .swiper-slide .content {
    font-size: 0.75rem;
  }
}
.top-people__slide .swiper-slide .content .name {
  font-weight: 600;
}
.top-people__slide .swiper-slide .content .join {
  font-size: 0.875em;
}
.top-people__slide__prev {
  width: 2.375rem;
  height: auto;
  padding: 0;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-color: #7fbf42;
  color: #fff;
  left: auto;
  right: -3.125rem;
  scale: -1 1;
}
.top-people__slide__prev::after {
  color: #fff;
  font-size: 0.875rem;
}
@media all and (max-width: 800px) {
  .top-people__slide__prev {
    right: -0.625rem;
  }
}
@media all and (max-width: 740px) {
  .top-people__slide__prev {
    width: 1.5rem;
  }
  .top-people__slide__prev:after {
    font-size: 0.625rem;
  }
}
.top-people__slide__next {
  width: 2.375rem;
  height: auto;
  padding: 0;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-color: #7fbf42;
  color: #fff;
  right: auto;
  left: -3.125rem;
  scale: -1 1;
}
.top-people__slide__next::after {
  color: #fff;
  font-size: 0.875rem;
}
@media all and (max-width: 800px) {
  .top-people__slide__next {
    left: -0.625rem;
  }
}
@media all and (max-width: 740px) {
  .top-people__slide__next {
    width: 1.5rem;
  }
  .top-people__slide__next:after {
    font-size: 0.625rem;
  }
}

.top-wrap2 {
  padding: 7.5rem 0 7.5rem;
  background-color: #7fbf42;
}
@media all and (max-width: 740px) {
  .top-wrap2 {
    padding: 5.625rem 0;
  }
}

.top-workplace {
  padding: 5.625rem 1.875rem;
  background-color: #fff;
  border-radius: 1.875rem;
}
@media all and (max-width: 740px) {
  .top-workplace {
    padding: 3.125rem 1.25rem;
  }
}
.top-workplace__heading {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.top-workplace__heading .main {
  font-size: 3.75rem;
  color: #7fbf42;
  line-height: 1;
  letter-spacing: 0.1em;
  font-weight: bold;
  margin-bottom: 0.2em;
}
@media all and (max-width: 740px) {
  .top-workplace__heading .main {
    font-size: 2.25rem;
  }
}
.top-workplace__heading .sub {
  font-size: 0.875rem;
}
.top-workplace__list {
  max-width: 40rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.375rem;
}
@media all and (max-width: 740px) {
  .top-workplace__list {
    max-width: 17.5rem;
    grid-template-columns: 1fr;
  }
}
.top-workplace__list a {
  transition: opacity 0.3s ease 0s;
}
@media (hover: none) {
  .top-workplace__list a {
    transition: none !important;
  }
}
@media (hover: hover) {
  .top-workplace__list a:hover {
    opacity: 0.8;
    text-decoration: none;
  }
}
.top-workplace__list a:active {
  opacity: 0.8;
  text-decoration: none;
}
.top-workplace__list .content {
  color: #fff;
  background-color: #7fbf42;
  padding: 1em;
}
.top-workplace__list .img {
  aspect-ratio: 31/22;
}
@media all and (max-width: 740px) {
  .top-workplace__list .img {
    aspect-ratio: 18/10;
  }
}
.top-workplace__list .img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.top-workplace__list .heading {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.3em;
}

.top-recruit__heading {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 3.75rem;
  color: #fff;
  line-height: 1;
  letter-spacing: 0.1em;
  font-weight: bold;
}
@media all and (max-width: 740px) {
  .top-recruit__heading {
    font-size: 2.25rem;
  }
}
.top-recruit__nav {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
@media all and (max-width: 740px) {
  .top-recruit__nav {
    grid-template-columns: repeat(2, 1fr);
  }
}
.top-recruit__nav li a {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex-direction: column;
  position: relative;
  aspect-ratio: 1/1;
  color: #7fbf42;
  transition: opacity 0.3s ease 0s;
}
@media (hover: none) {
  .top-recruit__nav li a {
    transition: none !important;
  }
}
@media (hover: hover) {
  .top-recruit__nav li a:hover {
    opacity: 0.8;
    text-decoration: none;
  }
}
.top-recruit__nav li a:active {
  opacity: 0.8;
  text-decoration: none;
}
.top-recruit__nav li .bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.top-recruit__nav li .bg img {
  object-fit: contain;
  width: 100%;
  height: 100%;
}
.top-recruit__nav li .icon {
  position: relative;
  z-index: 5;
  margin-bottom: 0.625rem;
}
@media all and (max-width: 740px) {
  .top-recruit__nav li .icon {
    width: 50%;
  }
}
.top-recruit__nav li .title {
  position: relative;
  z-index: 5;
  line-height: 1.2;
  min-height: 2.4em;
  display: flex;
  justify-content: center;
  align-items: center;
}

.top-message {
  max-width: 38.125rem;
  margin: 0 auto;
}
.top-message__link {
  display: block;
  flex: 1;
  position: relative;
  padding-left: 0.875rem;
  transition: all 0.2s ease 0s;
}
.top-message__link:hover {
  text-decoration: none;
}
@media (hover: none) {
  .top-message__link {
    transition: none !important;
  }
}
@media (hover: hover) {
  .top-message__link:hover {
    opacity: 0.7;
  }
}
.top-message__link:active {
  opacity: 0.7;
}
.top-message__link .content {
  position: absolute;
  left: 0;
  top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.3125rem;
  align-items: flex-start;
  line-height: 1;
  z-index: 5;
}
.top-message__link .content .main {
  font-weight: bold;
  font-size: 1.875rem;
  padding: 0.4rem 0.6rem 0.35rem;
  background-color: #fff;
  color: #7fbf42;
}
@media all and (max-width: 740px) {
  .top-message__link .content .main {
    font-size: 1.375rem;
  }
}
.top-message__link .content .sub {
  font-weight: bold;
  font-size: 0.75rem;
  padding: 0.4rem 0.6rem 0.35rem;
  background-color: #fff;
  color: #7fbf42;
  display: flex;
  align-items: center;
  gap: 0.5em;
}
@media all and (max-width: 740px) {
  .top-message__link .content .sub {
    font-size: 0.625rem;
  }
}
.top-message__link .content .sub .arrow {
  height: 0.0625rem;
  width: 2em;
  position: relative;
  background-color: #7fbf42;
  margin-top: 0.3em;
}
.top-message__link .content .sub .arrow:after {
  content: "";
  width: 0.125rem;
  height: 0.3125rem;
  background-color: #7fbf42;
  position: absolute;
  right: 0;
  bottom: 0;
  transform-origin: left bottom;
  transform: skew(50deg) translateX(90%);
}
.top-message__img {
  aspect-ratio: 60/22;
  overflow: hidden;
  border-radius: 0.625rem;
  display: block;
  width: 100%;
}
.top-message__img img {
  object-fit: cover;
  height: 100%;
  width: 100%;
}

.pageHeader {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex-direction: column;
  height: 11.25rem;
  color: #7fbf42;
  font-size: 2.5rem;
  font-weight: 500;
  background-size: cover;
  background-position: center center;
  background-image: url(../images/common/pageheader_bg.webp);
  border-bottom: 0.0625rem solid #e1e1e1;
}
@media all and (max-width: 740px) {
  .pageHeader {
    font-size: 1.5rem;
    height: 6.25rem;
  }
}
@media all and (max-width: 740px) and (max-width: 740px) {
  .pageHeader {
    background-image: url(../images/common/pageheader_bg-sp.webp);
  }
}
.pageHeader__area {
  font-size: 1.25rem;
}
@media all and (max-width: 740px) {
  .pageHeader__area {
    font-size: 0.875rem;
  }
}
.pageHeader__vacancy {
  width: 5.625rem;
  aspect-ratio: 90/78;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: absolute;
  top: 0;
  right: calc(50% + 16.25rem);
  font-size: 1rem;
  line-height: 1.2;
  padding-bottom: 0.6em;
}
.pageHeader__vacancy:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff200;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 50% 80%, 0 100%);
}
.pageHeader__vacancy span {
  position: relative;
  z-index: 5;
  color: #000;
}

.bread-crumb {
  font-size: 0.875rem;
  line-height: 1.4;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  padding-top: 0.625rem;
  gap: 0.5em 0;
}
.bread-crumb--white {
  color: #fff;
}
.bread-crumb--white a {
  color: #fff;
}
@media all and (max-width: 740px) {
  .bread-crumb {
    font-size: 0.75rem;
  }
}
.bread-crumb li {
  display: flex;
  align-items: center;
}
.bread-crumb .arrow {
  margin: 0 0.3em;
}

.common-gallery {
  display: flex;
  width: 100%;
  position: relative;
  z-index: 5;
}
.common-gallery .swiper {
  width: 100%;
}
.common-gallery .swiper-wrapper {
  transition-timing-function: linear !important;
}
@media all and (max-width: 740px) {
  .common-gallery .swiper-wrapper {
    scale: 0.7;
  }
}
.common-gallery .swiper-slide {
  width: auto !important;
  flex-shrink: 0;
  height: auto;
}
.common-gallery .swiper-slide:nth-child(2n) {
  margin-top: 4.375rem;
}
.common-gallery .swiper-slide img {
  height: auto;
  display: block;
}

.column2Nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.625rem;
}
@media all and (max-width: 740px) {
  .column2Nav {
    grid-template-columns: 1fr;
    max-width: 22.5rem;
    margin-left: auto;
    margin-right: auto;
  }
}
.column2Nav a {
  position: relative;
  display: block;
  transition: opacity 0.3s ease 0s;
}
@media (hover: none) {
  .column2Nav a {
    transition: none !important;
  }
}
@media (hover: hover) {
  .column2Nav a:hover {
    opacity: 0.8;
    text-decoration: none;
  }
}
.column2Nav a:active {
  opacity: 0.8;
  text-decoration: none;
}
.column2Nav .text {
  position: absolute;
  bottom: 0.625rem;
  right: -0.375rem;
  color: #fff;
  font-size: 1.125rem;
  font-weight: 600;
  background-color: #7fbf42;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 0.5em;
  padding: 0.3em 1em;
}
@media all and (max-width: 740px) {
  .column2Nav .text {
    font-size: 1rem;
  }
}
.column2Nav .arrow {
  height: 0.0625rem;
  width: 1.5em;
  position: relative;
  background-color: #fff;
  margin-top: 0.3em;
}
.column2Nav .arrow:after {
  content: "";
  width: 0.125rem;
  height: 0.3125rem;
  background-color: #fff;
  position: absolute;
  right: 0;
  bottom: 0;
  transform-origin: left bottom;
  transform: skew(50deg) translateX(90%);
}
.column2Nav .img {
  border-radius: 0.625rem;
  overflow: hidden;
}
.column2Nav .img img {
  width: 100%;
}

.common-table {
  width: 100%;
  font-size: 0.875rem;
}
@media all and (max-width: 740px) {
  .common-table tr {
    display: block;
  }
  .common-table tr:last-child {
    border-bottom: 0.0625rem solid #000;
  }
}
.common-table th,
.common-table td {
  border: 0.0625rem solid #000;
}
@media all and (max-width: 740px) {
  .common-table th,
  .common-table td {
    display: block;
  }
}
.common-table th {
  padding: 1.5em;
  background-color: #e2e2e2;
  text-align: left;
  font-weight: bold;
  width: 11.25rem;
}
@media all and (max-width: 740px) {
  .common-table th {
    width: 100%;
    padding: 1em 1.5em;
  }
}
.common-table td {
  padding: 1.5em 2em;
}
@media all and (max-width: 740px) {
  .common-table td {
    border-top: 0;
    border-bottom: 0;
    padding: 1em 1.5em;
  }
}

.shorttime-header {
  position: relative;
  overflow: hidden;
  min-height: 426px;
  margin-bottom: 2.5rem;
}
@media all and (max-width: 740px) {
  .shorttime-header {
    min-height: 18rem;
  }
}
.shorttime-header__img {
  width: 100%;
  position: absolute;
  top: 0;
  left: 50%;
  translate: -50% 0;
}
@media all and (min-width: 741px) {
  .shorttime-header__img {
    width: 1400px;
    max-width: 1400px;
  }
}
.shorttime-header__img img {
  width: 100%;
}
.shorttime-header__heading {
  display: flex;
  position: relative;
  z-index: 5;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: #7fbf42;
  padding-top: 11rem;
  font-weight: 600;
}
@media all and (max-width: 740px) {
  .shorttime-header__heading {
    padding-top: 8.75rem;
  }
}
.shorttime-header__heading .main {
  font-size: 2.125rem;
  margin-bottom: 0.65em;
}
@media all and (max-width: 740px) {
  .shorttime-header__heading .main {
    font-size: 1.375rem;
  }
}
.shorttime-header__heading .sub {
  font-size: 1.125rem;
}
@media all and (max-width: 740px) {
  .shorttime-header__heading .sub {
    font-size: 0.875rem;
  }
}

.shorttime-about {
  max-width: 1280px;
  margin: 0 auto 4.375rem;
  height: 28.875rem;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media all and (max-width: 740px) {
  .shorttime-about {
    height: 33.75rem;
    margin-bottom: -7.5rem;
  }
}
.shorttime-about .inner,
.shorttime-about .inner-box {
  width: 100%;
}
.shorttime-about .inner-box {
  display: flex;
}
.shorttime-about__content {
  position: relative;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  padding: 4.375rem 0;
  color: #fff;
}
@media all and (max-width: 740px) {
  .shorttime-about__content {
    max-width: 16.25rem;
    padding: 2.5rem 0;
  }
}
.shorttime-about__content > * {
  position: relative;
  z-index: 5;
}
.shorttime-about__content:before {
  content: "";
  position: absolute;
  top: 0;
  right: -20%;
  height: 100%;
  width: 400%;
  background-color: #7fbf42;
  border-radius: 0 12.5rem 12.5rem 0;
  will-change: transform;
}
.shorttime-about__heading {
  font-weight: 600;
  font-size: 1.5rem;
  border-bottom: 0.125rem solid #fff200;
}
@media all and (max-width: 740px) {
  .shorttime-about__heading {
    font-size: 1.125rem;
  }
}
.shorttime-about__img {
  position: absolute;
  right: 0;
  top: 0;
}
.shorttime-about__img img {
  height: 28.875rem;
  width: auto;
  max-width: 300%;
}
@media all and (max-width: 740px) {
  .shorttime-about__img img {
    height: 17.5rem;
    height: auto;
    width: 100%;
  }
}

.shorttime-feature {
  max-width: 36.25rem;
  margin: 0 auto 2.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.25rem;
}
@media all and (max-width: 740px) {
  .shorttime-feature {
    gap: 0.625rem;
  }
}
.shorttime-feature li {
  position: relative;
}
.shorttime-feature li img {
  width: 100%;
}
.shorttime-feature li .text {
  position: absolute;
  z-index: 5;
  text-align: center;
  width: 100%;
  color: #fff;
  font-weight: 500;
  font-size: 1.25rem;
  left: 0;
  top: 50%;
  translate: 0 -50%;
}
@media all and (max-width: 740px) {
  .shorttime-feature li .text {
    font-size: 0.875rem;
  }
}

.shorttime-cvLead {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.125rem;
  font-weight: 500;
  text-align: center;
  gap: 1em;
}
@media all and (max-width: 740px) {
  .shorttime-cvLead {
    font-size: 1rem;
  }
}
.shorttime-cvLead:before, .shorttime-cvLead:after {
  content: "";
  height: 1.4em;
  width: 0.125rem;
  background-color: #000;
  rotate: -15deg;
}
@media all and (max-width: 740px) {
  .shorttime-cvLead:before, .shorttime-cvLead:after {
    height: 2.4em;
  }
}
.shorttime-cvLead:after {
  rotate: 15deg;
}

.shorttime-cv .commonBT {
  width: 100%;
  max-width: 37.5rem;
}

.shorttime-aboutLink {
  position: relative;
}
.shorttime-aboutLink .img {
  position: absolute;
  width: 100%;
  height: 100%;
}
.shorttime-aboutLink .img img {
  width: 100%;
  height: 100%;
}
.shorttime-aboutLink .content {
  min-height: 13.125rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.shorttime-recommend {
  max-width: 790px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  gap: 1.875rem;
}
.shorttime-recommend__item:nth-child(2n) .content {
  margin-left: auto;
}
.shorttime-recommend__item:nth-child(2n) .img {
  margin-left: 0;
}
@media all and (max-width: 740px) {
  .shorttime-recommend__item:nth-child(2n) .img {
    border-radius: 0 1.25rem 1.25rem 0;
    left: -3.125rem;
  }
}
.shorttime-recommend__item .content {
  max-width: 23.75rem;
  border-radius: 1.25rem;
  background-color: #fff;
  position: relative;
  z-index: 5;
  padding: 1.25rem 1.25rem 2rem;
}
@media all and (max-width: 740px) {
  .shorttime-recommend__item .content {
    max-width: 18.75rem;
  }
}
.shorttime-recommend__item .content:after {
  content: "";
  height: 0.1875rem;
  width: 100%;
  display: block;
  background-color: #7fbf42;
  margin-top: 2.5rem;
}
@media all and (max-width: 740px) {
  .shorttime-recommend__item .content:after {
    margin-top: 1.25rem;
    height: 0.125rem;
  }
}
.shorttime-recommend__item .num {
  display: flex;
  align-items: flex-start;
  color: #7fbf42;
  font-weight: 600;
  font-size: 5rem;
  line-height: 0.8;
  gap: 0.1em;
}
@media all and (max-width: 740px) {
  .shorttime-recommend__item .num {
    font-size: 3.25rem;
  }
}
.shorttime-recommend__item .num span {
  flex-shrink: 0;
}
.shorttime-recommend__item .num:after {
  content: "";
  flex: 1;
  height: 0.1875rem;
  background-color: #7fbf42;
  margin-top: 0.3em;
}
@media all and (max-width: 740px) {
  .shorttime-recommend__item .num:after {
    height: 0.125rem;
  }
}
.shorttime-recommend__item .heading {
  text-align: center;
  font-weight: 600;
  color: #7fbf42;
  font-size: 1.375rem;
  line-height: 1.4;
  margin-bottom: 0.75em;
}
@media all and (max-width: 740px) {
  .shorttime-recommend__item .heading {
    font-size: 1.125rem;
  }
}
.shorttime-recommend__item .text {
  max-width: 18.375rem;
  margin: 0 auto;
  font-size: 0.875rem;
}
@media all and (max-width: 740px) {
  .shorttime-recommend__item .text {
    font-size: 0.75rem;
    padding: 0 1em;
  }
}
.shorttime-recommend__item .img {
  margin-left: auto;
  width: 38.125rem;
  overflow: hidden;
  border-radius: 1.25rem;
  margin-top: -15rem;
  position: relative;
}
.shorttime-recommend__item .img img {
  width: 100%;
}
@media all and (max-width: 740px) {
  .shorttime-recommend__item .img {
    border-radius: 1.25rem 0 0 1.25rem;
    width: 23.75rem;
    margin-top: -3.125rem;
    left: 3.125rem;
  }
}

.shorttime-interview {
  position: relative;
  display: block;
  transition: opacity 0.3s ease 0s;
}
@media (hover: none) {
  .shorttime-interview {
    transition: none !important;
  }
}
@media (hover: hover) {
  .shorttime-interview:hover {
    opacity: 0.8;
    text-decoration: none;
  }
}
.shorttime-interview:active {
  opacity: 0.8;
  text-decoration: none;
}
.shorttime-interview .img {
  border-radius: 0.625rem;
  overflow: hidden;
}
.shorttime-interview .content {
  position: absolute;
  z-index: 5;
  top: 1.25rem;
  left: 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media all and (max-width: 740px) {
  .shorttime-interview .content {
    top: 0.9375rem;
    left: 0.9375rem;
  }
}
.shorttime-interview .content .main1 {
  font-weight: 600;
  color: #fff;
  line-height: 1;
  padding: 0.3rem 0.75rem;
  background-color: #7fbf42;
  font-size: 2.0625rem;
  letter-spacing: 0.1em;
  margin-bottom: 0.375rem;
}
@media all and (max-width: 740px) {
  .shorttime-interview .content .main1 {
    font-size: 1.5rem;
  }
}
.shorttime-interview .content .main2 {
  font-weight: 600;
  color: #fff;
  display: flex;
  align-items: center;
  padding: 0.3rem 0.75rem;
  background-color: #7fbf42;
  font-size: 0.875rem;
  gap: 1em;
  margin-bottom: 1.25rem;
}
@media all and (max-width: 740px) {
  .shorttime-interview .content .main2 {
    font-size: 0.625rem;
    margin-bottom: 0.625rem;
  }
}
.shorttime-interview .content .main2 .arrow {
  height: 0.0625rem;
  width: 2em;
  position: relative;
  background-color: #fff;
  margin-top: 0.3em;
}
.shorttime-interview .content .main2 .arrow:after {
  content: "";
  width: 0.125rem;
  height: 0.3125rem;
  background-color: #fff;
  position: absolute;
  right: 0;
  bottom: 0;
  transform-origin: left bottom;
  transform: skew(50deg) translateX(90%);
}
@media all and (max-width: 740px) {
  .shorttime-interview .text {
    font-size: 0.625rem;
  }
}

.about-box {
  background-color: #fff;
  border-radius: 1.875rem;
  padding: 3.75rem 3.75rem 7.5rem;
}
@media all and (max-width: 740px) {
  .about-box {
    border-radius: 1.25rem;
    padding: 2.5rem 1.25rem 5rem;
  }
}

.about-commonBT {
  max-width: 28.125rem;
  font-size: 1.125rem;
}
@media all and (max-width: 740px) {
  .about-commonBT {
    text-align: center;
    font-size: 1rem;
  }
}

.about-list1 {
  display: flex;
  flex-direction: column;
  gap: 3.125rem;
}
@media all and (max-width: 740px) {
  .about-list1 {
    max-width: 18.75rem;
    margin-left: auto;
    margin-right: auto;
  }
}
.about-list1__item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
@media all and (max-width: 740px) {
  .about-list1__item {
    flex-direction: column-reverse;
    align-items: center;
    position: relative;
  }
}
@media all and (min-width: 741px) {
  .about-list1__item .content {
    width: 50%;
  }
}
@media all and (max-width: 740px) {
  .about-list1__item .content {
    text-align: center;
  }
}
@media all and (min-width: 741px) {
  .about-list1__item .img {
    width: 47%;
  }
}
@media all and (max-width: 740px) {
  .about-list1__item .img {
    margin-bottom: 1.875rem;
  }
}
@media all and (max-width: 740px) {
  .about-list1__item .img.img1 {
    width: 75%;
    margin-top: 1.25rem;
  }
}
@media all and (max-width: 740px) {
  .about-list1__item .img.img2 {
    width: 55%;
    margin-left: 1.25rem;
  }
}
.about-list1__item .img.img3 {
  margin-top: 3.75rem;
}
@media all and (max-width: 740px) {
  .about-list1__item .img.img3 {
    width: 80%;
    margin-top: 5rem;
  }
}
.about-list1__item .num {
  position: relative;
  width: 8.125rem;
  margin-bottom: 1.25rem;
}
@media all and (max-width: 740px) {
  .about-list1__item .num {
    width: 5.625rem;
    position: absolute;
    top: 0;
    left: -1.25rem;
  }
}
.about-list1__item .num__text {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: #fff;
  position: absolute;
  z-index: 5;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  font-weight: 600;
  line-height: 1.2;
}
@media all and (max-width: 740px) {
  .about-list1__item .num__text {
    font-size: 0.875rem;
  }
}
.about-list1__item .num__text strong {
  font-size: 3rem;
}
@media all and (max-width: 740px) {
  .about-list1__item .num__text strong {
    font-size: 2.25rem;
  }
}
.about-list1__item .heading {
  color: #7fbf42;
  font-weight: 500;
  font-size: 1.5rem;
  margin-bottom: 1em;
}
@media all and (max-width: 740px) {
  .about-list1__item .heading {
    font-size: 1.125rem;
  }
}
@media all and (max-width: 740px) {
  .about-list1__item .text {
    font-size: 0.8125rem;
  }
}

.about-list2Heading {
  font-size: 1.375rem;
  text-align: center;
  font-weight: 600;
  display: flex;
  color: #7fbf42;
  align-items: center;
  max-width: 39.375rem;
  margin-left: auto;
  margin-right: auto;
}
@media all and (max-width: 740px) {
  .about-list2Heading {
    font-size: 1.125rem;
  }
}
.about-list2Heading .text {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 0.5em;
  justify-content: space-between;
}
.about-list2Heading .text:before, .about-list2Heading .text:after {
  content: "";
  width: 0.125rem;
  background-color: #7fbf42;
  height: 1.25em;
}
.about-list2Heading .text:before {
  transform: skew(10deg);
}
.about-list2Heading .text:after {
  transform: skew(-10deg);
}
.about-list2Heading:before, .about-list2Heading:after {
  content: "";
  height: 0.125rem;
  background-color: #7fbf42;
  flex: 1;
}

.about-list2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem 3.125rem;
  max-width: 39.375rem;
  margin-left: auto;
  margin-right: auto;
}
@media all and (max-width: 740px) {
  .about-list2 {
    gap: 3.125rem 1.25rem;
  }
}
.about-list2__item .num {
  position: absolute;
  width: 6.625rem;
  z-index: 4;
  top: -1.875rem;
  left: -1.875rem;
}
@media all and (max-width: 740px) {
  .about-list2__item .num {
    width: 4.375rem;
    top: -1.25rem;
    left: -0.625rem;
  }
}
.about-list2__item .num__text {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: #fff;
  position: absolute;
  z-index: 5;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  font-weight: 600;
  line-height: 1.2;
}
@media all and (max-width: 740px) {
  .about-list2__item .num__text {
    font-size: 0.75rem;
  }
}
.about-list2__item .num__text strong {
  font-size: 2.375rem;
}
@media all and (max-width: 740px) {
  .about-list2__item .num__text strong {
    font-size: 1.5rem;
  }
}
.about-list2__item .heading {
  font-weight: 500;
  text-align: center;
  margin: 1em 0;
}
@media all and (max-width: 740px) {
  .about-list2__item .heading {
    font-size: 0.75rem;
  }
}
.about-list2__item .btWrap {
  max-width: 13.75rem;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}
.about-list2__item .btWrap .commonBT {
  padding-left: 1.875rem;
  padding-right: 1.875rem;
  font-weight: 500;
}
@media all and (max-width: 740px) {
  .about-list2__item .btWrap .commonBT {
    min-width: 100%;
    font-size: 0.625rem;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}

.about-flowLink {
  display: block;
  margin: 0 auto;
  transition: opacity 0.3s ease 0s;
  position: relative;
  max-width: 37.5rem;
}
@media (hover: none) {
  .about-flowLink {
    transition: none !important;
  }
}
@media (hover: hover) {
  .about-flowLink:hover {
    opacity: 0.8;
    text-decoration: none;
  }
}
.about-flowLink:active {
  opacity: 0.8;
  text-decoration: none;
}
@media all and (max-width: 740px) {
  .about-flowLink {
    max-width: 22.5rem;
  }
}
.about-flowLink .img {
  border-radius: 0.625rem;
  overflow: hidden;
}
.about-flowLink .img img {
  width: 100%;
}
.about-flowLink .text {
  position: absolute;
  bottom: 0.625rem;
  right: 0;
  font-weight: 600;
  color: #7fbf42;
  display: flex;
  align-items: center;
  padding: 0.3rem 0.75rem;
  background-color: #fff;
  font-size: 1.125rem;
  gap: 0.2em;
}
@media all and (max-width: 740px) {
  .about-flowLink .text {
    font-size: 0.875rem;
    right: -0.375rem;
  }
}
.about-flowLink .text .arrow {
  height: 0.0625rem;
  width: 2em;
  position: relative;
  background-color: #7fbf42;
  margin-top: 0.3em;
}
.about-flowLink .text .arrow:after {
  content: "";
  width: 0.125rem;
  height: 0.3125rem;
  background-color: #7fbf42;
  position: absolute;
  right: 0;
  bottom: 0;
  transform-origin: left bottom;
  transform: skew(50deg) translateX(90%);
}

.people-category-nav {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0.125rem;
}
@media all and (max-width: 740px) {
  .people-category-nav {
    grid-template-columns: 1fr;
  }
}
.people-category-nav a {
  display: flex;
  background-color: #fff;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  padding: 0.55em 2em;
  color: #7fbf42;
  transition: opacity 0.3s ease 0s;
}
@media (hover: none) {
  .people-category-nav a {
    transition: none !important;
  }
}
@media (hover: hover) {
  .people-category-nav a:hover {
    opacity: 0.8;
    text-decoration: none;
  }
}
.people-category-nav a:active {
  opacity: 0.8;
  text-decoration: none;
}
.people-category-nav a.current {
  background-color: #fff200;
}
.people-category-nav a:after {
  content: "›";
  position: absolute;
  top: 50%;
  right: 0.3em;
  rotate: 90deg;
  translate: 0 -50%;
  font-size: 2em;
  line-height: 1;
  margin-top: 0em;
}

.people-list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.25rem;
}
@media all and (max-width: 800px) {
  .people-list {
    grid-template-columns: 1fr 1fr;
  }
}
@media all and (max-width: 740px) {
  .people-list {
    max-width: 22.5rem;
    margin-left: auto;
    margin-right: auto;
    grid-template-columns: 1fr;
  }
}
.people-list__item {
  display: flex;
  flex-direction: column;
}
.people-list__item a {
  flex: 1;
  display: block;
  background-color: #fff;
  height: auto;
  transition: opacity 0.3s ease 0s;
}
@media (hover: none) {
  .people-list__item a {
    transition: none !important;
  }
}
@media (hover: hover) {
  .people-list__item a:hover {
    opacity: 0.8;
    text-decoration: none;
  }
}
.people-list__item a:active {
  opacity: 0.8;
  text-decoration: none;
}
@media all and (max-width: 740px) {
  .people-list__item a {
    display: flex;
  }
}
.people-list__img {
  position: relative;
}
@media all and (min-width: 741px) {
  .people-list__img {
    aspect-ratio: 273/231;
  }
}
@media all and (max-width: 740px) {
  .people-list__img {
    width: 42%;
  }
}
.people-list__img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.people-list__content {
  padding: 1.875rem 1.25rem;
}
@media all and (max-width: 740px) {
  .people-list__content {
    flex: 1;
    padding: 1.25rem 0.9375rem;
    font-size: 0.75rem;
  }
}
.people-list__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1em;
  margin-bottom: 0.75rem;
}
.people-list__header .position {
  background-color: #7fbf42;
  font-size: 0.875em;
  color: #fff;
  padding: 0.3em 0.6em;
  font-weight: 600;
  clip-path: polygon(0.5rem 0, 100% 0, 100% 100%, 0 100%, 0 0.5rem);
}
.people-list__header .movie {
  font-size: 0.875em;
  display: flex;
  align-items: center;
  gap: 0.4em;
  padding: 0.3em 0.6em 0.25em 0.4em;
  border: 0.125rem solid #7fbf42;
  border-radius: 3em;
  color: #7fbf42;
  font-weight: 600;
  line-height: 1.1;
  flex-shrink: 0;
}
.people-list__header .movie:before {
  content: "";
  width: 1em;
  height: 1em;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url(../images/pages/people/movie_icon.webp);
}
.people-list__base {
  font-size: 0.875em;
  font-weight: 600;
}
.people-list__title {
  font-size: 1.125em;
  font-weight: 600;
}
.people-list__excerpt {
  font-size: 0.875em;
  margin-top: 1em;
}

.people-singleHeader {
  position: relative;
  overflow: hidden;
}
.people-singleHeader__img {
  position: absolute;
  top: 0;
  left: 0;
  width: calc(50% + 8.125rem);
  height: 100%;
}
.people-singleHeader__img img {
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.people-singleHeader__content {
  position: relative;
  z-index: 5;
  width: 50%;
  margin-left: auto;
  padding: 2.5rem 2.5rem 3.125rem 5.625rem;
}
@media all and (max-width: 740px) {
  .people-singleHeader__content {
    width: 55%;
    padding: 1.25rem 1.25rem 1.25rem 4.375rem;
  }
}
.people-singleHeader__content:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: -2%;
  background-size: auto 100%;
  background-position: left center;
  background-repeat: no-repeat;
  background-image: url(../images/pages/people/header_bg.webp);
}
.people-singleHeader__content:after {
  content: "";
  width: 100%;
  left: 20%;
  top: 0;
  background-color: #7fbf42;
  position: absolute;
  height: 100%;
}
@media all and (max-width: 1080px) {
  .people-singleHeader__content:after {
    left: 40%;
  }
}
.people-singleHeader__content__inner {
  position: relative;
  z-index: 5;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 17rem;
}
.people-singleHeader__content__head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-bottom: 0.5em;
  border-bottom: 0.125rem solid #fff;
  margin-bottom: 1em;
  width: 100%;
  gap: 0.5em;
}
@media all and (max-width: 740px) {
  .people-singleHeader__content__head {
    gap: 0.3em;
    margin-bottom: 0.3em;
    padding-bottom: 0.3em;
  }
}
.people-singleHeader__content__head .position {
  background-color: #fff;
  font-size: 0.875em;
  color: #7fbf42;
  padding: 0.3em 0.6em;
  font-weight: 600;
  clip-path: polygon(0.5rem 0, 100% 0, 100% 100%, 0 100%, 0 0.5rem);
}
@media all and (max-width: 740px) {
  .people-singleHeader__content__head .position {
    padding: 0.2em 0.5em;
  }
}
.people-singleHeader__content__head .name {
  font-weight: 600;
  font-size: 1.375rem;
}
@media all and (max-width: 740px) {
  .people-singleHeader__content__head .name {
    font-size: 1rem;
  }
}
.people-singleHeader__content__info li {
  padding-left: 1.2em;
  font-size: 0.875rem;
  position: relative;
}
@media all and (max-width: 740px) {
  .people-singleHeader__content__info li {
    font-size: 0.6875rem;
  }
}
.people-singleHeader__content__info li:before {
  content: "・";
  position: absolute;
  left: 0;
}

.peopleSingle__heading {
  font-size: 1.875rem;
  font-weight: 600;
  color: #7fbf42;
}
@media all and (max-width: 740px) {
  .peopleSingle__heading {
    font-size: 1.375rem;
  }
}
.peopleSingle__videoWrap {
  position: relative;
  aspect-ratio: 16/9;
}
.peopleSingle__videoWrap video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.peopleSingle__videoWrap .youtube-thumbnail {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
}
.peopleSingle__videoWrap .youtube-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.peopleSingle__videoWrap .youtube-embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.peopleSingle__videoWrap .youtube-embed iframe {
  width: 100%;
  height: 100%;
  border: none;
}
.peopleSingle__videoWrap .play-button {
  all: unset;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
@media all and (max-width: 740px) {
  .peopleSingle__videoWrap .play-button {
    display: none !important;
  }
}
.peopleSingle__videoWrap .play-button span {
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
  color: white;
  width: 4rem;
  height: 4rem;
  overflow: hidden;
  text-indent: -99em;
  cursor: pointer;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url(../images/common/ic_play.webp);
}
.peopleSingle__flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
@media all and (min-width: 741px) {
  .peopleSingle__flex.reverse {
    flex-direction: row-reverse;
  }
}
@media all and (max-width: 740px) {
  .peopleSingle__flex {
    flex-direction: column;
    align-items: center;
  }
}
.peopleSingle__flex .img {
  margin-top: 1.875rem;
}
@media all and (max-width: 740px) {
  .peopleSingle__flex .img {
    width: 70%;
  }
}
@media all and (min-width: 741px) {
  .peopleSingle__flex > * {
    width: 48%;
  }
}
.peopleSingle__message {
  display: flex;
  gap: 3rem;
  align-items: flex-start;
}
@media all and (max-width: 740px) {
  .peopleSingle__message {
    gap: 1.5625rem;
  }
}
.peopleSingle__message .img {
  width: 9.5rem;
  flex-shrink: 0;
}
@media all and (max-width: 740px) {
  .peopleSingle__message .img {
    width: 5rem;
  }
}
.peopleSingle__message .content {
  position: relative;
  border-radius: 1.25rem;
  border: 0.125rem solid #7fbf42;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
}
.peopleSingle__message .content:before {
  content: "";
  width: 1.5em;
  height: 1em;
  background-color: #7fbf42;
  position: absolute;
  top: 4.5em;
  left: 0;
  translate: -99% 0%;
  clip-path: polygon(0 50%, 100% 0, 100% 100%);
}
@media all and (max-width: 740px) {
  .peopleSingle__message .content:before {
    top: 2.5em;
    width: 1.25em;
    height: 0.8em;
  }
}
.peopleSingle__message .content:after {
  content: "";
  width: 1.5em;
  height: 1em;
  background-color: #fff;
  position: absolute;
  top: 4.5em;
  left: 0;
  translate: -80% 0%;
  clip-path: polygon(0 50%, 100% 0, 100% 100%);
}
@media all and (max-width: 740px) {
  .peopleSingle__message .content:after {
    top: 2.5em;
    width: 1.25em;
    height: 0.8em;
    translate: -70% 0%;
  }
}
.peopleSingle__message .content p {
  padding: 1em 2em 1.5em;
  font-weight: 400;
}
@media all and (max-width: 740px) {
  .peopleSingle__message .content p {
    padding: 1em 1.25em 1.25em;
  }
}
.peopleSingle__message__heading {
  position: relative;
  background-color: #7fbf42;
  color: #fff;
  white-space: nowrap;
  font-weight: 600;
  font-size: 1.25rem;
  padding: 0.3em 0.3em 0.3em 1.3em;
  border-radius: 1rem 0 0 0;
}
@media all and (max-width: 740px) {
  .peopleSingle__message__heading {
    font-size: 1rem;
  }
}
.peopleSingle__message__heading:after {
  content: "";
  width: 3em;
  height: 100%;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: left center;
  position: absolute;
  right: 0;
  top: 0;
  background-image: url(../images/pages/people/message_headingBG.webp);
  translate: 99% 0;
}
.peopleSingle__schedule {
  border: 0.125rem solid #7fbf42;
  border-radius: 1.25rem;
}
.peopleSingle__schedule__heading {
  display: flex;
  justify-content: center;
}
.peopleSingle__schedule__heading span {
  text-align: center;
  position: relative;
  min-width: 16.875rem;
  max-width: 80%;
  padding: 0.3em 0.5em;
  background-color: #7fbf42;
  color: #fff;
  font-weight: 600;
  font-size: 1.25rem;
}
@media all and (max-width: 740px) {
  .peopleSingle__schedule__heading span {
    font-size: 1.125rem;
    min-width: 12.5rem;
    padding: 0.2em 0.5em;
  }
}
.peopleSingle__schedule__heading span:before {
  content: "";
  width: 3em;
  height: 100%;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: left center;
  position: absolute;
  left: 0;
  top: 0;
  background-image: url(../images/pages/people/message_headingBG.webp);
  translate: -99% 0;
  scale: -1 1;
}
.peopleSingle__schedule__heading span:after {
  content: "";
  width: 3em;
  height: 100%;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: left center;
  position: absolute;
  right: 0;
  top: 0;
  background-image: url(../images/pages/people/message_headingBG.webp);
  translate: 99% 0;
}
.peopleSingle__schedule__wrap {
  padding: 1.875rem 2.5rem;
  display: flex;
  gap: 1.875rem;
}
@media all and (max-width: 740px) {
  .peopleSingle__schedule__wrap {
    gap: 0;
    flex-direction: column;
    font-size: 0.9375rem;
  }
}
.peopleSingle__schedule__wrap ul {
  position: relative;
  flex: 1;
}
@media all and (max-width: 740px) {
  .peopleSingle__schedule__wrap ul {
    display: flex;
    flex-direction: column;
    gap: 0.5em;
  }
}
.peopleSingle__schedule__wrap ul:before {
  content: "";
  height: 100%;
  position: absolute;
  top: 0;
  left: 0.375rem;
  width: 0.125rem;
  background-color: #c3d82e;
  translate: -50% 0;
}
.peopleSingle__schedule__wrap li {
  position: relative;
  padding: 0.5em 0;
  padding-left: 2.25rem;
  display: flex;
}
.peopleSingle__schedule__wrap li:before {
  content: "";
  position: absolute;
  width: 0.8125rem;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-color: #7fbf42;
  left: 0;
  top: 1em;
}
.peopleSingle__schedule__wrap li .time {
  flex-shrink: 0;
  min-width: 4em;
  font-weight: 600;
  color: #7fbf42;
}

.people-other__heading {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #fff;
}
.people-other__heading .main {
  font-size: 3.75rem;
  line-height: 1;
  letter-spacing: 0.1em;
  font-weight: bold;
  margin-bottom: 0.2em;
}
@media all and (max-width: 740px) {
  .people-other__heading .main {
    font-size: 2.25rem;
  }
}

.work-place-navBox {
  padding: 4.375rem 0;
  border-radius: 1.875rem;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  gap: 4.75rem;
}
@media all and (max-width: 740px) {
  .work-place-navBox {
    border-radius: 1.25rem;
    padding: 3.125rem 0;
    gap: 3.125rem;
  }
}
.work-place-navBox__item {
  display: flex;
  align-items: center;
}
.work-place-navBox__item:nth-child(2n) {
  flex-direction: row-reverse;
}
.work-place-navBox__item:nth-child(2n) .img {
  border-radius: 0 12.5rem 12.5rem 0;
}
.work-place-navBox__item:nth-child(2n) .img img {
  object-position: right top;
}
.work-place-navBox__item .content {
  width: 50%;
  padding: 1.25rem;
}
@media all and (max-width: 740px) {
  .work-place-navBox__item .content {
    width: 55%;
  }
}
.work-place-navBox__item .contentIn {
  max-width: 18.75rem;
  margin: 0 auto;
}
.work-place-navBox__item .heading {
  font-size: 1.5rem;
  font-weight: 600;
  color: #7fbf42;
  border-bottom: 0.125rem solid #7fbf42;
  padding-bottom: 0.1em;
  margin-bottom: 0.55em;
}
@media all and (max-width: 740px) {
  .work-place-navBox__item .heading {
    font-size: 1rem;
  }
}
.work-place-navBox__item .img {
  aspect-ratio: 448/338;
  position: relative;
  width: 50%;
  overflow: hidden;
  border-radius: 12.5rem 0 0 12.5rem;
}
@media all and (max-width: 740px) {
  .work-place-navBox__item .img {
    width: 45%;
    aspect-ratio: 308/338;
  }
}
.work-place-navBox__item .img img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left top;
}

.work-place-base-box {
  padding: 3.75rem 1.875rem;
  border-radius: 1.875rem;
  background-color: #fff;
}
@media all and (max-width: 740px) {
  .work-place-base-box {
    border-radius: 1.25rem;
    padding: 3.125rem 1.25rem;
  }
}
.work-place-base-box__lead {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  line-height: 2;
  font-size: 1.125rem;
  gap: 1.5em;
}
.work-place-base-box__lead strong {
  font-size: 1.3333333333em;
  font-weight: 600;
  color: #7fbf42;
}
@media all and (max-width: 740px) {
  .work-place-base-box__lead {
    font-size: 0.875rem;
  }
}
.work-place-base-box__mapHeading {
  margin: 0 auto 0.625rem;
  max-width: 38.9375rem;
}
.work-place-base-box__mapWrap {
  position: relative;
  max-width: 43.25rem;
  margin: 0 auto;
}
.work-place-base-box__map {
  position: relative;
  max-width: 43.25rem;
  margin: 0 auto;
}
@media all and (min-width: 741px) {
  .work-place-base-box__mapList dt {
    display: none;
  }
}
.work-place-base-box__mapList a {
  position: relative;
  display: flex;
  padding: 0.25em 1.5625rem 0.3em 0.9375rem;
  border: 0.125rem solid #7fbf42;
  background-color: #fff;
  transition: all 0.2s ease 0s;
  color: #7fbf42;
  border-radius: 3em;
  font-weight: 600;
}
.work-place-base-box__mapList a:hover {
  text-decoration: none;
}
@media (hover: none) {
  .work-place-base-box__mapList a {
    transition: none !important;
  }
}
@media (hover: hover) {
  .work-place-base-box__mapList a:hover {
    background-color: #7fbf42;
    color: #fff;
  }
}
.work-place-base-box__mapList a:active {
  background-color: #7fbf42;
  color: #fff;
}
@media all and (min-width: 741px) {
  .work-place-base-box__mapList a {
    position: absolute;
    z-index: 5;
    font-size: 0.875rem;
  }
  .work-place-base-box__mapList a.ikuta-hills {
    top: -3%;
    left: 0%;
  }
  .work-place-base-box__mapList a.ikutano-mori {
    top: 46%;
    left: 0%;
  }
  .work-place-base-box__mapList a.ikutano-izumi {
    top: 56%;
    left: 1%;
  }
  .work-place-base-box__mapList a.nonbirisu-todoroki {
    top: 5%;
    left: 50%;
  }
  .work-place-base-box__mapList a.horiuchi {
    top: 18%;
    left: 70%;
  }
  .work-place-base-box__mapList a.nonbirisu {
    top: 51%;
    left: 35%;
  }
  .work-place-base-box__mapList a.musashikosugi {
    top: 31%;
    left: 74%;
  }
  .work-place-base-box__mapList a.daini-bananaen {
    top: 71%;
    left: 46%;
  }
  .work-place-base-box__mapList a.kawasaki-daishi {
    top: 89%;
    left: 86%;
    white-space: nowrap;
  }
  .work-place-base-box__mapList a.yokohama-yamate {
    top: 87%;
    left: 1%;
    white-space: nowrap;
  }
}
@media all and (max-width: 740px) {
  .work-place-base-box__mapList a {
    padding: 0.2em 1.25rem 0.2em 0.625rem;
    font-size: 0.8125rem;
  }
}
.work-place-base-box__mapList a:after {
  content: "›";
  font-size: 1.6em;
  line-height: 1;
  margin-top: -0.125em;
  transition: all 0.2s ease 0s;
  position: absolute;
  right: 0.35em;
  top: 50%;
  translate: 0 -50%;
}
.work-place-base-box__mapList a:after:hover {
  text-decoration: none;
}
@media all and (max-width: 740px) {
  .work-place-base-box__mapList {
    max-width: 21.25rem;
    margin: 3.125rem auto 0;
    gap: 1.25rem;
    display: flex;
    flex-direction: column;
  }
  .work-place-base-box__mapList dt {
    min-width: 4em;
    color: #7fbf42;
    font-weight: 600;
    flex-shrink: 0;
    padding-right: 1em;
    margin-right: 0.75em;
    border-right: 0.0625rem solid #7fbf42;
    line-height: 1.4;
    padding-top: 0.3em;
    font-size: 0.875rem;
  }
  .work-place-base-box__mapList .row {
    display: flex;
  }
  .work-place-base-box__mapList dd {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5em;
  }
}

.work-place-base-list {
  margin-top: 4.375rem;
  display: flex;
  flex-direction: column;
  gap: 1.625rem;
}
.work-place-base-list__item {
  position: relative;
  padding-left: 3.125rem;
}
@media all and (max-width: 740px) {
  .work-place-base-list__item {
    padding-left: 1.25rem;
  }
}
.work-place-base-list__item:before {
  content: "";
  height: calc(100% - 13vw);
  position: absolute;
  bottom: 0;
  left: 0;
  width: 400%;
  background-color: #fff;
}
.work-place-base-list__slide {
  overflow: visible;
  position: relative;
  z-index: 5;
}
.work-place-base-list__slide .swiper-wrapper {
  overflow: visible;
}
.work-place-base-list__slide .swiper-wrapper .img {
  aspect-ratio: 54/37;
  overflow: hidden;
  border-radius: 1.25rem;
}
.work-place-base-list__slide .swiper-wrapper .img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.work-place-base-list__slide__arrowWrap {
  position: absolute;
  z-index: 10;
  bottom: 0;
  right: 0;
  display: flex;
  align-items: center;
  gap: 0.625rem;
  height: 2.75rem;
}
@media all and (min-width: 1081px) {
  .work-place-base-list__slide__arrowWrap {
    right: -3.75rem;
  }
}
@media all and (max-width: 740px) {
  .work-place-base-list__slide__arrowWrap {
    gap: 0;
  }
}
.work-place-base-list__slide__arrowWrap:before {
  content: "";
  width: 500%;
  position: absolute;
  bottom: 0;
  left: 0;
  height: 100%;
  background-color: #7fbf42;
  border-radius: 6.25rem;
}
.work-place-base-list__slide__prev, .work-place-base-list__slide__next {
  position: relative;
  left: 0;
  width: 2.75rem;
  top: 0;
  margin: 0;
  padding: 0;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-color: transparent;
  color: #fff;
  background-size: 40%;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url(../images/pages/workplace/base/slide-arrow.webp);
}
.work-place-base-list__slide__prev::after, .work-place-base-list__slide__next::after {
  display: none;
}
.work-place-base-list__slide__prev {
  scale: -1 1;
}
.work-place-base-list__content {
  position: relative;
  z-index: 5;
  padding: 2.25rem 0;
}
@media all and (max-width: 740px) {
  .work-place-base-list__content {
    padding: 1.25rem 0;
  }
}
.work-place-base-list__content .heading {
  font-size: 1.625rem;
  font-weight: 600;
  color: #7fbf42;
  margin-bottom: 0.6em;
  line-height: 1.4;
}
@media all and (max-width: 740px) {
  .work-place-base-list__content .heading {
    font-size: 1.125rem;
  }
}
.work-place-base-list__content .heading small {
  font-size: 0.7692307692em;
}
.work-place-base-list__content .caption {
  max-width: 50rem;
  margin-bottom: 1.5em;
}
.work-place-base-list__content .btn {
  all: unset;
  width: 100%;
  max-width: 13rem;
  font-weight: 500;
  color: #fff;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  background-color: #7fbf42;
  padding: 0.5em;
  border-radius: 3em;
  transition: opacity 0.3s ease 0s;
  margin-bottom: 1.5625rem;
}
@media (hover: none) {
  .work-place-base-list__content .btn {
    transition: none !important;
  }
}
@media (hover: hover) {
  .work-place-base-list__content .btn:hover {
    opacity: 0.8;
    text-decoration: none;
  }
}
.work-place-base-list__content .btn:active {
  opacity: 0.8;
  text-decoration: none;
}
@media all and (max-width: 740px) {
  .work-place-base-list__content .btn {
    max-width: 10rem;
    font-size: 0.875rem;
  }
}
.work-place-base-list__content .btn .icon {
  width: 1.5em;
  aspect-ratio: 1/1;
  border: 0.125rem solid #fff;
  border-radius: 50%;
  position: absolute;
  right: 0.5em;
  top: 50%;
  translate: 0 -50%;
}
.work-place-base-list__content .btn .icon:before, .work-place-base-list__content .btn .icon:after {
  content: "";
  width: 60%;
  height: 0.125rem;
  background-color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  transition: all 0.2s ease 0s;
}
.work-place-base-list__content .btn .icon:before:hover, .work-place-base-list__content .btn .icon:after:hover {
  text-decoration: none;
}
.work-place-base-list__content .btn .icon:after {
  rotate: 90deg;
}
.work-place-base-list__content .btn.active .icon:after {
  rotate: 0deg;
}
.work-place-base-list__content .detail {
  padding: 1.25rem 1.5625rem;
  padding-right: 0;
  border-left: 0.125rem solid #7fbf42;
  display: none;
}
@media all and (max-width: 740px) {
  .work-place-base-list__content .detail {
    padding: 0.625rem 0.9375rem;
    padding-right: 0;
  }
}
.work-place-base-list__content .detail__heading {
  font-size: 1.125rem;
  font-weight: 600;
  color: #7fbf42;
}
.work-place-base-list__content .detail__message {
  display: flex;
  align-items: flex-end;
}
@media all and (max-width: 740px) {
  .work-place-base-list__content .detail__message {
    align-items: center;
  }
}
.work-place-base-list__content .detail__message__img {
  width: 5.625rem;
  flex-shrink: 0;
  margin-right: 1.25rem;
}
@media all and (max-width: 740px) {
  .work-place-base-list__content .detail__message__img {
    width: 4rem;
  }
}
.work-place-base-list__content .detail__message__text {
  position: relative;
  border-radius: 1.25rem;
  border: 0.125rem solid #7fbf42;
  padding: 1em 1.75em;
  position: relative;
  font-weight: normal;
  max-width: 28.75rem;
}
@media all and (max-width: 740px) {
  .work-place-base-list__content .detail__message__text {
    font-size: 0.8125rem;
    padding: 0.7em 1.25em;
  }
}
.work-place-base-list__content .detail__message__text:before {
  content: "";
  width: 1.25em;
  height: 0.8em;
  background-color: #7fbf42;
  position: absolute;
  bottom: 2.5em;
  left: 0;
  translate: -99% 0%;
  clip-path: polygon(0 50%, 100% 0, 100% 100%);
}
@media all and (max-width: 740px) {
  .work-place-base-list__content .detail__message__text:before {
    bottom: 50%;
    translate: -99% 50%;
  }
}
.work-place-base-list__content .detail__message__text:after {
  content: "";
  width: 1.25em;
  height: 0.8em;
  background-color: #fff;
  position: absolute;
  bottom: 2.5em;
  left: 0;
  translate: -80% 0%;
  clip-path: polygon(0 50%, 100% 0, 100% 100%);
}
@media all and (max-width: 740px) {
  .work-place-base-list__content .detail__message__text:after {
    bottom: 50%;
    translate: -70% 50%;
  }
}
.work-place-base-list__content .detail__tel {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1.2;
}
.work-place-base-list__content .detail__tel .icon {
  width: 1.4375rem;
}
.work-place-base-list__content .detail__place {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
}
@media all and (max-width: 740px) {
  .work-place-base-list__content .detail__place {
    font-size: 0.875rem;
  }
}
.work-place-base-list__content .detail__place .icon {
  width: 1.5rem;
  display: flex;
  justify-content: center;
}

.work-place-worklife {
  display: flex;
  flex-direction: column;
  gap: 5.625rem;
}
@media all and (max-width: 740px) {
  .work-place-worklife {
    gap: 3.75rem;
  }
}
.work-place-worklife__item {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
@media all and (min-width: 741px) {
  .work-place-worklife__item:nth-child(2n) {
    flex-direction: row-reverse;
  }
}
.work-place-worklife__item:nth-child(2n):before {
  border-color: #c3d82e;
  right: auto;
  left: 0;
}
@media all and (max-width: 740px) {
  .work-place-worklife__item:nth-child(2n) .heading {
    padding-left: 0;
    padding-right: 37%;
  }
  .work-place-worklife__item:nth-child(2n) .img {
    left: auto;
    right: 0;
  }
  .work-place-worklife__item:nth-child(2n) .content {
    margin-left: 0;
  }
}
.work-place-worklife__item:before {
  content: "";
  width: 86%;
  height: 100%;
  border: 0.125rem solid #7fbf42;
  border-radius: 1.25rem;
  right: 0;
  bottom: 0;
  position: absolute;
}
@media all and (max-width: 740px) {
  .work-place-worklife__item:before {
    width: 90%;
  }
}
.work-place-worklife__item .img {
  width: 38.75%;
  position: relative;
  z-index: 5;
  margin-top: -3.125rem;
  overflow: hidden;
  border-radius: 1.25rem;
  aspect-ratio: 31/39;
}
@media all and (max-width: 740px) {
  .work-place-worklife__item .img {
    aspect-ratio: 294/270;
    margin-top: -1.25rem;
    width: 42%;
    position: absolute;
    top: 0;
    left: 0;
  }
}
.work-place-worklife__item .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
.work-place-worklife__item .content {
  flex: 1;
  padding: 1.25rem 2.5rem 1.875rem;
}
@media all and (max-width: 740px) {
  .work-place-worklife__item .content {
    flex: none;
    padding: 1.25rem 1.25rem 1.875rem;
    width: 90%;
    margin-left: auto;
    font-size: 0.875rem;
  }
}
.work-place-worklife__item .heading {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 10;
  gap: 1.25rem;
  font-size: 1.25rem;
  color: #7fbf42;
  line-height: 1.4;
  margin-bottom: 1.875rem;
}
@media all and (max-width: 740px) {
  .work-place-worklife__item .heading {
    padding-left: 37%;
    flex-direction: column;
    font-size: 1rem;
    align-items: center;
    gap: 0.625rem;
  }
}
.work-place-worklife__item .heading .q {
  position: relative;
  width: 6.1875rem;
}
@media all and (max-width: 740px) {
  .work-place-worklife__item .heading .q {
    margin-right: auto;
    width: 3.75rem;
  }
}
.work-place-worklife__item .heading .q .q-text {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -53%;
  color: #fff;
  font-size: 3.125rem;
}
@media all and (max-width: 740px) {
  .work-place-worklife__item .heading .q .q-text {
    font-size: 2.25rem;
  }
}
.work-place-worklife__item .btWrap {
  margin-bottom: -1.875rem;
  margin-top: 1.875rem;
  display: flex;
  justify-content: flex-end;
}
.work-place-worklife__item .btWrap a {
  display: flex;
  align-items: center;
  padding: 0.5em 1.25rem 0.5em 1.25rem;
  position: relative;
  right: -2.5rem;
  background-color: #7fbf42;
  color: #fff;
  gap: 0.5em;
  font-weight: 500;
  transition: opacity 0.3s ease 0s;
  border-radius: 0 0 1.125rem 0;
}
@media (hover: none) {
  .work-place-worklife__item .btWrap a {
    transition: none !important;
  }
}
@media (hover: hover) {
  .work-place-worklife__item .btWrap a:hover {
    opacity: 0.8;
    text-decoration: none;
  }
}
.work-place-worklife__item .btWrap a:active {
  opacity: 0.8;
  text-decoration: none;
}
@media all and (max-width: 740px) {
  .work-place-worklife__item .btWrap a {
    right: -1.25rem;
  }
}
.work-place-worklife__item .btWrap a:before {
  content: "";
  width: 5rem;
  height: 100%;
  position: absolute;
  left: -0.625rem;
  top: 0;
  background-color: #7fbf42;
  border-radius: 0.375rem 0 0 0;
  transform-origin: right top;
  transform: skew(-25deg);
}
.work-place-worklife__item .btWrap a > span {
  position: relative;
  z-index: 5;
}
.work-place-worklife__item .btWrap a:after {
  content: "›";
  font-size: 2em;
  line-height: 1;
  margin-top: -0.225em;
  transition: all 0.2s ease 0s;
  top: 50%;
}
.work-place-worklife__item .btWrap a:after:hover {
  text-decoration: none;
}
@media all and (max-width: 740px) {
  .work-place-worklife__item .btWrap a:after {
    right: 1em;
  }
}
.work-place-worklife__item .bg-img1 {
  position: absolute;
  width: 4.4375rem;
  z-index: -1;
  top: 32%;
  left: 17%;
}
@media all and (max-width: 740px) {
  .work-place-worklife__item .bg-img1 {
    width: 2.75rem;
    left: 46%;
    top: 16%;
  }
}
.work-place-worklife__item .bg-img1 img {
  width: 100%;
}
.work-place-worklife__item .bg-img2 {
  position: absolute;
  width: 10.625rem;
  z-index: -1;
  bottom: -14%;
  right: 8%;
}
@media all and (max-width: 740px) {
  .work-place-worklife__item .bg-img2 {
    display: none;
  }
}
.work-place-worklife__item .bg-img2 img {
  width: 100%;
}
.work-place-worklife__item .bg-img3 {
  position: absolute;
  width: 7.5625rem;
  z-index: 12;
  top: -10%;
  left: 34%;
}
@media all and (max-width: 740px) {
  .work-place-worklife__item .bg-img3 {
    z-index: 8;
    width: 5rem;
    top: -5%;
    left: 53%;
  }
}
.work-place-worklife__item .bg-img3 img {
  width: 100%;
}
.work-place-worklife__item .bg-img4 {
  position: absolute;
  width: 7.8125rem;
  z-index: 8;
  top: -4%;
  left: 48%;
}
@media all and (max-width: 740px) {
  .work-place-worklife__item .bg-img4 {
    width: 5rem;
    top: 6%;
    left: 39%;
  }
}
.work-place-worklife__item .bg-img4 img {
  width: 100%;
}
.work-place-worklife__item .bg-img5 {
  position: absolute;
  width: 8.125rem;
  z-index: 8;
  bottom: 5%;
  right: 10%;
}
@media all and (max-width: 740px) {
  .work-place-worklife__item .bg-img5 {
    display: none;
  }
}
.work-place-worklife__item .bg-img5 img {
  width: 100%;
}

.work-place-careerNav {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.75rem;
}
@media all and (max-width: 800px) {
  .work-place-careerNav {
    gap: 0.9375rem;
    font-size: 0.875rem;
  }
}
@media all and (max-width: 740px) {
  .work-place-careerNav {
    gap: 1.875rem;
    grid-template-columns: 1fr;
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
  }
}
.work-place-careerNav a {
  display: flex;
  flex-direction: column;
  position: relative;
  border: 0.125rem solid #7fbf42;
  transition: opacity 0.3s ease 0s;
}
@media (hover: none) {
  .work-place-careerNav a {
    transition: none !important;
  }
}
@media (hover: hover) {
  .work-place-careerNav a:hover {
    opacity: 0.8;
    text-decoration: none;
  }
}
.work-place-careerNav a:active {
  opacity: 0.8;
  text-decoration: none;
}
@media all and (max-width: 740px) {
  .work-place-careerNav a {
    flex-direction: row-reverse;
  }
}
.work-place-careerNav a:nth-child(2n) {
  border-color: #c3d82e;
}
.work-place-careerNav a:nth-child(2n) .arrow {
  color: #c3d82e;
}
@media all and (max-width: 740px) {
  .work-place-careerNav .img {
    width: 40%;
  }
  .work-place-careerNav .img img {
    object-fit: cover;
    width: 100%;
    height: 100%;
  }
}
.work-place-careerNav .num {
  width: 4.9375rem;
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 5;
  font-weight: 600;
  translate: -50% -50%;
}
@media all and (max-width: 740px) {
  .work-place-careerNav .num {
    width: 4rem;
    position: static;
    margin: 0 auto;
    translate: 0;
    margin-top: -0.625rem;
    margin-bottom: 0.625rem;
  }
}
.work-place-careerNav .num__text {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  color: #fff;
  font-size: 2.1875rem;
}
@media all and (max-width: 740px) {
  .work-place-careerNav .num__text {
    font-size: 1.75rem;
  }
}
.work-place-careerNav .content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 0.625rem 0;
  text-align: center;
}
@media all and (max-width: 740px) {
  .work-place-careerNav .content {
    position: relative;
    flex: 1;
    padding: 0 0.625rem 0;
  }
}
.work-place-careerNav .content strong {
  font-weight: 600;
  color: #7fbf42;
}
.work-place-careerNav .content .arrow {
  color: #7fbf42;
  font-size: 3em;
  line-height: 1;
  rotate: 90deg;
  translate: 40% 0;
}

.work-place-careerList {
  display: flex;
  flex-direction: column;
  gap: 5.625rem;
}
.work-place-careerList__item {
  padding: 3.75rem 2.5rem;
  border: 0.125rem solid #7fbf42;
  border-radius: 1.25rem;
}
.work-place-careerList__item:nth-child(2n) {
  border-color: #c3d82e;
}
@media all and (max-width: 740px) {
  .work-place-careerList__item {
    padding: 0rem 1.25rem 2.5rem;
  }
}
.work-place-careerList .header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 2.8125rem;
  align-items: flex-start;
}
@media all and (max-width: 740px) {
  .work-place-careerList .header {
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 1.875rem;
  }
}
@media all and (min-width: 741px) {
  .work-place-careerList .header > * {
    width: 48%;
  }
}
@media all and (max-width: 740px) {
  .work-place-careerList .header__content {
    width: 100%;
  }
}
.work-place-careerList .header__heading {
  margin: 1em 0;
  font-weight: 600;
  font-size: 1.625rem;
  color: #7fbf42;
}
@media all and (max-width: 740px) {
  .work-place-careerList .header__heading {
    font-size: 1.25rem;
    margin: 0 0 0.75em;
  }
}
@media all and (max-width: 740px) {
  .work-place-careerList .header__text {
    font-size: 0.875rem;
    margin-bottom: 1.5em;
  }
}
.work-place-careerList .header__img {
  overflow: hidden;
  border-radius: 0.625rem;
}
@media all and (max-width: 740px) {
  .work-place-careerList .header__img {
    aspect-ratio: 60/34;
  }
  .work-place-careerList .header__img img {
    object-fit: cover;
    height: 100%;
  }
}
.work-place-careerList .header__img img {
  width: 100%;
}
.work-place-careerList .num {
  width: 8.0625rem;
  position: relative;
  z-index: 5;
  font-weight: 600;
  display: block;
  margin-top: -5.625rem;
}
@media all and (max-width: 740px) {
  .work-place-careerList .num {
    width: 5rem;
    position: static;
    margin-right: auto;
    translate: 0;
    margin-top: -0.625rem;
    margin-bottom: 0;
  }
}
.work-place-careerList .num__text {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  color: #fff;
  font-size: 3.5rem;
  z-index: 5;
}
@media all and (max-width: 740px) {
  .work-place-careerList .num__text {
    font-size: 2.125rem;
  }
}
.work-place-careerList .careerPlan {
  display: flex;
  flex-direction: column;
  gap: 0.3125rem;
}
@media all and (max-width: 740px) {
  .work-place-careerList .careerPlan {
    font-size: 0.75rem;
  }
}
.work-place-careerList .careerPlan .row {
  display: flex;
  align-items: center;
  background-color: rgba(126, 191, 66, 0.2);
  padding: 1em 1.5em;
}
@media all and (max-width: 740px) {
  .work-place-careerList .careerPlan .row {
    padding: 0.75em 0.2em 0.75em 0.75em;
  }
}
.work-place-careerList .careerPlan .row dt {
  color: #7fbf42;
  font-weight: 600;
  font-size: 1.25rem;
  min-width: 5em;
  margin-right: 0.5em;
}
@media all and (max-width: 740px) {
  .work-place-careerList .careerPlan .row dt {
    font-size: 0.875rem;
    margin-right: 0;
    min-width: 4.5em;
  }
}
.work-place-careerList .careerPlan .row dd .fz14 {
  font-size: 0.75rem;
}

.work-place-training {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
.work-place-training__item {
  max-width: 50rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.work-place-training__item:nth-child(2n+1) {
  margin-left: auto;
}
@media all and (min-width: 741px) {
  .work-place-training__item:nth-child(2n) {
    flex-direction: row-reverse;
  }
}
@media all and (max-width: 740px) {
  .work-place-training__item {
    flex-direction: column;
    align-items: normal;
  }
}
@media all and (min-width: 741px) {
  .work-place-training__item > * {
    width: 48%;
  }
}
@media all and (max-width: 740px) {
  .work-place-training .content {
    display: contents;
  }
}
.work-place-training .heading {
  font-size: 1.375rem;
  font-weight: 600;
  border-bottom: 0.125rem solid #7fbf42;
  margin-bottom: 1em;
  padding-bottom: 0.2em;
  color: #7fbf42;
}
@media all and (min-width: 741px) {
  .work-place-training .heading {
    max-width: 18.75rem;
  }
}
@media all and (max-width: 740px) {
  .work-place-training .heading {
    order: -2;
    font-size: 1.25rem;
  }
}
@media all and (max-width: 740px) {
  .work-place-training .img {
    order: -1;
    max-width: 80%;
    margin: 1.875rem auto;
  }
}

.work-place-footLink__heading {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #fff;
}
.work-place-footLink__heading .main {
  font-size: 3.75rem;
  line-height: 1;
  letter-spacing: 0.1em;
  font-weight: bold;
}
@media all and (max-width: 740px) {
  .work-place-footLink__heading .main {
    font-size: 2.25rem;
  }
}
.work-place-footLink__list {
  max-width: 46.875rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.25rem;
}
@media all and (max-width: 740px) {
  .work-place-footLink__list {
    grid-template-columns: 1fr;
    max-width: 22.5rem;
    margin: 0 auto;
  }
}
.work-place-footLink__list .img {
  aspect-ratio: 240/174;
}
@media all and (max-width: 740px) {
  .work-place-footLink__list .img {
    aspect-ratio: 240/150;
  }
}
.work-place-footLink__list .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.work-place-footLink__list a {
  display: block;
  transition: opacity 0.3s ease 0s;
  position: relative;
}
@media (hover: none) {
  .work-place-footLink__list a {
    transition: none !important;
  }
}
@media (hover: hover) {
  .work-place-footLink__list a:hover {
    opacity: 0.8;
    text-decoration: none;
  }
}
.work-place-footLink__list a:active {
  opacity: 0.8;
  text-decoration: none;
}
.work-place-footLink__list .text {
  background-color: #51a600;
  display: flex;
  align-items: center;
  color: #fff;
  justify-content: space-between;
  gap: 1em;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.5em 0.75em;
  position: relative;
}
@media all and (max-width: 740px) {
  .work-place-footLink__list .text {
    position: absolute;
    z-index: 5;
    bottom: 0;
    left: 0;
    width: 100%;
    text-align: center;
    justify-content: center;
  }
}
.work-place-footLink__list .text:after {
  content: "›";
  font-size: 1.6em;
  line-height: 1;
  margin-top: -0.125em;
  transition: all 0.2s ease 0s;
  position: absolute;
  right: 0.35em;
  top: 50%;
  translate: 0 -50%;
}
.work-place-footLink__list .text:after:hover {
  text-decoration: none;
}
@media all and (max-width: 740px) {
  .work-place-footLink__list .text:after {
    right: 1em;
  }
}

.info-navBox {
  background-color: #fff;
  padding: 3.75rem;
  border-radius: 1.875rem;
  overflow: hidden;
}
@media all and (max-width: 740px) {
  .info-navBox {
    padding: 3.125rem 1.25rem;
  }
}
@media all and (max-width: 740px) {
  .info-navBox {
    border-radius: 1.25rem;
  }
}
.info-navBox__flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8125rem;
}
.info-navBox__flex.reverse {
  flex-direction: row-reverse;
}
.info-navBox__flex.reverse .img {
  transform-origin: right center;
}
@media all and (min-width: 741px) {
  .info-navBox__flex > * {
    width: 48%;
  }
}
@media all and (max-width: 740px) {
  .info-navBox__flex .content {
    width: 53%;
  }
  .info-navBox__flex .img {
    width: 45%;
    transform-origin: left center;
    scale: 1.2;
  }
}
.info-navBox__occupation {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media all and (max-width: 740px) {
  .info-navBox__occupation {
    gap: 1.875rem;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
  }
}
.info-navBox__occupation li {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media all and (max-width: 740px) {
  .info-navBox__occupation li {
    flex-direction: column;
    align-items: normal;
    width: 100%;
    font-size: 0.875rem;
  }
}
.info-navBox__occupation .img {
  width: 38%;
}
@media all and (max-width: 740px) {
  .info-navBox__occupation .img {
    width: 100%;
    margin-bottom: 1.25rem;
  }
}
.info-navBox__occupation .img img {
  width: 100%;
}
.info-navBox__occupation .content {
  width: 58%;
}
@media all and (max-width: 740px) {
  .info-navBox__occupation .content {
    width: 100%;
  }
}

@media all and (max-width: 740px) {
  .occupation-section {
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
  }
}
.occupation-section__heading {
  padding: 0.5em 1.25em;
  border: 0.0625rem solid #000;
  display: flex;
  justify-content: space-between;
  gap: 1em;
  align-items: center;
  cursor: pointer;
  font-size: 1.375rem;
  font-weight: 600;
}
.occupation-section__heading:after {
  content: "";
  width: 0.5em;
  height: 0.5em;
  transition: all 0.2s ease 0s;
  border: 0.09375rem solid #000;
  translate: 0 -25%;
  rotate: 45deg;
  border-left-color: transparent;
  border-top-color: transparent;
  flex-shrink: 0;
}
.occupation-section__heading:after:hover {
  text-decoration: none;
}
.occupation-section__heading.active:after {
  rotate: -135deg;
  translate: 0 25%;
}
@media all and (max-width: 740px) {
  .occupation-section__heading {
    padding: 0.75em 1em 0.75em 0.75em;
    font-size: 1rem;
  }
}
.occupation-section__content {
  padding-top: 5rem;
}
@media all and (max-width: 740px) {
  .occupation-section__content {
    padding-top: 2.5rem;
  }
}
.occupation-section__btWrap {
  display: flex;
  justify-content: center;
  gap: 1.875rem;
}
@media all and (max-width: 740px) {
  .occupation-section__btWrap {
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
    max-width: 21.25rem;
    margin-left: auto;
    margin-right: auto;
  }
}
.occupation-section__btWrap .commonBT {
  max-width: 23.125rem;
  width: auto;
}
@media all and (max-width: 740px) {
  .occupation-section__btWrap .commonBT {
    width: 100%;
    padding-left: 1.5em;
    padding-right: 1.5em;
  }
}
.occupation-section__btWrap .commonBT:last-child {
  background-color: #c3d82e;
}
@media (hover: none) {
  .occupation-section__btWrap .commonBT:last-child {
    transition: none !important;
  }
}
@media (hover: hover) {
  .occupation-section__btWrap .commonBT:last-child:hover {
    background-color: #eef7e6;
  }
}
.occupation-section__btWrap .commonBT:last-child:active {
  background-color: #eef7e6;
}
.occupation-section__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}
@media all and (max-width: 740px) {
  .occupation-section__list {
    grid-template-columns: 1fr;
  }
}
.occupation-section__business {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.3em 1em;
}
.occupation-section__career {
  display: flex;
  flex-direction: column;
  gap: 3.75rem;
}
@media all and (max-width: 740px) {
  .occupation-section__career {
    font-size: 0.875rem;
    gap: 2.5rem;
  }
}
.occupation-section__career__heading {
  display: flex;
  align-items: center;
  font-size: 1.25rem;
  font-weight: 600;
  color: #7fbf42;
  line-height: 1.1;
  margin-bottom: 1em;
}
@media all and (max-width: 740px) {
  .occupation-section__career__heading {
    font-size: 1rem;
  }
}
.occupation-section__career__heading .num {
  font-size: 1.5em;
  flex-shrink: 0;
  border-right: 0.0625rem solid #7fbf42;
  padding-right: 0.4em;
  margin-right: 0.4em;
}

.info-welfareList {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3.125rem;
  max-width: 45.625rem;
}
@media all and (max-width: 1080px) {
  .info-welfareList {
    gap: 1.875rem;
    max-width: 40rem;
    margin-left: auto;
    margin-right: auto;
  }
}
@media all and (max-width: 740px) {
  .info-welfareList {
    gap: 0.625rem;
  }
}
.info-welfareList__item {
  position: relative;
  cursor: pointer;
  transition: all 0.2s ease 0s;
}
.info-welfareList__item:hover {
  text-decoration: none;
}
@media (hover: none) {
  .info-welfareList__item {
    transition: none !important;
  }
}
@media (hover: hover) {
  .info-welfareList__item:hover {
    filter: brightness(1.05);
  }
}
.info-welfareList__item:active {
  filter: brightness(1.05);
}
.info-welfareList__heading {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 5;
  translate: -50% -50%;
  width: 100%;
  color: #fff;
  font-size: 1.25rem;
  text-align: center;
}
@media all and (max-width: 740px) {
  .info-welfareList__heading {
    font-size: 0.8125rem;
  }
}
.info-welfareList .img img {
  width: 100%;
}

.welfare-single {
  padding: 3.125rem 3.125rem 3.75rem;
  font-size: 0.875rem;
}
.welfare-single .title {
  display: flex;
  justify-content: center;
  text-align: center;
  font-size: 1.5rem;
  color: #7fbf42;
  padding-bottom: 0.6em;
  margin-bottom: 1.2em;
  position: relative;
  line-height: 1.4;
}
@media all and (max-width: 740px) {
  .welfare-single .title {
    font-size: 1.25rem;
  }
}
.welfare-single .title:after {
  content: "";
  width: 3.25em;
  height: 0.1875rem;
  background-color: #7fbf42;
  position: absolute;
  bottom: 0;
  left: 50%;
  translate: -50% 0;
}
.welfare-single .text {
  max-width: 25rem;
  margin: 0 auto;
}

.info-flowNav {
  display: grid;
  grid-template-columns: 0.8fr 0.9fr 1fr;
  border: 0.125rem solid #7fbf42;
}
@media all and (max-width: 740px) {
  .info-flowNav {
    grid-template-columns: 0.8fr 1fr 0.9fr;
  }
}
.info-flowNav a {
  border-left: 0.125rem solid #7fbf42;
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.4;
  font-size: 0.9375rem;
  font-weight: 500;
  padding: 0.75em 0.75em 0.1em;
  transition: all 0.2s ease 0s;
  color: #7fbf42;
  text-align: center;
}
.info-flowNav a:hover {
  text-decoration: none;
}
@media all and (max-width: 740px) {
  .info-flowNav a {
    font-size: 0.6875rem;
  }
}
@media (hover: none) {
  .info-flowNav a {
    transition: none !important;
  }
}
@media (hover: hover) {
  .info-flowNav a:hover {
    color: #fff;
    background-color: #7fbf42;
  }
}
.info-flowNav a:active {
  color: #fff;
  background-color: #7fbf42;
}
.info-flowNav a:first-child {
  border-left: 0;
}
.info-flowNav a:after {
  content: "›";
  font-size: 1.6em;
  line-height: 1;
  rotate: 90deg;
}

.info-selection-process {
  display: flex;
  justify-content: center;
  gap: 3.375rem;
}
@media all and (max-width: 740px) {
  .info-selection-process {
    gap: 1.875rem;
  }
}
.info-selection-process li {
  min-width: 6.25rem;
  background-color: rgba(126, 191, 66, 0.3);
  color: #7fbf42;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 3em 0.75em;
  font-weight: 600;
  border-radius: 0.625rem;
  position: relative;
}
@media all and (max-width: 740px) {
  .info-selection-process li {
    min-width: 4.375rem;
    line-height: 1.4;
  }
}
.info-selection-process li.final {
  background-color: #7fbf42;
  color: #fff;
}
.info-selection-process li:not(:first-child)::before {
  content: "";
  width: 0.875rem;
  height: 1.625rem;
  background-color: #7fbf42;
  position: absolute;
  left: -1.75rem;
  top: 50%;
  translate: -50% -50%;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}
@media all and (max-width: 740px) {
  .info-selection-process li:not(:first-child)::before {
    width: 0.625rem;
    height: 1.125rem;
    left: -0.9375rem;
  }
}
.info-selection-process span {
  writing-mode: vertical-rl;
}

.faq-nav {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border: 0.125rem solid #7fbf42;
  background-color: #7fbf42;
  gap: 0.125rem;
}
@media all and (max-width: 740px) {
  .faq-nav {
    grid-template-columns: 1fr;
  }
}
.faq-nav a {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #7fbf42;
  transition: all 0.2s ease 0s;
  line-height: 1.25;
  padding: 1em 0.5em 0.1em;
  font-size: 0.9375rem;
  font-weight: 500;
  background-color: #fff;
}
.faq-nav a:hover {
  text-decoration: none;
}
@media (hover: none) {
  .faq-nav a {
    transition: none !important;
  }
}
@media (hover: hover) {
  .faq-nav a:hover {
    background-color: #7fbf42;
    color: #fff;
  }
}
.faq-nav a:active {
  background-color: #7fbf42;
  color: #fff;
}
@media all and (max-width: 740px) {
  .faq-nav a {
    justify-content: space-between;
    flex-direction: row;
    padding: 0.75em 1em;
  }
  .faq-nav a br {
    display: none;
  }
}
.faq-nav a .arrow {
  line-height: 1;
  rotate: 90deg;
  font-size: 1.6em;
  translate: 50% 0;
}

.faq-wrap {
  display: flex;
  flex-direction: column;
  max-width: 50rem;
  margin-left: auto;
  margin-right: auto;
}

.faq-section {
  padding-top: 5rem;
}
@media all and (max-width: 740px) {
  .faq-section {
    padding-top: 3.75rem;
  }
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.faq-list__dt {
  padding: 1em 1.5em;
  border: 0.0625rem solid #a9a9a9;
  display: flex;
  justify-content: space-between;
  gap: 1em;
  align-items: center;
  cursor: pointer;
  font-weight: 500;
}
.faq-list__dt:after {
  content: "";
  width: 0.75em;
  height: 0.75em;
  transition: all 0.2s ease 0s;
  border: 0.09375rem solid #a9a9a9;
  translate: 0 -25%;
  rotate: 45deg;
  border-left-color: transparent;
  border-top-color: transparent;
  flex-shrink: 0;
}
.faq-list__dt:after:hover {
  text-decoration: none;
}
.faq-list__dt.active:after {
  rotate: -135deg;
  translate: 0 25%;
}
@media all and (max-width: 740px) {
  .faq-list__dt {
    padding: 0.75em 1em 0.75em 0.75em;
    font-size: 0.875rem;
  }
}
.faq-list__dd {
  padding-top: 1em;
  font-weight: 400;
  font-size: 0.875rem;
  display: none;
}

.info-footLink__heading {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #fff;
}
.info-footLink__heading .main {
  font-size: 3.75rem;
  line-height: 1;
  letter-spacing: 0.1em;
  font-weight: bold;
  margin-bottom: 0.2em;
}
@media all and (max-width: 740px) {
  .info-footLink__heading .main {
    font-size: 2.25rem;
  }
}
.info-footLink__list {
  max-width: 46.875rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.25rem;
}
@media all and (max-width: 740px) {
  .info-footLink__list {
    grid-template-columns: 1fr;
    max-width: 22.5rem;
    margin: 0 auto;
  }
}
.info-footLink__list .img {
  aspect-ratio: 240/174;
}
@media all and (max-width: 740px) {
  .info-footLink__list .img {
    aspect-ratio: 240/150;
  }
}
.info-footLink__list .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.info-footLink__list a {
  display: block;
  transition: opacity 0.3s ease 0s;
  position: relative;
}
@media (hover: none) {
  .info-footLink__list a {
    transition: none !important;
  }
}
@media (hover: hover) {
  .info-footLink__list a:hover {
    opacity: 0.8;
    text-decoration: none;
  }
}
.info-footLink__list a:active {
  opacity: 0.8;
  text-decoration: none;
}
.info-footLink__list .text {
  background-color: #51a600;
  display: flex;
  align-items: center;
  color: #fff;
  justify-content: space-between;
  gap: 1em;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.5em 0.75em;
  position: relative;
}
@media all and (max-width: 740px) {
  .info-footLink__list .text {
    position: absolute;
    z-index: 5;
    bottom: 0;
    left: 0;
    width: 100%;
    text-align: center;
    justify-content: center;
  }
}
.info-footLink__list .text:after {
  content: "›";
  font-size: 1.6em;
  line-height: 1;
  margin-top: -0.125em;
  transition: all 0.2s ease 0s;
  position: absolute;
  right: 0.35em;
  top: 50%;
  translate: 0 -50%;
}
.info-footLink__list .text:after:hover {
  text-decoration: none;
}
@media all and (max-width: 740px) {
  .info-footLink__list .text:after {
    right: 1em;
  }
}

.category-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
}
.category-nav > a {
  line-height: 1.2;
  font-size: 0.875rem;
  padding: 0.4em 0.75em;
  min-width: 7em;
  background-color: #7fbf42;
  color: #fff;
  border-radius: 5em;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  transition: all 0.2s ease 0s;
}
.category-nav > a:hover {
  text-decoration: none;
}
.category-nav > a.all {
  background-color: #a9a9a9;
}
.category-nav > a.internship {
  background-color: #c2d82d;
}
.category-nav > a.other {
  background-color: #fff200;
  color: #000;
}
@media (hover: none) {
  .category-nav > a {
    transition: none !important;
  }
}
@media (hover: hover) {
  .category-nav > a:hover {
    opacity: 0.7;
  }
}
.category-nav > a:active {
  opacity: 0.7;
}
@media all and (max-width: 740px) {
  .category-nav > a {
    font-size: 0.8125rem;
    min-width: 6em;
  }
}

.single-category-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem 0.625rem;
}
@media all and (max-width: 740px) {
  .single-category-nav {
    gap: 0.5rem;
  }
}
.single-category-nav > a {
  line-height: 1.2;
  font-size: 0.875rem;
  padding: 0.4em 0.75em;
  min-width: 7em;
  border-radius: 5em;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-color: #7fbf42;
  color: #fff;
  transition: all 0.2s ease 0s;
}
.single-category-nav > a:hover {
  text-decoration: none;
}
.single-category-nav > a.internship {
  background-color: #c2d82d;
}
.single-category-nav > a.other {
  background-color: #fff200;
  color: #000;
}
@media (hover: none) {
  .single-category-nav > a {
    transition: none !important;
  }
}
@media (hover: hover) {
  .single-category-nav > a:hover {
    opacity: 0.7;
  }
}
.single-category-nav > a:active {
  opacity: 0.7;
}
@media all and (max-width: 740px) {
  .single-category-nav > a {
    font-size: 0.8125rem;
    min-width: 6em;
  }
}

.pager {
  margin-top: 3.75rem;
}
@media all and (max-width: 740px) {
  .pager {
    margin-top: 2.5rem;
  }
}
.pager .nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.625rem;
}
.pager .nav-links .prev span {
  scale: 0.8 2;
}
.pager .nav-links .next span {
  scale: 0.8 2;
}
.pager .nav-links a {
  background-color: #dfdfdf;
  min-width: 2.25rem;
  height: 2.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0.3em;
  font-size: 0.875rem;
  color: #000;
  border-radius: 0.375rem;
  transition: all 0.2s ease 0s;
}
.pager .nav-links a:hover {
  text-decoration: none;
}
@media (hover: none) {
  .pager .nav-links a {
    transition: none !important;
  }
}
@media (hover: hover) {
  .pager .nav-links a:hover {
    opacity: 0.7;
  }
}
.pager .nav-links a:active {
  opacity: 0.7;
}
.pager .nav-links span.current {
  background-color: #fff;
  min-width: 2.25rem;
  height: 2.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0.3em;
  font-size: 0.875rem;
  background-color: #a9a9a9;
  color: #fff;
  border-radius: 0.375rem;
}

.articleSingle__header {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.625rem 1.25rem;
}
.articleSingle__header .dateWrap {
  display: flex;
  align-items: center;
  font-size: 1.125rem;
  gap: 1.5em;
}
@media all and (max-width: 740px) {
  .articleSingle__header .dateWrap {
    font-size: 0.875rem;
  }
}
.articleSingle__header .dateWrap .date {
  display: flex;
  align-items: center;
  gap: 0.3em;
}
.articleSingle__header .dateWrap .date .icon {
  height: 1.15em;
  width: auto;
}
.articleSingle__header .dateWrap .date .icon img {
  height: 100%;
  width: auto;
}
.articleSingle__header .title {
  width: 100%;
  font-size: 1.5rem;
  padding-bottom: 0.5em;
  border-bottom: 0.0625rem solid #000;
}
@media all and (max-width: 740px) {
  .articleSingle__header .title {
    font-size: 1.125rem;
  }
}
.articleSingle__header__img {
  width: 100%;
  margin-top: 1.25rem;
}
@media all and (max-width: 740px) {
  .articleSingle__header__img {
    margin-top: 1.25rem;
  }
}
.articleSingle__header__img img {
  width: 100%;
}

#ez-toc-container {
  margin: 3.75rem 0;
  padding: 5rem 2.5rem 3.75rem;
  border: 0;
  background-color: #fff;
  border-top: 0.125rem solid #7fbf42;
  border-bottom: 0.125rem solid #7fbf42;
  position: relative;
  border-radius: 0;
}
@media all and (max-width: 740px) {
  #ez-toc-container {
    padding: 3.75rem 0.9375rem 2.5rem;
  }
}
#ez-toc-container .ez-toc-title-container {
  position: absolute;
  font-size: 1.125rem;
  color: #fff;
  top: 0;
  left: 0;
  background-size: cover;
  background-position: bottom right;
  background-image: url(../images/common/heading_bg.webp);
  width: auto;
  padding: 0.2em 3em 0.2em 2em;
}
@media all and (max-width: 740px) {
  #ez-toc-container .ez-toc-title-container {
    font-size: 1rem;
  }
}
#ez-toc-container .ez-toc-title-container .ez-toc-title {
  color: #fff !important;
}
#ez-toc-container .ez-toc-title-container:before {
  content: "";
}
#ez-toc-container .ez-toc-heading-level-2 {
  font-size: 1rem !important;
  margin-bottom: 1.4em;
}
#ez-toc-container .ez-toc-heading-level-2:last-child {
  margin-bottom: 0;
}
@media all and (max-width: 740px) {
  #ez-toc-container .ez-toc-heading-level-2 {
    font-size: 0.875rem !important;
  }
}
#ez-toc-container .ez-toc-heading-level-2 > .ez-toc-link {
  display: flex;
  align-items: flex-start;
}
#ez-toc-container .ez-toc-heading-level-2 > .ez-toc-link:before {
  content: counters(item, ".", decimal);
  color: #7fbf42 !important;
  font-size: 1.375rem;
  margin-right: 0.5em;
  line-height: 1;
  padding-right: 0.5em;
  border-right: 0.125rem solid #7fbf42;
}
#ez-toc-container .ez-toc-list-level-3 {
  margin-top: 1em;
  display: flex;
  flex-direction: column;
  gap: 0.5em;
}
#ez-toc-container .ez-toc-heading-level-3 {
  font-size: 0.8em !important;
  display: flex;
  padding-left: 1em;
}
#ez-toc-container .ez-toc-heading-level-3 > .ez-toc-link:before {
  display: none;
}
#ez-toc-container a {
  color: #000 !important;
}

.singleContent {
  font-weight: normal;
}
.singleContent > * {
  margin-bottom: 60px;
}
@media all and (max-width: 740px) {
  .singleContent > * {
    margin-bottom: 2.5rem;
  }
}
.singleContent > *:last-child {
  margin-bottom: 0;
}
.singleContent a {
  color: #7fbf42;
}
.singleContent strong {
  font-weight: bold;
}
.singleContent em {
  background-image: linear-gradient(to top, #d8ecc6 0%, #d8ecc6 49.999%, transparent 50%);
}
.singleContent p {
  margin-bottom: 60px;
}
.singleContent p + p {
  margin-top: -2em;
}
@media all and (max-width: 740px) {
  .singleContent p {
    margin-bottom: 2.5rem;
  }
}
.singleContent p:last-child {
  margin-bottom: 0;
}
.singleContent .wp-block-quote {
  padding: 2em 1.5em;
  border-top: 0.0625rem solid #000;
  border-bottom: 0.0625rem solid #000;
}
.singleContent .lkc-content {
  display: flex;
  align-items: center;
}
.singleContent .lkc-content .lkc-thumbnail {
  flex-shrink: 0;
}
.singleContent ul.wp-block-list {
  list-style-type: disc;
  list-style-position: outside;
  padding-left: 1.5em;
}
.singleContent ol.wp-block-list {
  list-style-type: decimal;
  list-style-position: outside;
  padding-left: 1.5em;
}
.singleContent h2.wp-block-heading {
  font-size: 1.375rem;
  line-height: 1.4;
  margin-bottom: 2.5rem;
  padding-left: 0.3em;
  font-weight: bold;
  border-left: 0.375rem solid #7fbf42;
  padding-left: 0.7em;
  position: relative;
}
@media all and (max-width: 740px) {
  .singleContent h2.wp-block-heading {
    font-size: 1.125rem;
    margin-bottom: 2.5rem;
  }
}
.singleContent h2.wp-block-heading:last-child {
  margin-bottom: 0;
}
.singleContent h3.wp-block-heading {
  font-size: 1.125rem;
  margin-bottom: 2.5rem;
  font-weight: bold;
  color: #7fbf42;
}
@media all and (max-width: 740px) {
  .singleContent h3.wp-block-heading {
    font-size: torem-sp(16);
    margin-bottom: 2.5rem;
  }
}
.singleContent h3.wp-block-heading:last-child {
  margin-bottom: 0;
}
.singleContent h4.wp-block-heading,
.singleContent h5.wp-block-heading,
.singleContent h6.wp-block-heading {
  font-weight: bold;
  margin-bottom: 2.5rem;
}
@media all and (max-width: 740px) {
  .singleContent h4.wp-block-heading,
  .singleContent h5.wp-block-heading,
  .singleContent h6.wp-block-heading {
    margin-bottom: 2.5rem;
  }
}
.singleContent h4.wp-block-heading:last-child,
.singleContent h5.wp-block-heading:last-child,
.singleContent h6.wp-block-heading:last-child {
  margin-bottom: 0;
}
.singleContent .commonBT {
  color: #fff;
}

.news-list__item {
  padding: 1.25em 0;
  border-bottom: 0.0625rem solid #b4b4b4;
  display: flex;
  align-items: center;
  gap: 0.75em;
}
@media all and (max-width: 740px) {
  .news-list__item {
    flex-wrap: wrap;
  }
}
.news-list__header {
  display: flex;
  align-items: center;
  gap: 0.75em;
  flex-shrink: 0;
}
.news-list__catWrap {
  min-width: 7em;
}
@media all and (max-width: 740px) {
  .news-list__catWrap {
    min-width: 6em;
  }
}
.news-list__cat {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1.4;
  background-color: #7fbf42;
  border-radius: 4em;
  color: #fff;
  font-size: 0.875rem;
  padding: 0.3em;
  transition: all 0.2s ease 0s;
}
.news-list__cat:hover {
  text-decoration: none;
}
.news-list__cat.internship {
  background-color: #c2d82d;
}
.news-list__cat.other {
  background-color: #fff200;
  color: #000;
}
@media (hover: none) {
  .news-list__cat {
    transition: none !important;
  }
}
@media (hover: hover) {
  .news-list__cat:hover {
    opacity: 0.7;
  }
}
.news-list__cat:active {
  opacity: 0.7;
}
@media all and (max-width: 740px) {
  .news-list__cat {
    font-size: 0.75rem;
  }
}
.news-list__title {
  flex: 1;
}
@media all and (max-width: 740px) {
  .news-list__title {
    flex: none;
    width: 100%;
  }
}

.contact-lead {
  margin-bottom: 3.125rem;
}
@media all and (min-width: 741px) {
  .contact-lead {
    padding-top: 2.5rem;
  }
}
.contact-lead__text {
  font-size: 1.125rem;
  position: relative;
  z-index: 5;
  text-align: center;
}
@media all and (max-width: 740px) {
  .contact-lead__text {
    font-size: 0.875rem;
  }
}
.contact-lead__img {
  width: 112%;
  max-width: 112%;
  position: relative;
  left: -7%;
  margin-top: -22%;
}
@media all and (max-width: 740px) {
  .contact-lead__img {
    margin-top: -23%;
  }
}

.contact-nav {
  max-width: 41.25rem;
  margin-left: auto;
  margin-right: auto;
}
.contact-nav > div {
  margin-bottom: 1.875rem;
}
.contact-nav > div:last-child {
  margin-bottom: 0;
}
.contact-nav a {
  position: relative;
  display: block;
  transition: opacity 0.3s ease 0s;
}
@media (hover: none) {
  .contact-nav a {
    transition: none !important;
  }
}
@media (hover: hover) {
  .contact-nav a:hover {
    opacity: 0.8;
    text-decoration: none;
  }
}
.contact-nav a:active {
  opacity: 0.8;
  text-decoration: none;
}
.contact-nav .img {
  overflow: hidden;
  border-radius: 0.625rem;
}
.contact-nav .text {
  display: flex;
  align-items: center;
  padding: 0.25em 1.25rem 0.25em 0.625rem;
  position: absolute;
  bottom: 0;
  right: 0;
  background-color: #7fbf42;
  color: #fff;
  gap: 0.8em;
  font-weight: 500;
  transition: opacity 0.3s ease 0s;
  border-radius: 0 0 0.625rem 0;
}
@media (hover: none) {
  .contact-nav .text {
    transition: none !important;
  }
}
@media (hover: hover) {
  .contact-nav .text:hover {
    opacity: 0.8;
    text-decoration: none;
  }
}
.contact-nav .text:active {
  opacity: 0.8;
  text-decoration: none;
}
@media all and (max-width: 740px) {
  .contact-nav .text {
    font-size: 0.875rem;
  }
}
.contact-nav .text:before {
  content: "";
  width: 5rem;
  height: 100%;
  position: absolute;
  left: -0.625rem;
  top: 0;
  background-color: #7fbf42;
  border-radius: 0.375rem 0 0 0;
  transform-origin: right top;
  transform: skew(-35deg);
}
.contact-nav .text > span {
  position: relative;
  z-index: 5;
}
.contact-nav .text:after {
  content: "›";
  font-size: 2em;
  line-height: 1;
  margin-top: -0.225em;
  transition: all 0.2s ease 0s;
  top: 50%;
}
.contact-nav .text:after:hover {
  text-decoration: none;
}
@media all and (max-width: 740px) {
  .contact-nav .text:after {
    right: 1em;
  }
}

.contact-btWrap {
  max-width: 30.375rem;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  gap: 1.875rem;
}
.contact-btWrap .commonBT {
  max-width: 100%;
}

.contact-btHeading {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  text-align: center;
  margin-bottom: 1.25rem;
  gap: 1.5em;
  font-size: 1.125rem;
}
.contact-btHeading:before, .contact-btHeading:after {
  content: "";
  height: 1.4em;
  width: 0.125rem;
  background-color: #000;
  rotate: -15deg;
}
.contact-btHeading:after {
  rotate: 15deg;
}

.contact-faqLink {
  font-size: 1.5rem;
  color: #7fbf42;
  font-weight: 600;
  padding: 0.3em 1.2em;
  position: relative;
  border-bottom: 0.1875rem solid #7fbf42;
  transition: opacity 0.3s ease 0s;
}
@media (hover: none) {
  .contact-faqLink {
    transition: none !important;
  }
}
@media (hover: hover) {
  .contact-faqLink:hover {
    opacity: 0.8;
    text-decoration: none;
  }
}
.contact-faqLink:active {
  opacity: 0.8;
  text-decoration: none;
}
@media all and (max-width: 740px) {
  .contact-faqLink {
    font-size: 1.25rem;
  }
}
.contact-faqLink:after {
  content: "";
  width: 0.25rem;
  height: 0.6em;
  background-color: #7fbf42;
  position: absolute;
  bottom: -0.1875rem;
  right: -0.1875rem;
  transform-origin: right bottom;
  transform: skew(35deg);
}

.commonHeading5 + table {
  margin-top: 2.5rem;
}
@media all and (max-width: 740px) {
  .commonHeading5 + table {
    margin-top: 1.875rem;
  }
}

.formWrap {
  max-width: 53.75rem;
  padding: 3.75rem 1.875rem;
  border-radius: 1.25rem;
  border: 0.0625rem solid #7fbf42;
  margin-left: auto;
  margin-right: auto;
}
.formWrap__inner {
  max-width: 45.625rem;
  margin: 0 auto;
}

.form-step {
  max-width: 41.875rem;
  margin: 0 auto 3.125rem;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 4.375rem;
}
@media all and (max-width: 740px) {
  .form-step {
    gap: 1.875rem;
  }
}
.form-step li {
  position: relative;
}
.form-step li:not(:first-child)::before {
  content: "";
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  width: 0.8em;
  height: 0.8em;
  border: 0.125rem solid transparent;
  rotate: 45deg;
  border-top-color: #7fbf42;
  border-right-color: #7fbf42;
  left: -2.8125rem;
}
@media all and (max-width: 740px) {
  .form-step li:not(:first-child)::before {
    width: 0.5em;
    height: 0.5em;
    left: -1.5625rem;
  }
}
.form-step .content {
  position: absolute;
  z-index: 5;
  width: 100%;
  left: 0;
  top: 50%;
  translate: 0 -50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: #fff;
  font-size: 1.125rem;
}
@media all and (max-width: 740px) {
  .form-step .content {
    font-size: 0.875rem;
  }
}
.form-step .content .step {
  font-weight: 600;
  margin-bottom: 0.5em;
  position: relative;
  line-height: 1.2;
  padding-bottom: 0.6em;
}
.form-step .content .step:after {
  content: "";
  width: 2em;
  height: 0.125rem;
  background-color: #e1e1e1;
  position: absolute;
  bottom: 0;
  left: 50%;
  translate: -50% 0;
}
.form-step .content .text {
  font-size: 1.1111111111em;
}
.form-step .img img {
  width: 100%;
}

.formTable1 {
  width: 100%;
}
@media all and (max-width: 740px) {
  .formTable1 {
    font-size: 0.875rem;
  }
}
.formTable1 .birth {
  display: flex;
  justify-content: flex-start;
  gap: 0.3125rem;
}
.formTable1 th {
  width: 250px;
  vertical-align: top;
  text-align: right;
  padding: 1em 0;
  font-size: 1.125rem;
  font-weight: 500;
}
@media all and (min-width: 741px) {
  .formTable1 th.large {
    width: 300px;
  }
}
.formTable1 th.large + td {
  padding-bottom: 2.5em;
}
@media all and (max-width: 740px) {
  .formTable1 th {
    font-size: 1rem;
    border-bottom: 0;
    padding: 1em 0 0;
    text-align: left;
    border-top: 0.0625rem solid #e1e1e1;
  }
}
.formTable1 td {
  padding: 1em 1.5em;
}
@media all and (max-width: 740px) {
  .formTable1 td {
    padding: 1em 0;
  }
}
@media all and (max-width: 740px) {
  .formTable1 tr,
  .formTable1 th,
  .formTable1 td {
    display: block;
    width: 100%;
  }
}

.formContainer span.required {
  display: inline-block;
  vertical-align: middle;
  font-size: 0.7777777778em;
  padding: 0.2em 0.5em;
  line-height: 1.2;
  text-align: center;
  background-color: #fff200;
}
.formContainer span.optional {
  display: inline-block;
  vertical-align: middle;
  font-size: 0.7777777778em;
  padding: 0.2em 0.5em;
  line-height: 1.2;
  text-align: center;
  background-color: #e1e1e1;
}
.formContainer .row {
  display: flex;
  align-items: center;
  gap: 0.5em;
  margin-bottom: 0.5em;
}
.formContainer .row span:first-child {
  min-width: 3em;
}
.formContainer .row:last-child {
  margin-bottom: 0;
}
.formContainer input[type=text],
.formContainer input[type=email],
.formContainer input[type=tel],
.formContainer input[type=date],
.formContainer textarea,
.formContainer select {
  margin: 0;
  background: none;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  border: 0;
  box-shadow: 0;
  appearance: none;
  font-size: 1rem;
  padding: 0.75em 1em;
  display: block;
  background-color: #ececec;
  width: 100%;
}
@media all and (max-width: 740px) {
  .formContainer input[type=text],
  .formContainer input[type=email],
  .formContainer input[type=tel],
  .formContainer input[type=date],
  .formContainer textarea,
  .formContainer select {
    width: 100%;
  }
}
.formContainer select {
  background-image: url(../images/common/select_arrow.webp);
  background-position: right 0.7em center;
  background-repeat: no-repeat;
  background-size: 0.6em;
  padding-right: 2.5em;
}
.formContainer .wpcf7-select {
  color: #999;
}
.formContainer .wpcf7-checkbox {
  display: flex;
  flex-direction: column;
  gap: 0.75em;
}
.formContainer .wpcf7-radio {
  display: flex;
  gap: 0.5em 2em;
}
.formContainer .wpcf7-list-item {
  margin: 0;
  display: flex;
  align-items: center;
}
.formContainer .wpcf7-list-item-label {
  position: relative;
  padding-left: 1.5rem;
  cursor: pointer;
}
.formContainer .wpcf7-list-item input[type=checkbox] {
  display: none;
}
.formContainer .wpcf7-list-item input[type=radio] {
  display: none;
}
.formContainer .wpcf7-checkbox .wpcf7-list-item-label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.3rem;
  width: 1rem;
  height: 1rem;
  border: 0.0625rem solid #000;
  background-color: #fff;
  box-sizing: border-box;
}
.formContainer .wpcf7-acceptance .wpcf7-list-item-label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.3rem;
  width: 1rem;
  height: 1rem;
  background-color: #e1e1e1;
  box-sizing: border-box;
}
.formContainer .wpcf7-radio .wpcf7-list-item-label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.3rem;
  width: 1rem;
  height: 1rem;
  border: 0.0625rem solid #000;
  background-color: #fff;
  box-sizing: border-box;
  border-radius: 50%;
}
.formContainer .wpcf7-list-item input[type=checkbox]:checked + .wpcf7-list-item-label::after {
  content: "";
  position: absolute;
  left: 0.25rem;
  top: 0.55rem;
  width: 0.5rem;
  height: 0.5rem;
  background-color: #7fbf42;
}
.formContainer .wpcf7-list-item input[type=radio]:checked + .wpcf7-list-item-label::after {
  content: "";
  position: absolute;
  left: 0.25rem;
  top: 0.55rem;
  width: 0.5rem;
  height: 0.5rem;
  background-color: #7fbf42;
  border-radius: 50%;
}
.formContainer .acceptance {
  display: flex;
  justify-content: center;
  margin-bottom: 2.5rem;
}
.formContainer .acceptance a {
  color: #00a0e9;
}

.confirm_area,
.thanks_area {
  display: none;
}

.btn-confirm:disabled {
  background-color: #ddd;
  pointer-events: none;
}

.formWrap__btWrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1em;
}
.formWrap__btWrap .btn-back:after {
  right: auto;
  left: 0.5em;
  scale: -1 1;
}

.company-nav {
  max-width: 38.125rem;
  margin: 0 auto;
  display: block;
}
.company-nav > div {
  margin-bottom: 1.875rem;
}
.company-nav > div:last-child {
  margin-bottom: 0;
}
.company-nav__link {
  display: block;
  flex: 1;
  position: relative;
  padding-left: 0.875rem;
  transition: all 0.2s ease 0s;
}
.company-nav__link:hover {
  text-decoration: none;
}
@media (hover: none) {
  .company-nav__link {
    transition: none !important;
  }
}
@media (hover: hover) {
  .company-nav__link:hover {
    opacity: 0.7;
  }
}
.company-nav__link:active {
  opacity: 0.7;
}
.company-nav__link .content {
  position: absolute;
  left: 0;
  top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.3125rem;
  align-items: flex-start;
  line-height: 1;
  z-index: 5;
}
@media all and (max-width: 740px) {
  .company-nav__link .content {
    top: 1.875rem;
  }
}
.company-nav__link .content .main {
  font-weight: bold;
  font-size: 1.875rem;
  padding: 0.4rem 0.6rem 0.35rem;
  background-color: #fff;
  color: #7fbf42;
}
@media all and (max-width: 740px) {
  .company-nav__link .content .main {
    font-size: 1.375rem;
  }
}
.company-nav__link .content .sub {
  font-weight: bold;
  font-size: 0.75rem;
  padding: 0.4rem 0.6rem 0.35rem;
  background-color: #fff;
  color: #7fbf42;
  display: flex;
  align-items: center;
  gap: 0.5em;
}
@media all and (max-width: 740px) {
  .company-nav__link .content .sub {
    font-size: 0.625rem;
  }
}
.company-nav__link .content .sub .arrow {
  height: 0.0625rem;
  width: 2em;
  position: relative;
  background-color: #7fbf42;
  margin-top: 0.3em;
}
.company-nav__link .content .sub .arrow:after {
  content: "";
  width: 0.125rem;
  height: 0.3125rem;
  background-color: #7fbf42;
  position: absolute;
  right: 0;
  bottom: 0;
  transform-origin: left bottom;
  transform: skew(50deg) translateX(90%);
}
.company-nav__img {
  aspect-ratio: 60/22;
  overflow: hidden;
  border-radius: 0.625rem;
  display: block;
  width: 100%;
}
.company-nav__img img {
  object-fit: cover;
  height: 100%;
  width: 100%;
}

.company-table {
  width: 100%;
  font-size: 0.875rem;
}
@media all and (max-width: 740px) {
  .company-table tr {
    display: block;
  }
  .company-table tr:last-child {
    border-bottom: 0.0625rem solid #000;
  }
}
.company-table th,
.company-table td {
  border: 0.0625rem solid #000;
}
@media all and (max-width: 740px) {
  .company-table th,
  .company-table td {
    display: block;
  }
}
.company-table th {
  padding: 1.5em;
  background-color: #e2e2e2;
  text-align: left;
  font-weight: bold;
  width: 11.25rem;
}
@media all and (max-width: 740px) {
  .company-table th {
    width: 100%;
    padding: 1em 1.5em;
  }
}
.company-table td {
  padding: 1.5em 2em;
}
@media all and (max-width: 740px) {
  .company-table td {
    border-top: 0;
    border-bottom: 0;
    padding: 1em 1.5em;
  }
}

.company-documents {
  font-size: 0.875rem;
  border: 0.0625rem solid #000;
  padding: 0 1em;
}
.company-documents li {
  padding: 0.65em 0;
  border-top: 0.0625rem solid #000;
}
.company-documents li:first-child {
  border-top: 0;
}
@media (hover: none) {
  .company-documents a {
    transition: none !important;
  }
}
@media (hover: hover) {
  .company-documents a:hover {
    color: #7fbf42;
  }
}
.company-documents a:active {
  color: #7fbf42;
}

.philosophy-heading {
  position: relative;
}
.philosophy-heading .img {
  margin: 0 auto;
  width: 13.25rem;
}
@media all and (max-width: 740px) {
  .philosophy-heading .img {
    width: 11.25rem;
  }
}
.philosophy-heading .img.offsetLeft {
  translate: 30% 0;
}
.philosophy-heading .text {
  position: absolute;
  top: 50%;
  left: 50%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-weight: bold;
  font-size: 1.5rem;
  z-index: 5;
  translate: -50% -50%;
  text-shadow: -0.125rem -0.125rem 0 white, 0px -0.125rem 0 white, 0.125rem -0.125rem 0 white, -0.125rem 0px 0 white, 0.125rem 0px 0 white, -0.125rem 0.125rem 0 white, 0px 0.125rem 0 white, 0.125rem 0.125rem 0 white;
}
@media all and (max-width: 740px) {
  .philosophy-heading .text {
    font-size: 1.25rem;
  }
}
.philosophy-heading .text.offsetTop {
  margin-top: 1.4em;
}
.philosophy-heading .text .small {
  font-size: 0.75em;
}

.philosophy-box1 {
  display: flex;
  gap: 1.875rem;
}
@media all and (max-width: 740px) {
  .philosophy-box1 {
    flex-direction: column;
  }
}
.philosophy-box1 .list {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  font-weight: bold;
}
@media all and (max-width: 740px) {
  .philosophy-box1 .list {
    gap: 1.875rem;
  }
}
.philosophy-box1 .list li {
  display: flex;
  align-items: center;
}
.philosophy-box1 .list .num {
  font-size: 2.125rem;
  flex-shrink: 0;
  color: #7fbf42;
  padding-right: 0.4em;
}
@media all and (max-width: 740px) {
  .philosophy-box1 .list .num {
    font-size: 1.5rem;
  }
}
.philosophy-box1 .list .text {
  font-size: 1.25rem;
  padding-left: 0.75em;
  border-left: 0.125rem solid #7fbf42;
}
@media all and (max-width: 740px) {
  .philosophy-box1 .list .text {
    font-size: 1rem;
  }
}
.philosophy-box1 .imgWrap {
  flex: 0.4;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.625rem;
}
@media all and (max-width: 740px) {
  .philosophy-box1 .imgWrap {
    grid-template-columns: 1fr 1fr;
  }
}
.philosophy-box1 .imgWrap img {
  width: 100%;
}

.philosophy-box2 {
  display: flex;
  flex-direction: column;
  gap: 3.75rem;
}
@media all and (max-width: 740px) {
  .philosophy-box2 {
    gap: 2.5rem;
  }
}
.philosophy-box2 li {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}
.philosophy-box2 li .num {
  text-align: center;
  font-weight: bold;
  color: #7fbf42;
  font-size: 1.875rem;
  border-bottom: 0.125rem solid #7fbf42;
}

.company-footLink__heading {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #fff;
}
.company-footLink__heading .main {
  font-size: 3.75rem;
  line-height: 1;
  letter-spacing: 0.1em;
  font-weight: bold;
  margin-bottom: 0.2em;
}
@media all and (max-width: 740px) {
  .company-footLink__heading .main {
    font-size: 2.25rem;
  }
}
.company-footLink__list {
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.875rem;
}
@media all and (max-width: 740px) {
  .company-footLink__list {
    grid-template-columns: 1fr;
  }
}
.company-footLink__list .company-nav__link .content {
  top: 1.125rem;
}
@media all and (min-width: 741px) {
  .company-footLink__list .company-nav__img {
    aspect-ratio: 38/22;
  }
}

.foot-contact {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url(../images/common/foot-contact_bg.webp);
  position: relative;
  z-index: 5;
}
.foot-contact__inner {
  max-width: 56.25rem;
  margin: 0 auto;
  padding: 0 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
@media all and (max-width: 740px) {
  .foot-contact__inner {
    padding: 0 0.625rem;
  }
}
.foot-contact__heading {
  width: 42%;
  position: relative;
  margin-top: -3.75rem;
}
@media all and (max-width: 740px) {
  .foot-contact__heading {
    margin-top: -1.875rem;
    width: 45%;
  }
}
.foot-contact__heading .text {
  font-size: 2rem;
  font-weight: bold;
  display: block;
  color: #7fbf42;
  position: absolute;
  text-align: center;
  z-index: 5;
  top: 48%;
  left: 50%;
  translate: -50% -50%;
  width: 100%;
}
@media all and (max-width: 740px) {
  .foot-contact__heading .text {
    font-size: 0.9375rem;
  }
}
.foot-contact__heading .img img {
  width: 100%;
}
.foot-contact__content {
  width: 54%;
  padding-top: 4.0625rem;
  padding-bottom: 4.0625rem;
}
@media all and (max-width: 740px) {
  .foot-contact__content {
    padding: 1.25rem 0 1.875rem;
  }
}
.foot-contact__text {
  color: #fff;
  font-size: 1.25rem;
  margin-bottom: 1.8em;
}
@media all and (max-width: 740px) {
  .foot-contact__text {
    font-size: 0.75rem;
    padding-left: 0.5em;
  }
}
.foot-contact .commonBT {
  max-width: 22.5rem;
}
@media all and (max-width: 740px) {
  .foot-contact .commonBT {
    min-width: 1px;
    font-size: 0.6875rem;
    padding-top: 0.625rem;
    padding-bottom: 0.625rem;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}

.mainFooter {
  background-color: #fff;
  padding: 3.125rem 0;
  position: relative;
  z-index: 10;
}
@media all and (max-width: 740px) {
  .mainFooter {
    padding: 1.25rem 0 2.5rem;
  }
}
.mainFooter__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
}
@media all and (max-width: 740px) {
  .mainFooter__inner {
    gap: 1.25rem;
  }
}
.mainFooter__logo {
  width: 17.375rem;
}
.mainFooter__logo a {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.mainFooter__logo a .sub {
  font-weight: 600;
}
@media all and (max-width: 740px) {
  .mainFooter__logo {
    width: 11.25rem;
  }
}
.mainFooter__logo img {
  width: 100%;
}
.mainFooter__nav {
  max-width: 54.25rem;
  margin: 0 auto;
}
@media all and (max-width: 740px) {
  .mainFooter__nav {
    max-width: calc(100% + 2.5rem);
    width: calc(100% + 2.5rem);
    position: relative;
    left: -1.25rem;
  }
}
.mainFooter__nav__list {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  column-gap: 2rem;
  row-gap: 1.5rem;
}
@media all and (max-width: 740px) {
  .mainFooter__nav__list {
    gap: 0;
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: normal;
  }
}
@media all and (min-width: 741px) {
  .mainFooter__nav__list > li:nth-child(1) {
    grid-column: 1;
    grid-row: 1;
  }
  .mainFooter__nav__list > li:nth-child(2) {
    grid-column: 1;
    grid-row: 2;
  }
}
@media all and (min-width: 741px) and (min-width: 741px) {
  .mainFooter__nav__list > li:nth-child(2) {
    margin-top: -1.5em;
  }
}
@media all and (min-width: 741px) {
  .mainFooter__nav__list > li:nth-child(3) {
    grid-column: 2;
    grid-row: 1/span 4;
  }
  .mainFooter__nav__list > li:nth-child(4) {
    grid-column: 3;
    grid-row: 1/span 4;
  }
  .mainFooter__nav__list > li:nth-child(5) {
    grid-column: 4;
    grid-row: 1/span 4;
  }
}
@media all and (max-width: 740px) {
  .mainFooter__nav__list li {
    border-top: 0.0625rem solid #c3d82e;
  }
  .mainFooter__nav__list li:last-child li:last-child {
    border-bottom: 0.0625rem solid #c3d82e;
  }
  .mainFooter__nav__list li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-decoration: none;
    padding: 1rem 1.5rem;
  }
  .mainFooter__nav__list li a:after {
    content: "›";
    font-size: 1.6rem;
    line-height: 1;
    margin-top: -0.2em;
    flex-shrink: 0;
  }
}
@media (max-width: 740px) and (hover: none) {
  .mainFooter__nav__list li a {
    transition: none !important;
  }
}
@media (max-width: 740px) and (hover: hover) {
  .mainFooter__nav__list li a:hover {
    background-color: #c3d82e;
    text-decoration: none;
  }
}
@media all and (max-width: 740px) {
  .mainFooter__nav__list li a:active {
    background-color: #c3d82e;
    text-decoration: none;
  }
}
.mainFooter__nav__list__link {
  display: block;
  font-weight: 600;
}
@media all and (min-width: 741px) {
  .mainFooter__nav__list__link {
    margin-bottom: 0.5rem;
  }
}
@media all and (min-width: 741px) {
  .mainFooter__nav__list__child li {
    margin-bottom: 0.625rem;
  }
}
.mainFooter__nav__list__child li a {
  display: flex;
}
.mainFooter__nav__list__child li a:before {
  content: "-";
  margin-right: 0.7em;
  flex-shrink: 0;
}
@media all and (max-width: 740px) {
  .mainFooter__nav__list__child li a {
    font-size: 0.875rem;
  }
  .mainFooter__nav__list__child li a span {
    width: 100%;
  }
}
.mainFooter__shorttime {
  width: 100%;
  max-width: 23.125rem;
}
@media all and (max-width: 740px) {
  .mainFooter__shorttime {
    width: auto;
    margin: 1.875rem 0;
  }
}
.mainFooter__shorttime .commonBT {
  width: 100%;
  max-width: 23.125rem;
}
@media all and (max-width: 740px) {
  .mainFooter__shorttime .commonBT {
    width: auto;
    font-size: 0.8125rem !important;
  }
}
.mainFooter__sns {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.5rem;
}
@media all and (max-width: 740px) {
  .mainFooter__sns {
    gap: 1.875rem 2.5rem;
    flex-wrap: wrap;
  }
}
.mainFooter__sns a {
  width: 2.625rem;
  transition: opacity 0.3s ease 0s;
}
@media (hover: none) {
  .mainFooter__sns a {
    transition: none !important;
  }
}
@media (hover: hover) {
  .mainFooter__sns a:hover {
    opacity: 0.8;
    text-decoration: none;
  }
}
.mainFooter__sns a:active {
  opacity: 0.8;
  text-decoration: none;
}
.mainFooter__sns a.text {
  width: auto;
  font-weight: 600;
  transition: all 0.2s ease 0s;
}
.mainFooter__sns a.text:hover {
  text-decoration: none;
}
@media (hover: none) {
  .mainFooter__sns a.text {
    transition: none !important;
  }
}
@media (hover: hover) {
  .mainFooter__sns a.text:hover {
    color: #7fbf42;
    opacity: 1;
  }
}
.mainFooter__sns a.text:active {
  color: #7fbf42;
  opacity: 1;
}
@media all and (max-width: 740px) {
  .mainFooter__sns .textWrap {
    width: 100%;
    display: flex;
    justify-content: center;
  }
}

.subFooter {
  padding: 0.625rem 0 3.125rem;
  line-height: 1.8;
  font-size: 0.875rem;
  font-weight: 400;
  text-align: center;
}
@media all and (max-width: 740px) {
  .subFooter {
    font-size: 0.75rem;
  }
}
.subFooter__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}