@charset "utf-8";
/* ↓↓↓ header ↓↓↓ */
.header {
  display: none;
}

@media screen and (max-width: 768px) {
  .header {
    display: flex;
  }

  .header .logo-wrap .logo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../img/top/logo_sp.png) no-repeat;
    background-size: cover;
    opacity: 1;
    transition: opacity 300ms ease;
  }

  .header.-change .logo-wrap .logo::before {
    opacity: 0;
  }

  .header.-change.-active .logo-wrap .logo::before {
    opacity: 1;
  }

  .header .logo-wrap .logo::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../img/common/logo_sp.png) no-repeat;
    background-size: cover;
    opacity: 0;
    transition: opacity 300ms ease;
  }

  .header.-change .logo-wrap .logo::after {
    opacity: 1;
  }

  .header.-change.-active .logo-wrap .logo::after {
    opacity: 0;
  }

  .header.-change .logo-wrap .sub {
    color: #000;
  }

  .header.-change.-active .logo-wrap .sub {
    color: #fff;
  }

  .header.-change .menu-btn span:nth-of-type(1),
  .header.-change .menu-btn span:nth-of-type(2),
  .header.-change .menu-btn span:nth-of-type(3) {
    background-color: #000;
  }

  .header.-change .menu-btn.-active span:nth-of-type(1),
  .header.-change .menu-btn.-active span:nth-of-type(2),
  .header.-change .menu-btn.-active span:nth-of-type(3) {
    background-color: #fff;
  }
}
/* ↑↑↑ header ↑↑↑ */

/* ↓↓↓ fv ↓↓↓ */
.fv {
  position: relative;
  width: 100%;
  container-type: inline-size;
}

.fv .image {
  display: block;
  width: 100%;
}
/* ↑↑↑ fv ↑↑↑ */

/* ↓↓↓ side-menu ↓↓↓ */
.side-menu {
  position: fixed;
  top: 60px;
  left: 12px;
  z-index: 4;
}

@media screen and (max-width: 768px) {
  .side-menu {
    display: none;
  }
}

.side-menu .logo {
  position: relative;
  width: 300px;
}

.side-menu .logo::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 300px;
  height: 66px;
  background: url(../img/common/logo.png) no-repeat;
  background-size: cover;
  opacity: 1;
  transition: opacity 300ms ease;
}

.side-menu .logo.-change::after {
  opacity: 0;
}

.side-menu .sub {
  font-size: 1.4rem;
  font-weight: 500;
  margin: 4px 0 0 36px;
}

.side-menu .sub.-change {
  color: #fff;
}

.side-menu .list {
  margin: 72px 0 0 36px;
}

.side-menu .list .item {
  display: block;
  width: fit-content;
  font-size: 1.4rem;
  font-weight: 500;
  margin-top: 16px;
}

.side-menu .list .item.-change {
  color: #fff;
}

.side-menu .list a.item {
  position: relative;
  padding-right: 21px;
}

.side-menu .list a.item::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #000;
  transition: width 300ms ease;
}

.side-menu .list a.item.-change::before {
  background-color: #fff;
}

@media screen and (min-width: 769px) {
  .side-menu .list a.item:hover::before {
    width: 100%;
  }
}

.side-menu .list a.item::after {
  content: '';
  position: absolute;
  translate: 0 -50%;
  top: 50%;
  right: 0;
  width: 13px;
  height: 13px;
  mask-image: url(../img/common/ex-link.svg);
  mask-repeat: no-repeat;
  mask-size: 13px 13px;
  background-color: #000;
  transition: background-color 300ms ease;
}

.side-menu .list a.item.-change::after {
  background-color: #fff;
}

.side-menu .list a.item.-internal {
  padding: 0;
}

.side-menu .list a.item.-internal::after {
  display: none;
}

.side-menu .list .item:first-child {
  margin-top: 0;
}

.side-menu .list .item.-small {
  font-size: 1.2rem;
  margin: 7px 0 0 16px;
}

