/*
Theme Name: Twenty Twenty-one Child
Version: 1.6
Template: twentytwentyone
*/
:root {
  --viewport-width: min(100vw, 2000px);
  --b: calc(var(--viewport-width) / 160);
}

#environment .environment-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  row-gap: 10px;
  margin-bottom: max(3.5rem, 30px);
}
#environment .environment-title p {
  color: #3a9447;
  font-family: YakuHanJP, "Outfit", sans-serif;
  font-size: max(1.6rem, 14px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
}
#environment .environment-title h2 {
  color: #3a9447;
  font-size: max(3.6rem, 22px);
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.1em;
}
#environment .anchor__wrapper {
  padding-bottom: max(12.5rem, 80px);
}
#environment .anchor__list {
  display: grid;
  gap: max(4rem, 15px);
  grid-template-columns: repeat(3, 1fr);
}
@media screen and (max-width: 768px) {
  #environment .anchor__list {
    grid-template-columns: 1fr;
  }
}
#environment .anchor__list__item button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  padding: max(2.5rem, 20px) 5%;
  border-radius: max(1rem, 10px);
  background: #3a9447;
  -webkit-transition: -webkit-transform 0.5s ease, -webkit-box-shadow 0.5s ease;
  transition: -webkit-transform 0.5s ease, -webkit-box-shadow 0.5s ease;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  transition: transform 0.5s ease, box-shadow 0.5s ease, -webkit-transform 0.5s ease, -webkit-box-shadow 0.5s ease;
}
#environment .anchor__list__item button .btn__text {
  color: #fff;
  font-size: max(1.6rem, 14px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.1em;
}
#environment .anchor__list__item button .btn__icon {
  position: relative;
  width: max(4rem, 40px);
  height: auto;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