.side-menu .list .item:nth-of-type(4) {
  margin-top: 10px;
}

.side-menu .entry {
  display: grid;
  width: 180px;
  height: 48px;
  background-color: #2F7048;
  margin: 75px 0 0 34px;
  align-items: center;
  justify-items: center;
  font-size: 1.6rem;
  font-weight: 600;
  font-family: var(--text-barlow);
  color: #fff;
  letter-spacing: 0.2em;
  border: 1px solid #2F7048;
  transition: background-color 300ms ease, color 300ms ease;
}

.side-menu .entry.-change {
  background-color: #fff;
  border: unset;
  color: #2F7048;
}

@media screen and (min-width: 769px) {
  .side-menu .entry:hover {
    color: #2F7048;
    background-color: #fff;
  }

  .side-menu .entry.-change:hover {
    color: #fff;
    background-color: #2F7048;
  }
}

.side-menu .corporate {
  display: block;
  position: relative;
  width: fit-content;
  margin: 80px 0 0 34px;
  padding-right: 21px;
  font-size: 1.2rem;
  transition: color 300ms ease;
}

.side-menu .corporate.-change {
  color: #fff;
}

.side-menu .corporate::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #000;
  transition: width 300ms ease;
}

.side-menu .corporate.-change::before {
  background-color: #fff;
}

@media screen and (min-width: 769px) {
  .side-menu .corporate:hover::before {
    width: 100%;
  }
}

.side-menu .corporate::after {
  content: '';
  position: absolute;
  translate: 0 -50%;
  top: 50%;
  right: 0;
  width: 13px;
  height: 13px;
  mask-image: url(../img/common/ex-link.svg);
  mask-repeat: no-repeat;
  mask-size: 13px 13px;
  background-color: #000;
  transition: background-color 300ms ease;
}

.side-menu .corporate.-change::after {
  background-color: #fff;
}

/* ↑↑↑ side-menu ↑↑↑ */

/* ↓↓↓ recruit ↓↓↓ */
.recruit {
  position: relative;
  width: 100%;
  margin-top: min(6.25vw, 80px);
  padding-bottom: min(5.859375vw, 75px);
}

@media screen and (max-width: 768px) {
  .recruit {
    position: relative;
    width: 100%;
    margin-top: 48px;
    padding-bottom: 56px;
  }
}

.recruit::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: calc(50vw + min(24.375vw, 312px));
  height: calc(100% - min(5.46875cqw, 70px));
  background-color: #2F7048;
  z-index: -1;
}

@media screen and (max-width: 768px) {
  .recruit::after {
    width: 100%;
    height: 344px;
  }
}

.recruit .inner {
  display: flex;
  max-width: 1280px;
  margin: 0 auto;
  column-gap: min(3.125vw, 40px);
  container-type: inline-size;
  padding-left: 328px;
}

@media screen and (max-width: 768px) {
  .recruit .inner {
    flex-direction: column;
    max-width: 100%;
    row-gap: 24px;
    padding-left: 0;
  }
}

.recruit .inner .image {
  display: block;
  height: fit-content;
  width: 48.94957983193277cqw;
  margin-left: 4.726890756302521cqw;
  border-radius: 4px;
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  .recruit .inner .image {
    width: 80.8%;
    max-width: 500px;
    margin: 0 0 0 auto;
  }
}

.recruit .inner .text-wrap {
  margin-top: 18.27731092436975cqw;
}

@media screen and (max-width: 768px) {
  .recruit .inner .text-wrap {
    margin-top: 0;
  }
}

.recruit .inner .text-wrap .sub {
  font-size: max(10px, 1.260504201680672cqw);
  font-family: var(--text-barlow);
  font-weight: 600;
  letter-spacing: 0.3em;
  color: #fff;
}

@media screen and (max-width: 768px) {
  .recruit .inner .text-wrap .sub {
    font-size: 1.2rem;
    text-align: center;
  }
}

.recruit .inner .text-wrap .title {
  font-size: 5.042016806722689cqw;
  color: #fff;
  line-height: 1.375;
  letter-spacing: 0.08em;
}

@media screen and (max-width: 768px) {
  .recruit .inner .text-wrap .title {
    font-size: 36px;
    line-height: 1.38;
    text-align: center;
  }
}

.recruit .inner .text-wrap .more-btn {
  display: block;
  position: relative;
  width: 17.22689075630252cqw;
  aspect-ratio: 164 / 41;
  font-size: max(10px, 1.470588235294118cqw);
  font-weight: 600;
  color: #2F7048;
  padding: 1.260504201680672cqw 2.521008403361345cqw;
  margin-top: 3.571428571428571cqw;
  border: 1px solid #fff;
  background-color: #fff;
  transition: background-color 300ms ease, color 300ms ease;
}

@media screen and (min-width: 769px) {
  .recruit .inner .text-wrap .more-btn:hover {
    background-color: #2F7048;
    color: #fff;
  }
}

@media screen and (max-width: 768px) {
  .recruit .inner .text-wrap .more-btn {
    width: 164px;
    font-size: 1.4rem;
    padding: 12px 24px;
    margin: 24px auto 0;
  }
}

.recruit .inner .text-wrap .more-btn::after {
  content: '';
  position: absolute;
  translate: 0 -50%;
  top: 50%;
  right: 1.680672268907563cqw;
  width: 0.5252100840336134cqw;
  height: 0.9453781512605042cqw;
  mask-image: url(../img/common/arrow.svg);
  mask-repeat: no-repeat;
  mask-size: 0.5252100840336134cqw 0.9453781512605042cqw;
  background-color: #2F7048;
  transition: background-color 300ms ease;
}

@media screen and (min-width: 769px) {
  .recruit .inner .text-wrap .more-btn:hover::after {
    background-color: #fff;
  }
}

@media screen and (max-width: 768px) {
  .recruit .inner .text-wrap .more-btn::after {
    width: 5px;
    height: 9px;
    mask-size: 5px 9px;
  }
}
/* ↑↑↑ recruit ↑↑↑ */

/* ↓↓↓ about ↓↓↓ */
.about {
  position: relative;
  width: 100%;
  margin-top: min(5.625vw, 72px);
}

@media screen and (max-width: 768px) {
  .about {
    margin-top: 40px;
  }
}

.about::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: calc(50vw + min(26.406249999999996vw, 338px));
  height: 100%;
  background-color: #F4F4F4;
  z-index: -1;
}

@media screen and (max-width: 768px) {
  .about::after {
    width: calc(50vw + 36.53333333333333vw);
  }
}

.about .inner {
  display: flex;
  column-gap: min(2.65625vw, 34px);
  max-width: 1280px;
  margin: 0 auto;
  padding: min(4.375vw, 56px) 0 min(5.625vw, 72px) 328px;
  container-type: inline-size;
}

@media screen and (max-width: 768px) {
  .about .inner {
    flex-direction: column-reverse;
    row-gap: 24px;
    max-width: 100%;
    margin: 0 auto;
    padding: 48px 0 64px;
  }
}

.about .inner .text-wrap {
  width: 39.70588235294118cqw;
}

@media screen and (max-width: 768px) {
  .about .inner .text-wrap {
    width: 100%;
    margin-left: 0;
  }
}

.about .inner .text-wrap .sub {
  font-size: max(10px, 1.260504201680672cqw);
  font-family: var(--text-barlow);
  font-weight: 600;
  letter-spacing: 0.3em;
  color: #2F7048;
}

@media screen and (max-width: 768px) {
  .about .inner .text-wrap .sub {
    font-size: 1.2rem;
    text-align: center;
  }
}

.about .inner .text-wrap .title {
  font-size: 3.361344537815126cqw;
  letter-spacing: 0.07em;
  margin-top: 0.8403361344537815cqw;
  line-height: 1.4375;
}