#environment .anchor__list__item button .btn__icon::before, #environment .anchor__list__item button .btn__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 0;
  height: 0;
  border-style: solid;
}
#environment .anchor__list__item button .btn__icon::before {
  left: 50%;
  -webkit-transform: translate(-100%, -50%);
          transform: translate(-100%, -50%);
  border-width: max(0.8rem, 7px) max(1.2rem, 11px) max(0.8rem, 7px) 0;
  border-color: transparent rgba(255, 255, 255, 0.2) transparent transparent;
}
#environment .anchor__list__item button .btn__icon::after {
  right: 50%;
  -webkit-transform: translate(100%, -50%);
          transform: translate(100%, -50%);
  border-width: max(0.8rem, 7px) 0 max(0.8rem, 7px) max(1.2rem, 11px);
  border-color: transparent transparent transparent #fff;
}
#environment .anchor__list__item button:hover {
  -webkit-transform: scale(1.03);
          transform: scale(1.03);
  -webkit-box-shadow: 0 0 10px rgba(58, 148, 71, 0.5);
          box-shadow: 0 0 10px rgba(58, 148, 71, 0.5);
}
#environment .company__wrapper {
  display: grid;
  gap: 0 max(10rem, 50px);
  padding-bottom: max(10.5rem, 70px);
  grid-template-columns: auto 1fr;
}
@media screen and (max-width: 768px) {
  #environment .company__wrapper {
    grid-template-columns: 1fr;
  }
}
#environment .company .environment__title {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
#environment .company__info {
  display: grid;
  grid-template-columns: auto 1fr;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  width: 100%;
}
#environment .company__info__item {
  display: grid;
  grid-template-columns: subgrid;
  grid-column: span 2;
  gap: 10px max(6rem, 20px);
  padding-left: max(2rem, 10px);
  padding-right: max(2rem, 10px);
}
@media screen and (max-width: 550px) {
  #environment .company__info__item {
    grid-template-columns: 1fr;
  }
}
#environment .company__info__item:nth-of-type(even) {
  background: rgba(58, 148, 71, 0.1);
}
#environment .company__info__item:not(:last-of-type) {
  padding-bottom: max(2rem, 15px);
  border-bottom: max(0.2rem, 2px) dotted rgba(58, 148, 71, 0.6);
}
#environment .company__info__item:not(:first-of-type) {
  padding-top: max(2rem, 15px);
}
#environment .company__info__item dt,
#environment .company__info__item dd {
  font-size: max(1.6rem, 14px);
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.05em;
}
#environment .company__info__item dt {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
#environment .company__info__item dd {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  width: 100%;
}
#environment .company__info__item dd:has(> dl) {
  display: grid;
  row-gap: 15px;
}
#environment .company__info__item dd:has(> img) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 550px) {
  #environment .company__info__item dd:has(> img) {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
  }
}
#environment .company__info__item dd > ul li {
  list-style-type: disc;
  margin-left: 1em;
}
#environment .company__info__item dd img {
  width: max(44rem, 300px);
  -o-object-fit: contain;
     object-fit: contain;
  margin-top: 0.5lh;
}
@media screen and (max-width: 550px) {
  #environment .company__info__item dd img {
    width: 90%;
  }
}
#environment .welfare {
  background: #fcfce4;
}
#environment .welfare__wrapper {
  padding-top: max(11.5rem, 70px);
  padding-bottom: max(15rem, 100px);
}
#environment .welfare__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: max(1.5rem, 15px);
  margin-top: max(6rem, 40px);
}
@media screen and (max-width: 768px) {
  #environment .welfare__list {
    grid-template-columns: 1fr;
  }
}
#environment .welfare__list__item {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 2;
  gap: 0;
}
@media screen and (max-width: 768px) {
  #environment .welfare__list__item {
    grid-template-rows: auto 1fr;
  }
}
#environment .welfare__list__item:not(:has(> a)) {
  background: #fff;
  border: max(0.2rem, 2px) solid #3a9447;
  border-radius: max(3rem, 20px);
  -webkit-box-shadow: 6px 6px 0px rgba(58, 148, 71, 0.2);
          box-shadow: 6px 6px 0px rgba(58, 148, 71, 0.2);
  overflow: hidden;
}
#environment .welfare__list__item:has(> a) a {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 2;
  background: #fff;
  border: max(0.2rem, 2px) solid #3a9447;
  border-radius: max(3rem, 20px);
  -webkit-box-shadow: 6px 6px 0px rgba(58, 148, 71, 0.2);
          box-shadow: 6px 6px 0px rgba(58, 148, 71, 0.2);
  overflow: hidden;
  -webkit-transition: -webkit-transform 0.5s ease, -webkit-box-shadow 0.5s ease;
  transition: -webkit-transform 0.5s ease, -webkit-box-shadow 0.5s ease;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  transition: transform 0.5s ease, box-shadow 0.5s ease, -webkit-transform 0.5s ease, -webkit-box-shadow 0.5s ease;
}
#environment .welfare__list__item:has(> a) a:hover {
  opacity: 1;
  -webkit-transform: translate(6px, 6px);
          transform: translate(6px, 6px);
  -webkit-box-shadow: 0px 0px 0px rgba(58, 148, 71, 0) !important;
          box-shadow: 0px 0px 0px rgba(58, 148, 71, 0) !important;
}
@media screen and (max-width: 768px) {
  #environment .welfare__list__item:has(> a) a .welfare__body {
    padding-bottom: max(8rem, 80px);
  }
}
#environment .welfare__list__item:has(> a) a .welfare__body .textBox {
  margin-right: calc(max(6.5rem, 50px) * 1.5);
}
@media screen and (max-width: 768px) {
  #environment .welfare__list__item:has(> a) a .welfare__body .textBox {
    margin-right: 0;
  }
}
#environment .welfare__list__item .welfare__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: max(2rem, 20px) max(5rem, 15px);
  background: #f5faf5;
}
#environment .welfare__list__item .welfare__header h3 {
  font-size: max(2rem, 15px);
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.1em;
}
#environment .welfare__list__item .welfare__body {
  position: relative;
  display: grid;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  grid-template-columns: max(9rem, 70px) 1fr;
  gap: max(2rem, 10px);
  padding: max(3.5rem, 30px) max(4rem, 15px);
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  #environment .welfare__list__item .welfare__body {
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr;
    grid-row: span 2;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    row-gap: 30px;
  }
}
#environment .welfare__list__item .welfare__body .imageBox {
  max-width: max(9rem, 70px);
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  #environment .welfare__list__item .welfare__body .imageBox {
    width: max(30rem, 70px);
    max-width: max(30rem, 70px);
  }
}
@media screen and (max-width: 550px) {
  #environment .welfare__list__item .welfare__body .imageBox {
    width: max(40%, 100px);
    max-width: unset;
  }
}
#environment .welfare__list__item .welfare__body .imageBox.focus {
  width: 100%;
  max-width: 100%;
}
@media screen and (max-width: 768px) {
  #environment .welfare__list__item .welfare__body .imageBox.focus {
    width: max(35%, 70px);
  }
}
@media screen and (max-width: 550px) {
  #environment .welfare__list__item .welfare__body .imageBox.focus {
    width: max(60%, 150px);
  }
}
#environment .welfare__list__item .welfare__body .textBox * {
  font-size: max(1.4rem, 12px);
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.05em;
}
#environment .welfare__list__item .welfare__body .textBox > a {
  display: inline;
  border-bottom: 1px solid #183b5a;
}
#environment .welfare__list__item .welfare__body .textBox__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
#environment .welfare__list__item .welfare__body .textBox__inner p {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
#environment .welfare__list__item .welfare__body .textBox__inner .welfare__btnBox {
  position: absolute;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  bottom: 0;
  right: 0;
  -webkit-transform: translate(-40%, -35%);
          transform: translate(-40%, -35%);
  -ms-flex-item-align: end;
      align-self: end;
}
#environment .welfare__list__item .welfare__body .textBox__inner .welfare__btnBox .btn {
  position: relative;
  width: max(6.5rem, 50px);
  height: auto;
  aspect-ratio: 1/1;
  background: #3a9447;
  border-radius: max(0.5rem, 5px);
}
#environment .welfare__list__item .welfare__body .textBox__inner .welfare__btnBox .btn::before, #environment .welfare__list__item .welfare__body .textBox__inner .welfare__btnBox .btn::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 0;
  height: 0;
  border-style: solid;
}
#environment .welfare__list__item .welfare__body .textBox__inner .welfare__btnBox .btn::before {
  left: 50%;
  -webkit-transform: translate(-100%, -50%);
          transform: translate(-100%, -50%);
  border-width: max(1rem, 8px) max(1.8rem, 15px) max(1rem, 8px) 0;
  border-color: transparent rgba(255, 255, 255, 0.2) transparent transparent;
}
#environment .welfare__list__item .welfare__body .textBox__inner .welfare__btnBox .btn::after {
  right: 50%;
  -webkit-transform: translate(100%, -50%);
          transform: translate(100%, -50%);
  border-width: max(1rem, 8px) 0 max(1rem, 8px) max(1.8rem, 15px);
  border-color: transparent transparent transparent #fff;
}
#environment .welfare__list__item--wide {
  grid-column: 1/3;
}
@media screen and (max-width: 768px) {
  #environment .welfare__list__item--wide {
    grid-column: unset;
  }
}
#environment .welfare__list__item--wide .welfare__body {
  grid-template-columns: max(12rem, 100px) 1fr;
}
@media screen and (max-width: 768px) {
  #environment .welfare__list__item--wide .welfare__body {
    grid-template-columns: 1fr;
  }
}
#environment .career__wrapper {
  padding-top: max(12.5rem, 80px);
  padding-bottom: max(15rem, 100px);
}
#environment .career__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: last baseline;
      -ms-flex-align: last baseline;
          align-items: last baseline;
  gap: 10px max(5rem, 30px);
  margin-bottom: max(8rem, 50px);
}
#environment .career__header .environment-title {
  margin-bottom: 0;
}
#environment .career__list {
  display: grid;
  row-gap: max(10rem, 50px);
}
#environment .career__list__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: max(6rem, 30px);
}
@media screen and (max-width: 1300px) {
  #environment .career__list__item {
    gap: max(5rem, 30px) max(3rem, 22px);
  }
}
@media screen and (max-width: 1000px) {
  #environment .career__list__item:nth-of-type(odd) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  #environment .career__list__item:nth-of-type(even) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
#environment .career__list__item .imageBox {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -ms-flex-item-align: stretch;
      align-self: stretch;
  width: max(61rem, 350px);
  height: 100%;
  border-radius: max(3rem, 20px);
  overflow: hidden;
}
@media screen and (max-width: 1000px) {
  #environment .career__list__item .imageBox {
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
  }
}
#environment .career__list__item .imageBox img {
  width: 100%;
  height: 100%;
}
#environment .career__list__item .textBox {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
#environment .career__list__item .textBox h3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  gap: max(1.5rem, 10px);
  margin-bottom: max(2rem, 20px);
}
#environment .career__list__item .textBox h3 > span {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: grid;
  place-items: center;
  width: max(3.5rem, 30px);
  height: auto;
  aspect-ratio: 1/1;
  padding: max(0.5rem, 5px) 0;
  border-radius: 2px;
  background: #3a9447;
  color: #fff;
  font-family: YakuHanJP, "Outfit", sans-serif;
  font-size: max(2rem, 16px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
}
#environment .career__list__item .textBox h3 p {
  font-size: max(2rem, 16px);
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.1em;
}
#environment .career__list__item .textBox__btnBox {
  display: grid;
  gap: max(1rem, 10px);
  margin-top: max(2.5rem, 20px);
}
#environment .career__list__item .textBox__btnBox .btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  padding: max(2.5rem, 20px) 5%;
  border-radius: max(1rem, 10px);
  background: #3a9447;
  -webkit-transition: -webkit-transform 0.5s ease, -webkit-box-shadow 0.5s ease;
  transition: -webkit-transform 0.5s ease, -webkit-box-shadow 0.5s ease;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  transition: transform 0.5s ease, box-shadow 0.5s ease, -webkit-transform 0.5s ease, -webkit-box-shadow 0.5s ease;
}
#environment .career__list__item .textBox__btnBox .btn__text {
  color: #fff;
  font-size: max(1.6rem, 14px);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: 0.1em;
}
#environment .career__list__item .textBox__btnBox .btn__icon {
  position: relative;
  width: max(4rem, 40px);
  height: auto;
}
#environment .career__list__item .textBox__btnBox .btn__icon::before, #environment .career__list__item .textBox__btnBox .btn__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 0;
  height: 0;
  border-style: solid;
}
#environment .career__list__item .textBox__btnBox .btn__icon::before {
  left: 50%;
  -webkit-transform: translate(-100%, -50%);
          transform: translate(-100%, -50%);
  border-width: max(0.8rem, 7px) max(1.2rem, 11px) max(0.8rem, 7px) 0;
  border-color: transparent rgba(255, 255, 255, 0.2) transparent transparent;
}
#environment .career__list__item .textBox__btnBox .btn__icon::after {
  right: 50%;
  -webkit-transform: translate(100%, -50%);
          transform: translate(100%, -50%);
  border-width: max(0.8rem, 7px) 0 max(0.8rem, 7px) max(1.2rem, 11px);
  border-color: transparent transparent transparent #fff;
}
#environment .career__list__item .textBox__inner {
  margin-top: max(2.5rem, 20px);
  background: #fff;
  border-radius: max(0.1rem, 10px);
  border: max(0.2rem, 2px) solid #3a9447;
  overflow: hidden;
}
#environment .career__list__item .textBox__inner__header {
  background: #f5faf5;
  padding: max(1.5rem, 15px) max(3rem, 15px);
}
#environment .career__list__item .textBox__inner__header h4 {
  color: #3a9447;
  font-size: max(1.4rem, 12px);
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.1em;
}
#environment .career__list__item .textBox__inner__body {
  padding: max(1rem, 10px) max(3rem, 15px);
}
#environment .career__list__item .textBox__inner__body ul li b {
  color: #3a9447;
  font-size: max(1.4rem, 12px);
  font-weight: 600;
  line-height: 2;
  letter-spacing: 0.1em;
}
#environment .career__list__item .textBox__inner__body ul li p {
  font-size: max(1.2rem, 10px);
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.05em;
}/*# sourceMappingURL=environment.css.map */