@media screen and (max-width: 768px) {
  .about .inner .text-wrap .title {
    font-size: 2.6rem;
    letter-spacing: 0.08em;
    margin-top: 8px;
    line-height: 1.38;
    text-align: center;
  }
}

.about .inner .text-wrap .text {
  font-size: max(10px, 1.365546218487395cqw);
  line-height: 1.84;
  margin-top: 2.521008403361345cqw;
  text-align: justify;
  word-break: break-all;
}

@media screen and (max-width: 768px) {
  .about .inner .text-wrap .text {
    width: 84.53333%;
    max-width: 500px;
    font-size: 1.3rem;
    line-height: 1.84;
    letter-spacing: 0.08em;
    margin: 24px auto 0;
  }
}

.about .inner .text-wrap .more-btn {
  display: block;
  position: relative;
  width: 17.22689075630252cqw;
  aspect-ratio: 164 / 41;
  font-size: max(10px, 1.470588235294118cqw);
  font-weight: 600;
  color: #2F7048;
  padding: 1.260504201680672cqw 2.521008403361345cqw;
  margin-top: 2.521008403361345cqw;
  border: 1px solid #2F7048;
  background-color: transparent;
  transition: background-color 300ms ease, color 300ms ease;
}

@media screen and (min-width: 769px) {
  .about .inner .text-wrap .more-btn:hover {
    background-color: #2F7048;
    color: #fff;
  }
}

@media screen and (max-width: 768px) {
  .about .inner .text-wrap .more-btn {
    width: 164px;
    aspect-ratio: 164 / 41;
    font-size: 1.4rem;
    padding: 12px 24px;
    margin: 24px auto 0;
    border: 1px solid #2F7048;
  }
}

.about .inner .text-wrap .more-btn::after {
  content: '';
  position: absolute;
  translate: 0 -50%;
  top: 50%;
  right: 1.680672268907563cqw;
  width: 1.365546218487395cqw;
  height: 1.365546218487395cqw;
  mask-image: url(../img/common/ex-link.svg);
  mask-repeat: no-repeat;
  mask-size: 1.365546218487395cqw 1.365546218487395cqw;
  background-color: #2F7048;
  transition: background-color 300ms ease;
}

@media screen and (min-width: 769px) {
  .about .inner .text-wrap .more-btn:hover::after {
    background-color: #fff;
  }
}

@media screen and (max-width: 768px) {
  .about .inner .text-wrap .more-btn::after {
    right: 16px;
    width: 13px;
    height: 13px;
    mask-image: url(../img/common/ex-link.svg);
    mask-repeat: no-repeat;
    mask-size: 13px 13px;
  }
}

.about .inner .image {
  width: 45.06302521008403cqw;
  height: fit-content;
  border-radius: 4px;
  margin-top: 0.7352941176470588cqw;
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  .about .inner .image {
    width: 84.5333%;
    max-width: 500px;
    margin: 0 auto;
  }
}
/* ↑↑↑ about ↑↑↑ */

/* ↓↓↓ bg-grad ↓↓↓ */
.bg-grad {
  position: relative;
  width: 100%;
  margin-top: min(3.359375vw, 43px);
}

.bg-grad::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(180deg, #FFFFFF 0%, #D8E8DD 100%);
}
/* ↑↑↑ bg-grad ↑↑↑ */

/* ↓↓↓ job ↓↓↓ */
.job {
  position: relative;
  width: 100%;
  padding-top: min(2.890625vw, 37px);
  z-index: 1;
}

@media screen and (max-width: 768px) {
  .job {
    padding-top: 56px;
  } 
}

.job .inner {
  display: flex;
  max-width: 1280px;
  margin: 0 auto;
  column-gap: min(4.21875vw, 54px);
  padding-left: 328px;
  container-type: inline-size;
}

@media screen and (max-width: 768px) {
  .job .inner  {
    flex-direction: column;
    max-width: 100%;
    row-gap: 24px;
    container-type: inline-size;
    padding-left: 0;
  }
}

.job .inner .image {
  width: 45.27310924369748cqw;
  height: fit-content;
  border-radius: 4px;
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  .job .inner .image {
    width: 84.5333333%;
    max-width: 500px;
    margin: 0 auto;
  }
}

.job .inner .text-wrap {
  width: 39.70588235294118cqw;
  margin-top: 3.991596638655462cqw;
}

@media screen and (max-width: 768px) {
  .job .inner .text-wrap {
    width: 100%;
    margin-top: 0;
  }
}

.job .inner .text-wrap .sub {
  font-size: max(10px, 1.260504201680672cqw);
  font-family: var(--text-barlow);
  font-weight: 600;
  letter-spacing: 0.3em;
  color: #2F7048;
}

@media screen and (max-width: 768px) {
  .job .inner .text-wrap .sub {
    font-size: 1.2rem;
    text-align: center;
  }
}

.job .inner .text-wrap .title {
  font-size: 3.361344537815126cqw;
  letter-spacing: 0.08em;
}

@media screen and (max-width: 768px) {
  .job .inner .text-wrap .title {
    font-size: 2.6rem;
    text-align: center;
    letter-spacing: 0.08em;
  }
}

.job .inner .text-wrap .text {
  font-size: max(10px, 1.365546218487395cqw);
  margin-top: 1.260504201680672cqw;
  text-align: justify;
  word-break: break-all;
}

@media screen and (max-width: 768px) {
  .job .inner .text-wrap .text {
    width: 84.53333%;
    max-width: 500px;
    font-size: 1.3rem;
    line-height: 1.84;
    letter-spacing: 0.08em;
    margin: 24px auto 0;
  }
}

.job .inner .text-wrap .more-btn {
  display: block;
  position: relative;
  width: 17.22689075630252cqw;
  aspect-ratio: 164 / 41;
  font-size: max(10px, 1.470588235294118cqw);
  font-weight: 600;
  color: #2F7048;
  padding: 1.260504201680672cqw 2.521008403361345cqw;
  margin-top: 2.521008403361345cqw;
  border: 1px solid #2F7048;
  background-color: transparent;
  transition: background-color 300ms ease, color 300ms ease;
}

@media screen and (min-width: 769px) {
  .job .inner .text-wrap .more-btn:hover {
    background-color: #2F7048;
    color: #fff;
  }
}

@media screen and (max-width: 768px) {
  .job .inner .text-wrap .more-btn {
    width: 164px;
    aspect-ratio: 164 / 41;
    font-size: 1.4rem;
    padding: 12px 24px;
    margin: 24px auto 0;
    border: 1px solid #2F7048;
  }
}

.job .inner .text-wrap .more-btn::after {
  content: '';
  position: absolute;
  translate: 0 -50%;
  top: 50%;
  right: 1.680672268907563cqw;
  width: 1.365546218487395cqw;
  height: 1.365546218487395cqw;
  mask-image: url(../img/common/ex-link.svg);
  mask-repeat: no-repeat;
  mask-size: 1.365546218487395cqw 1.365546218487395cqw;
  background-color: #2F7048;
  transition: background-color 300ms ease;
}

@media screen and (min-width: 769px) {
  .job .inner .text-wrap .more-btn:hover::after {
    background-color: #fff;
  }
}

@media screen and (max-width: 768px) {
  .job .inner .text-wrap .more-btn::after {
    right: 16px;
    width: 13px;
    height: 13px;
    mask-image: url(../img/common/ex-link.svg);
    mask-repeat: no-repeat;
    mask-size: 13px 13px;
  }
}
/* ↑↑↑ job ↑↑↑ */

/* ↓↓↓ person ↓↓↓ */
.person {
  position: relative;
  width: 100%;
  margin-top: min(8.125vw, 104px);
  z-index: 2;
}

@media screen and (max-width: 768px) {
  .person {
    margin-top: 72px;
  }
}

.person .inner {
  max-width: 1280px;
  margin: 0 auto;
  container-type: inline-size;
  padding-left: 328px;
}

@media screen and (max-width: 768px) {
  .person .inner {
    max-width: 100%;
    padding-left: 0;
  }
}

.person .inner .sub {
  font-size: max(10px, 1.260504201680672cqw);
  font-family: var(--text-barlow);
  font-weight: 600;
  color: #2F7048;
  letter-spacing: 0.3em;
}

@media screen and (max-width: 768px) {
  .person .inner .sub {
    font-size: 1.2rem;
    text-align: center;
    letter-spacing: 0.3em;
    margin: 0 auto;
  }
}

.person .inner .title {
  font-size: 3.361344537815126cqw;
  letter-spacing: 0.08em;
  margin: 0.625cqw 0 0;
}

@media screen and (max-width: 768px) {
  .person .inner .title {
    font-size: 2.6rem;
    text-align: center;
    margin: 0 auto;
  }
}

.person .inner .container {
  display: flex;
  column-gap: 2.521008403361345cqw;
  width: 90.7563025210084cqw;
  margin: 4.201680672268908cqw 0 0;
}

@media screen and (max-width: 768px) {
  .person .inner .container {
    flex-direction: column;
    row-gap: 24px;
    width: 72.5333333cqw;
    max-width: 500px;
    margin: 32px auto 0;
  }
}

.person .inner .container .card {
  display: block;
  width: 28.57142857142857cqw;
}

@media screen and (max-width: 768px) {
  .person .inner .container .card {
    width: 100%;
  }
}

.person .inner .container .card .image {
  width: 100%;
  border-radius: 4px;
  overflow: hidden;
  outline: 4px solid transparent;
  outline-offset: -3px;
  transition: outline 300ms ease;
}

@media screen and (min-width: 769px) {
  .person .inner .container .card:hover .image {
    outline: 4px solid #0E2906;
    outline-offset: -3px;
  }
}

@media screen and (max-width: 768px) {
  .person .inner .container .card .image {
    outline: unset;
    outline-offset: unset;
  }
}

.person .inner .container .card .name {
  position: relative;
  font-size: max(10px, 1.680672268907563cqw);
  padding-left: 2.521008403361345cqw;
  margin-top: 0.8403361344537815cqw;
  letter-spacing: 0.08em;
  line-height: 1.5;
  color: #434343;
}

@media screen and (max-width: 768px) {
  .person .inner .container .card .name {
    font-size: 1.6rem;
    padding-left: 24px;
    margin-top: 8px;
  }
}

.person .inner .container .card .name::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0.9453781512605042cqw;
  width: 0.8403361344537815cqw;
  height: 0.8403361344537815cqw;
  background-color: #2F7048;
  border-radius: 50%;
}

@media screen and (max-width: 768px) {
  .person .inner .container .card .name::after {
    top: 10px;
    width: 8px;
    height: 8px;
  }
}
/* ↑↑↑ person ↑↑↑ */

/* ↓↓↓ environment ↓↓↓ */
.environment {
  position: relative;
  width: 100%;
  margin-top: min(11.25vw, 144px);
  z-index: 1;
}

@media screen and (max-width: 768px) {
  .environment {
    margin-top: 72px;
    z-index: 1;
  }
}

.environment .inner {
  display: flex;
  column-gap: min(7.96875vw, 102px);
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  padding-left: 328px;
  padding-bottom: min(7.8125vw, 100px);
  container-type: inline-size;
}

@media screen and (max-width: 768px) {
  .environment .inner {
    flex-direction: column-reverse;
    row-gap: 24px;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    padding-bottom: 72px;
    padding-left: 0;
  }
}

.environment .inner::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 5.252100840336134cqw;
  width: 90.7563025210084cqw;
  height: 64.28571428571429cqw;
  background: url(../../mid-career/img/top/bg-deco.svg) no-repeat;
  background-size: cover;
  z-index: -1;
}

@media screen and (max-width: 768px) {
  .environment .inner::after {
    bottom: 30px;
    translate: 50% 0;
    transform: translateZ(0);
    right: 50%;
    width: 97.06666666%;
    aspect-ratio: 364 / 271;
    height: auto;
    background: url(../../mid-career/img/top/bg-deco_sp.svg) no-repeat;
    background-size: cover;
  }
}

.environment .inner .text-wrap {
  margin: 7.03781512605042cqw 0 0;
}

@media screen and (max-width: 768px) {
  .environment .inner .text-wrap {
    margin: 0 auto;
  }
}

.environment .inner .text-wrap .sub {
  font-size: max(10px, 1.260504201680672cqw);
  font-family: var(--text-barlow);
  font-weight: 600;
  color: #2F7048;
  letter-spacing: 0.3em;
}

@media screen and (max-width: 768px) {
  .environment .inner .text-wrap .sub {
    font-size: 1.2rem;
    text-align: center;
  }
}

.environment .inner .text-wrap .title {
  font-size: 3.361344537815126cqw;
  margin-top: 0.78125cqw;
  letter-spacing: 0.08em;
}

@media screen and (max-width: 768px) {
  .environment .inner .text-wrap .title {
    font-size: 2.6rem;
    text-align: center;
    margin-top: 8px;
    letter-spacing: 0.08em;
  }
}

.environment .inner .text-wrap .more-btn {
  display: block;
  position: relative;
  width: 17.22689075630252cqw;
  aspect-ratio: 164 / 41;
  font-size: max(10px, 1.470588235294118cqw);
  font-weight: 600;
  color: #2F7048;
  padding: 1.260504201680672cqw 2.521008403361345cqw;
  margin-top: 2.521008403361345cqw;
  border: 1px solid #2F7048;
  background-color: transparent;
  transition: background-color 300ms ease, color 300ms ease;
}

@media screen and (min-width: 769px) {
  .environment .inner .text-wrap .more-btn:hover {
    background-color: #2F7048;
    color: #fff;
  }
}

@media screen and (max-width: 768px) {
  .environment .inner .text-wrap .more-btn {
    width: 164px;
    aspect-ratio: 164 / 41;
    font-size: 1.4rem;
    padding: 12px 24px;
    margin: 24px auto 0;
    border: 1px solid #2F7048;
  }
}

.environment .inner .text-wrap .more-btn::after {
  content: '';
  position: absolute;
  translate: 0 -50%;
  top: 50%;
  right: 1.680672268907563cqw;
  width: 1.365546218487395cqw;
  height: 1.365546218487395cqw;
  mask-image: url(../img/common/ex-link.svg);
  mask-repeat: no-repeat;
  mask-size: 1.365546218487395cqw 1.365546218487395cqw;
  background-color: #2F7048;
  transition: background-color 300ms ease;
}

@media screen and (min-width: 769px) {
  .environment .inner .text-wrap .more-btn:hover::after {
    background-color: #fff;
  }
}

@media screen and (max-width: 768px) {
  .environment .inner .text-wrap .more-btn::after {
    right: 16px;
    width: 13px;
    height: 13px;
    mask-image: url(../img/common/ex-link.svg);
    mask-repeat: no-repeat;
    mask-size: 13px 13px;
  }
}

.environment .inner .image{
  width: 45.27310924369748cqw;
  border-radius: 4px;
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  .environment .inner .image{
    width: 84.53333333%;
    margin: 0 auto;
  }
}
/* ↑↑↑ environment ↑↑↑ */

@media (min-width: 1281px) {}

@media (max-width: 1280px) {}

@media (max-width: 768px) {}

@media (max-width: 480px) {}

@media (max-width: 375px) {}