@charset "UTF-8";
@font-face {
  font-family: "zen-kaku-gothic";
  font-weight: 400;
  src: url(../font/ZenKakuGothicNew-Regular.ttf) format("truetype");
}
@font-face {
  font-family: "zen-kaku-gothic";
  font-weight: 500;
  src: url(../font/ZenKakuGothicNew-Medium.ttf) format("truetype");
}
@font-face {
  font-family: "zen-kaku-gothic";
  font-weight: 700;
  src: url(../font/ZenKakuGothicNew-Bold.ttf) format("truetype");
}
@font-face {
  font-family: "zen-kaku-gothic";
  font-weight: 900;
  src: url(../font/ZenKakuGothicNew-Black.ttf) format("truetype");
}
@font-face {
  font-family: "lato";
  font-weight: 700;
  src: url(../font/Lato-Bold.ttf) format("truetype");
}
/*------------------
　　共通設定
------------------*/
body {
  font-size: var(--fontSize_pc22);
  font-family: "zen-kaku-gothic", sans-serif;
  font-weight: 700;
  color: #fff;
  line-height: 1.55;
  font-feature-settings: "palt";
  letter-spacing: 0.02em;
  background-color: #000000;
  -moz-text-size-adjust: 100%;
       text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%; /* Safari */
}

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

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

.t-upper {
  text-transform: uppercase;
}

input[type=text], input[type=email], input[type=tel], textarea {
  width: 100%;
  font-size: inherit;
  font-weight: inherit;
  font-family: inherit;
  color: #171717;
  padding: 14px 32px;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  border-radius: 0;
}
input[type=submit] {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}

input::-moz-placeholder {
  color: #434343;
}

input::placeholder,
textarea::placeholder {
  color: #434343;
}


input[type=radio] {
  position: relative;
  background-color: #fff;
  font-size: inherit;
  font-weight: inherit;
  font-family: inherit;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin-right: 10px;
}
input[type=radio]::before {
  position: absolute;
  top: 7px;
  left: 7px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: transparent;
  content: "";
}

input[type=radio]:checked::before {
  background: #119D3B;
}

input[type=checkbox] {
  position: relative;
  width: 32px;
  height: 32px;
  border: 2px solid #119D3B;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin: 0;
  margin-top: 2px;
  margin-right: 14px;
}

input[type=checkbox]:checked::before {
  position: absolute;
  top: 2px;
  left: 8px;
  transform: rotate(50deg);
  width: 10px;
  height: 16px;
  border-right: 2px solid #119D3B;
  border-bottom: 2px solid #119D3B;
  content: "";
}

select {
  width: 100%;
  height: 100%;
  padding: 0 20px;
  border: none;
  font-size: inherit;
  font-weight: inherit;
  font-family: inherit;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  cursor: pointer;
  color: inherit;
}

.selectWrap {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  border: 1.5px solid #C1C1C1;
}
.selectWrap::before {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 2;
  display: block;
  width: 22px;
  height: 18px;
  background: #119D3B;
  -webkit-clip-path: polygon(0 0, 100% 0%, 50% 100%);
          clip-path: polygon(0 0, 100% 0%, 50% 100%);
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
}

textarea {
  min-height: 276px;
}

label {
  display: flex;
  align-items: center;
}

label.center {
  justify-content: center;
}

picture img, picture source {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media only screen and (max-width: 1400px) {
  input[type=text], input[type=email], input[type=tel], textarea {
    padding: 14px 20px;
  }
  input[type=checkbox] {
    width: 20px;
    height: 20px;
    margin-right: 8px;
  }
  input[type=checkbox]:checked::before {
    top: 0px;
    left: 4px;
    width: 6px;
    height: 10px;
  }
  input[type=radio] {
    width: 16px;
    height: 16px;
    margin-right: 10px;
  }
  input[type=radio]::before {
    top: 3px;
    left: 3px;
  }
}
@media only screen and (min-width: 1025px) {
  .tb {
    display: none;
  }
}
@media only screen and (max-width: 1024px) {
  .n_tb {
    display: none;
  }
  body {
    font-size: var(--fontSize_pc15);
    line-height: 1.8;
  }
  .selectWrap::before{
    width: 15px;
    height: 11px;
    transform: translateY(-46%);
  }
}
@media only screen and (min-width: 769px) {
  .sp {
    display: none;
  }
}
@media only screen and (max-width: 768px) {
  .pc {
    display: none;
  }
}
/*------------------
  フォントサイズ管理
------------------*/
:root {
  --fontSize_pc9: clamp(8px, 0.46875vw, 12px);
  --fontSize_pc12: clamp(8px, 0.625vw, 14px);
  --fontSize_pc13: clamp(10px, 0.67708333vw, 15px);
  --fontSize_pc14: clamp(12px, 0.7291666vw, 16px);
  --fontSize_pc15: clamp(13px, 0.78125vw, 17px);
  --fontSize_pc16: clamp(13px, 0.83333vw, 18px);
  --fontSize_pc17: clamp(15px, 0.88541666vw, 19px);
  --fontSize_pc18: clamp(14px, 0.9375vw, 22px);
  --fontSize_pc19: clamp(14px, 0.98958333vw, 23px);
  --fontSize_pc20: clamp(15px, 1.0416666vw, 26px);
  --fontSize_pc21: clamp(15px, 1.09375vw, 27px);
  --fontSize_pc22: clamp(15px, 1.1458333vw, 28px);
  --fontSize_pc23: clamp(15px, 1.19791vw, 28px);
  --fontSize_pc24: clamp(16px, 1.25vw, 30px);
  --fontSize_pc25: clamp(15px, 1.30208333vw, 31px);
  --fontSize_pc26: clamp(18px, 1.35416666vw, 32px);
  --fontSize_pc27: clamp(18px, 1.40625vw, 32px);
  --fontSize_pc28: clamp(18px, 1.458333vw, 34px);
  --fontSize_pc29: clamp(25px, 1.51041666vw, 34px);
  --fontSize_pc30: clamp(20px, 1.5625vw, 34px);
  --fontSize_pc31: clamp(20px, 1.6145833vw, 36px);
  --fontSize_pc32: clamp(22px, 1.6666vw, 36px);
  --fontSize_pc33: clamp(22px, 1.71875vw, 38px);
  --fontSize_pc34: clamp(24px, 1.7708333vw, 38px);
  --fontSize_pc35: clamp(25px, 1.8229166vw, 38px);
  --fontSize_pc36: clamp(26px, 1.875vw, 38px);
  --fontSize_pc37: clamp(26px, 1.927vw, 38px);
  --fontSize_pc38: clamp(26px, 1.9792vw, 40px);
  --fontSize_pc39: clamp(24px, 2.03125vw, 42px);
  --fontSize_pc40: clamp(28px, 2.083333vw, 48px);
  --fontSize_pc41: clamp(30px, 2.1354166vw, 48px);
  --fontSize_pc42: clamp(30px, 2.1875vw, 50px);
  --fontSize_pc43: clamp(30px, 2.2395833vw, 52px);
  --fontSize_pc44: clamp(30px, 2.291666vw, 52px);
  --fontSize_pc45: clamp(35px, 2.34375vw, 54px);
  --fontSize_pc46: clamp(30px, 2.3958333vw, 54px);
  --fontSize_pc47: clamp(30px, 2.44791666vw, 56px);
  --fontSize_pc48: clamp(30px, 2.5vw, 58px);
  --fontSize_pc49: clamp(30px, 2.552vw, 58px);
  --fontSize_pc50: clamp(32px, 2.60416666vw, 60px);
  --fontSize_pc53: clamp(32px, 2.76041666vw, 63px);
  --fontSize_pc55: clamp(32px, 2.8645vw, 65px);
  --fontSize_pc60: clamp(40px, 3.125vw, 72px);
  --fontSize_pc65: clamp(45px, 3.3854vw, 78px);
  --fontSize_pc66: clamp(45px, 3.4375vw, 78px);
  --fontSize_pc70: clamp(52px, 3.64583333vw, 82px);
  --fontSize_pc73: clamp(52px, 3.8vw, 73px);
  --fontSize_pc83: clamp(50px, 4.322196666vw, 90px);
  --fontSize_pc89: clamp(50px, 4.635416666vw, 100px);
  --fontSize_pc90: clamp(66px, 6.25vw, 90px);
  --fontSize_pc93: clamp(66px, 4.84375vw, 104px);
  --fontSize_pc102: clamp(70px, 5.3125vw, 106px);
  --fontSize_pc106: clamp(70px, 5.552vw, 106px);
  --fontSize_pc142: clamp(94px, 7.39583vw, 170px);
  --fontSize_pc150: clamp(94px, 7.8125vw, 170px);
  --fontSize_pc162: clamp(145px, 8.4375vw, 170px);
  --fontSize_pc170: clamp(90px, 8.85vw, 180px);
  --fontSize_pc212: clamp(150px, 11.041666vw, 220px);
  --fontSize_sp9: clamp(9px, 2.307vw, 13px);
  --fontSize_sp10: clamp(10px, 2.5641vw, 14px);
  --fontSize_sp11: clamp(11px, 2.82051vw, 14px);
  --fontSize_sp12: clamp(10px, 3.076923vw, 15px);
  --fontSize_sp13: clamp(13px, 3.333333vw, 16px);
  --fontSize_sp14: clamp(13px, 3.58974vw, 17px);
  --fontSize_sp15: clamp(14px, 3.8461538vw, 20px);
  --fontSize_sp16: clamp(15px, 4.102564102vw, 19px);
  --fontSize_sp17: clamp(15px, 4.3589vw, 22px);
  --fontSize_sp18: clamp(16px, 4.6153846vw, 24px);
  --fontSize_sp19: clamp(16px, 4.8718vw, 22px);
  --fontSize_sp20: clamp(18px, 5.1282vw, 24px);
  --fontSize_sp21: clamp(19px, 5.3846153vw, 26px);
  --fontSize_sp22: clamp(20px, 5.641025vw, 27px);
  --fontSize_sp23: clamp(21px, 5.897435vw, 28px);
  --fontSize_sp24: clamp(22px, 6.15384615vw, 29px);
  --fontSize_sp25: clamp(23px, 6.41vw, 38px);
  --fontSize_sp26: clamp(24px, 6.66666666vw, 32px);
  --fontSize_sp28: clamp(26px, 7.18vw, 34px);
  --fontSize_sp30: clamp(28px, 7.6923076vw, 50px);
  --fontSize_sp32: clamp(28px, 8.2051282051vw, 38px);
  --fontSize_sp33: clamp(28px, 8.46vw,40px);
  --fontSize_sp35: clamp(30px, 8.9743vw, 60px);
  --fontSize_sp38: clamp(36px, 9.743589vw, 70px);
  --fontSize_sp40: clamp(38px, 10.25641vw, 50px);
  --fontSize_sp45: clamp(43px, 11.53846153vw, 55px);
  --fontSize_sp50: clamp(48px, 12.82051282vw, 85px);
  --fontSize_sp60: clamp(58px, 15.38461538vw, 78px);
  --fontSize_sp77: clamp(75px, 19.743589vw, 100px);
  --fontSize_sp80: clamp(78px, 20.51vw, 120px);
  --fontSize_sp100: clamp(90px, 5.20833vw, 140px);
}

/*===============================
         bl-topLink
===============================*/
.bl-topLink {
  position: relative;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  padding-right: 60px;
  margin-top: 25px;
}
.bl-topLink span {
  font-size: var(--fontSize_pc22);
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1;
  padding-bottom: 5px;
}
.bl-topLink img {
  position: absolute;
  width: 42px;
  right: 0;
  bottom: -6px;
}
@media only screen and (min-width: 1025px) {
  .bl-topLink {
    transition: 0.2s;
  }
  .bl-topLink:hover {
    padding-right: 52px;
    transform: translateX(8px);
  }
  .bl-topLink:hover img._hover {
    opacity: 1;
  }
}
.bl-topLink::before {
  position: absolute;
  content: "";
  display: block;
  width: calc(100% - 32px);
  height: 1px;
  background-color: #fff;
  left: 0;
  bottom: 0;
  z-index: 2;
}
.bl-topLink._right {
  margin-left: auto;
}
.bl-topLink._center {
  margin: 0 auto;
}
.bl-topLink._black {
  color: #171717;
}
.bl-topLink._black::before {
  background-color: #171717;
}

img._hover {
  opacity: 0;
  transition: 0.2s;
}

@media only screen and (max-width: 1024px) {
  .bl-topLink span {
    font-size: var(--fontSize_sp17);
  }
  .bl-topLink img {
    width: 34px;
    height: 34px;
    bottom: -4px;
  }
  .bl-topLink._right{
    margin: 0 auto;
  }
}
/*===============================
         bl-lowerSecTtl
===============================*/
.bl-lowerSecTtl_jp {
  font-size: var(--fontSize_pc18);
  line-height: 1;
}

.md-lowerSecTtl_en {
  font-size: var(--fontSize_pc65);
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0;
  color: #119D3B;
  text-transform: uppercase;
}
.md-lowerSecTtl_en._white {
  color: #fff;
}

@media only screen and (max-width: 1024px) {
  .bl-lowerSecTtl_jp {
    font-size: var(--fontSize_sp14);
  }
  .md-lowerSecTtl_en {
    font-size: var(--fontSize_sp38);
  }
}
/*===============================
         bl-lowerOl_dl
===============================*/
.bl-lowerOl_dl {
  padding: 28px 0;
  font-size: var(--fontSize_pc20);
  border-bottom: 1px solid rgba(23, 23, 23, 0.5);
}
.bl-lowerOl_dl dt {
  margin-bottom: 6px;
}
.bl-lowerOl_dl dd {
  font-weight: 500;
}
.bl-lowerOl_dl div + div {
  margin-top: 14px;
}
.bl-lowerOl_dl span{
  margin-left: -0.5em;
}
.bl-lowerOl_dl div+div{
  margin-top: 0;
}
.bl-lowerOl_dl ._addressFlex{
  display: flex;
  margin-top: 10px;
}
.bl-lowerOl_dl ._map{
  width: 41.1%;
}
.bl-lowerOl_dl ._map iframe{
  width: 100%;
  height: 100%;
}
.bl-lowerOl_dl ._txt{
  flex: 1;
  margin-left: 26px;
}
.bl-lowerOl_dl ._accsessFlex{
  display: flex;
}
.bl-lowerOl_dl ._accsessFlex div:last-child{
  flex: 1;
}
.bl-lowerOl_dl ._address+._address{
  margin-top: 46px;
}
@media only screen and (max-width: 1024px) {
  .bl-lowerOl_dl {
    padding: 16px 0;
    font-size: var(--fontSize_sp15);
  }
}
@media only screen and (max-width: 768px){
  .bl-lowerOl_dl ._addressFlex{
    display: block;
  }
  .bl-lowerOl_dl ._map{
    width: 100%;
    height: 50vw;
  }
  .bl-lowerOl_dl ._txt{
    margin-left: 0;
    margin-top: 20px;
  }
}

/*===============================
         md-fixedBg
===============================*/
.md-fixedBgWrap {
  position: fixed;
  z-index: -1;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
}
.md-fixedBgWrap._absolute {
  position: absolute;
  top: auto;
  bottom: 0;
}
.md-fixedBgWrap._2 {
  position: absolute;
}
.md-fixedBgWrap._2._fixed {
  position: fixed;
}
.md-fixedBgWrap._2._absolute {
  position: absolute;
  top: 0;
  bottom: auto;
}
.md-fixedBgWrap._2._absolute._bottom {
  bottom: 0;
  top: auto;
}
.md-fixedBgWrap video{
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.md-fixedBg {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.md-fixedBg._filter::before {
  position: absolute;
  content: "";
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000000;
  opacity: 0.5;
}

.md-fixedWrap {
  position: relative;
}

@media only screen and (max-width: 1024px){
  .md-fixedBg._topBg1 img,
  .md-fixedBg._topBg1 source{
    object-position: 82% 50%;
  }
  .md-fixedBg._topBg2 img,
  .md-fixedBg._topBg2 source{
    object-position: 10% 50%;
  }
  .md-fixedBg._topBg3 img,
  .md-fixedBg._topBg3 source{
    object-position: 90% 50%;
  }
  .md-fixedBg._abt1 img,
  .md-fixedBg._abt1 source{
    object-position: 100% 50%;
  }
  .md-fixedBg._abt3 img,
  .md-fixedBg._abt3 source{
    object-position: 12% 50%;
  }
  .md-fixedBg._job img,
  .md-fixedBg._job source{
    object-position: 70% 50%;
  }
  .md-fixedBg._wel1 img,
  .md-fixedBg._wel1 source{
    object-position: 25% 50%;
  }
  .md-fixedBg._voice img,
  .md-fixedBg._voice source{
    object-position: 80% 50%;
  }
  .md-fixedBg._entry img,
  .md-fixedBg._entry source{
    object-position: 75% 50%;
  }
}

/*===============================
         md-side
===============================*/
.md-side_linkWrap {
  display: flex;
  flex-direction: column;
}

.md-side_logoWrap {
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0;
}

.md-side_logo {
  width: 4.375vw;
  min-width: 40px;
  max-width: 120px;
  margin-right: 12px;
}

.md-side_comName_jp {
  font-size: var(--fontSize_pc29);
  line-height: 1;
  letter-spacing: 0;
}

.md-side_comName_lower {
  display: flex;
  align-items: center;
  margin-top: 2px;
}

.md-side_comName_en {
  font-size: var(--fontSize_pc9);
  font-weight: 500;
  line-height: 1;
  padding-left: 0;
  text-transform: uppercase;
}

.md-side_comName_site {
  font-size: var(--fontSize_pc18);
  line-height: 1;
  text-transform: uppercase;
  margin-left: 12px;
  color: #119D3B;
}

.md-side_menuTtl {
  background-color: #119D3B;
  text-transform: uppercase;
  padding: 8px 34px;
  margin-bottom: 14px;
}

.md-side_topLinkItem {
  position: relative;
  padding: 12px 0 12px 74px;
  border-bottom: 1px solid #FFFFFF;
  font-size: var(--fontSize_pc18);
}

.md-side_topOpen {
  position: absolute;
  width: 9px;
  top: calc(12px + var(--fontSize_pc18) / 1.5);
  left: 26px;
  cursor: pointer;
}

.md-side_topLink_lower {
  display: none;
  padding-top: 10px;
}
.md-side_topLink_lower a {
  display: block;
  font-size: var(--fontSize_pc15);
}

.md-side_snsWrap {
  margin-top: 28px;
  display: flex;
  justify-content: end;
  align-items: center;
}
.md-side_snsWrap a {
  width: 30px;
  height: 30px;
}
.md-side_snsWrap a + a {
  margin-left: 24px;
}
.md-side_snsWrap a:last-child{
  display: none;
}
.md-side_topLink_scrollWrap {
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.md-side_topLink_scrollWrap::-webkit-scrollbar {
  width: 8px;
}

.md-side_topLink_scrollWrap::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 4px;
}

.md-side_topLink_scrollWrap::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 4px;
}

.md-side_topLink_scrollWrap::-webkit-scrollbar-thumb:hover {
  background: #555;
}

.md-side_lowerLink {
  position: relative;
  padding: 12px 20px 12px 74px;
  border-bottom: 1px solid #fff;
  font-size: var(--fontSize_pc18);
  font-weight: 500;
}
.md-side_lowerLink::before {
  position: absolute;
  content: "";
  display: block;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background-color: #119D3B;
  top: 50%;
  left: 25px;
  transform: translateY(-50%);
  opacity: 0;
}
.md-side_lowerLink.current::before {
  opacity: 1;
}

@media only screen and (max-width: 1280px) {
  .md-side_lowerLink {
    padding: 8px 20px 12px 52px;
  }
  .md-side_lowerLink::before {
    left: 22px;
  }
}
/*===============================
      md-playbtn,md-entryBtn
===============================*/
.md-playbtn {
  position: fixed;
  z-index: 9;
  bottom: 55px;
  left: 5.2vw;
  border: 1px solid #fff;
  font-size: var(--fontSize_pc17);
  text-transform: uppercase;
  height: 2.47em;
  width: 8.53em;
  display: flex;
  align-items: center;
  justify-content: center;
}

.md-entryBtn {
  position: fixed;
  z-index: 9;
  bottom: 55px;
  right: 5.2vw;
  display: block;
  width: 9.21875vw;
  height: 8.02vw;
  background-color: #119D3B;
  letter-spacing: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 110px;
  min-height: 100px;
}
.md-entryBtn div {
  display: block;
  width: calc(100% - 6px);
  height: calc(100% - 6px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid #fff;
}
.md-entryBtn span {
  line-height: 1;
}
.md-entryBtn span:first-child {
  font-size: var(--fontSize_pc40);
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.md-entryBtn span:last-child {
  font-size: var(--fontSize_pc18);
}
@media only screen and (min-width: 1025px){
  .md-entryBtn div{
    transition: .2s;
  }
  .md-entryBtn:hover div{
    background-color: #fff;
    color: #119D3B;
    border: transparent;
    height: calc(100% - 8px);
    width: calc(100% - 8px);
  }
}

@media only screen and (max-width: 1400px) {
  .md-playbtn {
    left: 2.857%;
    bottom: 30px;
  }
  .md-entryBtn {
    right: 2.857%;
    bottom: 30px;
  }
}
@media only screen and (max-width: 1280px) {
  .md-playbtn {
    left: 1.953125%;
  }
  .md-entryBtn {
    right: 1.953125%;
  }
}
@media only screen and (min-width: 1025px){
  .md-playbtn.tb{
    display: none;
  }
}
@media only screen and (max-width: 1024px) {
  .md-playbtn.n_tb{
    display: none;
  }
  .md-entryBtn {
    width: 90px;
    height: 82px;
    min-width: unset;
    min-height: unset;
    right: 20px;
  }
  .md-entryBtn span:first-child {
    font-size: 22px;
  }
  .md-entryBtn span:last-child {
    font-size: 12px;
  }
  .md-playbtn {
    position: absolute;
    top: 59%;
    left: 50%;
    font-size: 12px;
    transform: translateX(-50%);
  }
}
/*===============================
         md-head
===============================*/
.md-head_logoWrap {
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 4.5vw;
}

.md-head_logo {
  width: 6vw;
  margin-right: 12px;
}

.md-head_comName_jp {
  line-height: 1;
  letter-spacing: 0;
  font-size: var(--fontSize_pc39);
}
.md-head_comName_jp._black {
  color: #171717;
  transition: color 0.5s;
}
.md-head_comName_jp._black.js-menu_open {
  color: #fff;
}

.md-head_comName_lower {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.md-head_comName_en {
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
  font-size: var(--fontSize_pc12);
}
.md-head_comName_en._black {
  color: #171717;
  transition: color 0.5s;
}
.md-head_comName_en._black.js-menu_open {
  color: #fff;
}

.md-head_comName_site {
  line-height: 1;
  text-transform: uppercase;
  color: #119D3B;
  font-size: var(--fontSize_pc22);
  letter-spacing: 0;
}

.md-head_menuBtn {
  position: absolute;
  top: 50%;
  right: 4.0625vw;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 40px;
  height: 25px;
  cursor: pointer;
}
.md-head_menuBtn span {
  width: 100%;
  height: 1px;
  background-color: #fff;
}
.md-head_menuBtn._black span {
  background-color: #171717;
}
.md-head_menuBtn._black.js-menu_open span {
  background-color: #fff;
}

@media only screen and (max-width: 1280px) {
  .md-head_logoWrap {
    left: 6.2%;
  }
  .md-head_menuBtn {
    right: 6.2%;
  }
}
@media only screen and (max-width: 1024px) {
  .md-head_logo {
    width: 50px;
    margin-right: 8px;
    min-width: unset;
  }
  .md-head_comName_jp {
    font-size: var(--fontSize_sp22);
  }
  .md-head_comName_lower {
    margin-top: 4px;
  }
  .md-head_comName_en {
    font-size: 8px;
  }
  .md-head_comName_site {
    font-size: var(--fontSize_sp12);
    margin-left: 4px;
  }
  .md-head_menuBtn {
    right: 6.2%;
    width: 30px;
    height: 14px;
  }
}
/*===============================
         md-nav
===============================*/
.md-nav {
  position: fixed;
  z-index: 99;
  width: 100%;
  height: 100%;
  background-color: #1C1C1C;
}

.md-fixedTxt_hide._nav {
  position: absolute;
  z-index: 1;
}

.md-topFv_logoWrap._nav {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 50%;
  height: 100%;
  width: 41.875%;
  background-color: rgba(23, 23, 23, 0.75);
  transform: translateX(-50%);
}

.md-nav_centerWrap {
  margin: 0 auto;
  width: 41.875%;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding-top: 250px;
  padding-bottom: 40px;
}

.md-nav_linkWrap {
  flex: 1;
  overflow: auto;
  margin: 0 -50px;
}

.md-nav_linkWrap {
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
@media only screen and (min-width: 1025px) {
  .md-nav_linkWrap a {
    transition: 0.2s;
  }
  .md-nav_linkWrap a:hover {
    opacity: 0.6;
  }
}

.md-nav_linkWrap::-webkit-scrollbar {
  width: 8px;
}

.md-nav_linkWrap::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 4px;
}

.md-nav_linkWrap::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 4px;
}

.md-nav_linkWrap::-webkit-scrollbar-thumb:hover {
  background: #555;
}

.md-nav_linkItem {
  position: relative;
  padding: 2.4vh 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  transition: 0.2s;
}
.md-nav_linkItem ._top {
  display: flex;
  flex-direction: column;
  width: -moz-fit-content;
  width: fit-content;
}
.md-nav_linkItem ._top span {
  font-weight: 500;
}
.md-nav_linkItem ._top span:first-child {
  text-transform: uppercase;
  font-size: var(--fontSize_pc16);
  line-height: 1;
  margin-bottom: 3px;
}
.md-nav_linkItem ._top span:last-child {
  font-size: var(--fontSize_pc28);
  letter-spacing: 0.05em;
}
.md-nav_linkItem.active {
  background-color: rgba(17, 157, 59, 0.7);
}

.md-nav_link_lower {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  font-size: var(--fontSize_pc17);
  font-weight: 400;
  display: none;
}
.md-nav_link_lower a {
  margin-right: 1.6vw;
}

.md-nav_openLower {
  position: absolute;
  top: 4.07vh;
  right: 50px;
  width: 38px;
  height: 38px;
  border: 1px solid #fff;
  cursor: pointer;
}
.md-nav_openLower span {
  position: absolute;
  width: 20px;
  height: 1px;
  background-color: #fff;
  top: 50%;
  left: 50%;
  transform: translateX(-50%);
}
.md-nav_openLower span:last-child {
  transform: translateX(-50%) rotate(90deg);
  transition: 0.2s;
}
.md-nav_openLower.active span:last-child {
  transform: translateX(-50%);
}
@media only screen and (min-width: 1025px) {
  .md-nav_openLower:hover {
    opacity: 0.4;
  }
}

.md-nav_bottomWrap {
  position: absolute;
  right: 5.2vw;
  bottom: 24px;
  text-align: right;
}
.md-nav_bottomWrap a {
  display: flex;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  font-size: var(--fontSize_pc18);
  font-weight: 500;
  margin-left: auto;
  opacity: 0.4;
}
.md-nav_bottomWrap a img {
  margin-left: 14px;
  width: 20px;
  height: 20px;
}
.md-nav_bottomWrap a + a {
  margin-top: 10px;
}
.md-nav_bottomWrap p {
  font-size: var(--fontSize_pc15);
  font-weight: 400;
  margin-top: 22px;
}

.md-nav_close {
  position: absolute;
  z-index: 2;
  width: 30px;
  height: 30px;
  top: 20px;
  right: 10px;
  border: 1px solid #fff;
  cursor: pointer;
}
.md-nav_close span {
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: #fff;
  top: 50%;
  left: 50%;
}
.md-nav_close span:first-child {
  transform: translateX(-50%) rotate(45deg);
}
.md-nav_close span:last-child {
  transform: translateX(-50%) rotate(-45deg);
}

@media only screen and (max-width: 1400px) {
  .md-nav_bottomWrap {
    right: 2.857%;
  }
  .md-nav_bottomWrap p span {
    display: block;
  }
  .md-nav_centerWrap {
    padding-top: 220px;
  }
}
@media only screen and (max-width: 1280px) {
  .md-nav_bottomWrap {
    right: 1.953125%;
  }
  .md-nav_close {
    width: 20px;
    height: 20px;
    top: 10px;
  }
}
@media only screen and (max-width: 1024px) {
  .md-fixedTxt_hide._nav {
    display: block;
    padding-top: 10px;
  }
  .md-fixedTxt_hide._nav .md-fixedTxt img {
    width: 120vw;
  }
  .md-fixedTxt_hide._nav .md-fixedTxt {
    animation: infinity-scroll-left 48s infinite linear 0.5s both;
  }
  .md-topFv_logoWrap._nav {
    display: none;
  }
  .md-nav_centerWrap {
    width: 100%;
    padding: 16vw 6.2% 120px 6.2%;
  }
  .md-nav_linkWrap {
    margin: 0;
  }
  .md-nav_bottomWrap {
    right: 6.2%;
  }
  .md-nav_bottomWrap p {
    margin-top: 12px;
  }
  .md-nav_bottomWrap p span {
    display: inline;
  }
  .md-nav_bottomWrap a img {
    width: 16px;
    height: 16px;
  }
  .md-nav_bottomWrap a + a {
    margin-top: 8px;
  }
  .md-nav_linkItem {
    padding: 20px 50px;
  }
  .md-nav_linkItem ._top span:last-child {
    font-size: var(--fontSize_sp18);
  }
  .md-nav_linkItem ._top span:first-child {
    font-size: var(--fontSize_sp12);
  }
  .md-nav_link_lower {
    font-size: var(--fontSize_sp14);
  }
  .md-topFv_logo {
    min-width: 50px;
    margin-right: 8px;
  }
  .md-nav_openLower {
    top: 30px;
  }
}
@media only screen and (max-width: 768px) {
  .md-nav_centerWrap {
    width: 100%;
    padding: 120px 6.2% 150px 6.2%;
  }
  .md-nav_linkItem {
    padding: 20px;
  }
  .md-nav_openLower {
    width: 26px;
    height: 26px;
    right: 20px;
  }
  .md-nav_openLower span {
    width: 16px;
  }
  .md-nav_link_lower a {
    display: inline-block;
    margin-right: 18px;
  }
}
/*===============================
         md-topFv
===============================*/
.md-topFv_logoWrap {
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0;
}

.md-topFv_logo {
  width: 6.5625vw;
  max-width: 140px;
  margin-right: 16px;
}

.md-topFv_comName_jp {
  font-size: var(--fontSize_pc45);
  line-height: 1;
  letter-spacing: 0;
}

.md-top_comName_lower {
  display: flex;
  align-items: center;
  margin-top: 4px;
}

.md-topFv_comName_en {
  font-size: var(--fontSize_pc14);
  font-weight: 500;
  line-height: 1;
  padding-left: 0.3em;
  text-transform: uppercase;
}

.md-topFv_comName_site {
  font-size: var(--fontSize_pc28);
  line-height: 1;
  text-transform: uppercase;
  margin-left: 10px;
  color: #119D3B;
}

.md-topFv_lTxt {
  position: absolute;
  font-size: var(--fontSize_pc90);
  font-weight: 900;
  letter-spacing: 0.05em;
  width: -moz-max-content;
  width: max-content;
  top: 50%;
  left: 50%;
  transform: translate(calc(-50% + 0.5em), -34%);
  text-align: center;
}

@media only screen and (max-width: 1600px) {
  .md-topFv_lTxt {
    font-size: var(--fontSize_pc83);
  }
}
@media only screen and (max-width: 1024px) {
  .md-topFv_lTxt {
    font-size: var(--fontSize_sp45);
    transform: translate(calc(-50% + 0.5em), -50%);
    line-height: 1.5;
    top: 44%;
  }
  .md-topFv_logoWrap {
    display: none;
  }
}
/*===============================
          md-topAbt
===============================*/
.md-topAbt_contWrap {
  position: relative;
  z-index: 2;
  letter-spacing: 0.03em;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.md-topAbt_txt {
  font-size: var(--fontSize_pc25);
  font-weight: 500;
  margin-bottom: 40px;
  text-align: center;
}
.md-topAbt_txt._l {
  font-size: var(--fontSize_pc40);
  font-weight: 700;
  margin-bottom: 110px;
}
.md-topAbt_txt._m {
  font-size: var(--fontSize_pc28);
  font-weight: 700;
}

.md-topAbt_bgImg {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.15;
}

.md-topAbt_txt span{
  font-size: var(--fontSize_pc28);
}

@media only screen and (max-width: 1024px) {
  .md-topAbt_txt._l {
    font-size: var(--fontSize_sp25);
    margin-bottom: 70px;
  }
  .md-topAbt_txt {
    font-size: var(--fontSize_sp15);
    margin-bottom: 30px;
  }
  .md-topAbt_txt._m {
    font-size: var(--fontSize_sp20);
  }
  .md-topAbt_contWrap {
    min-height: 100vh;
  }
  .md-topAbt_txt span{
  font-size: var(--fontSize_pc20);
  }
}
/*===============================
          md-topJobs
===============================*/
.md-topJobs_grad {
  background: linear-gradient(#2EA652, #6EB126);
  display: flex;
  flex-direction: column;
  opacity: 0.75;
}
.md-topJobs_grad span {
  display: block;
  height: 10px;
  margin-top: 16px;
  background-color: #919191;
}

.md-topJobs_contWrap {
  position: relative;
  padding: 80px 0;
  display: flex;
  align-items: center;
  min-height: calc(100vh - 78px);
}

.md-topJobs_picWrap {
  padding-left: 17.8%;
  height: 20.2vw;
  min-height: 300px;
  margin-left: auto;
}
.md-topJobs_picWrap picture {
  display: block;
  width: 100%;
  height: 100%;
}

.md-topJobs_txtWrap {
  padding-top: 50px;
  padding-left: 17.8%;
}

.md-topJobs_lTxt {
  font-size: var(--fontSize_pc35);
  letter-spacing: 0.05em;
  line-height: 1.43;
  margin-bottom: 25px;
}

.md-topJobs_sTxt {
  margin-bottom: 62px;
  font-weight: 500;
}

.md-topJobs_leftTxt {
  position: absolute;
  font-size: var(--fontSize_pc170);
  font-weight: 900;
  letter-spacing: 0;
  writing-mode: vertical-lr;
  text-transform: uppercase;
  top: 0;
  left: -0.06em;
  line-height: 1;
}

@media only screen and (max-width: 1400px) {
  .md-topJobs_leftTxt {
    font-size: var(--fontSize_pc150);
  }
  .md-topJobs_txtWrap, .md-topJobs_picWrap {
    padding-left: 14.8%;
  }
}
@media only screen and (max-width: 1024px) {
  .md-topJobs_txtWrap, .md-topJobs_picWrap {
    padding-left: 0;
  }
  .md-topJobs_lTxt {
    font-size: var(--fontSize_sp26);
    text-align: center;
  }
  .md-topJobs_sTxt {
    font-size: var(--fontSize_sp15);
  }
  .md-topJobs_picWrap {
    height: 48vw;
    min-height: 250px;
  }
  .md-topJobs_leftTxt {
    font-size: var(--fontSize_sp80);
    position: relative;
    writing-mode: horizontal-tb;
    left: 0;
    line-height: 0.9;
  }
}
/*===============================
          md-topWf
===============================*/
.md-topWf_contWrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 160px);
}

.md-topWf_picWrap {
  position: relative;
  width: 100%;
  height: 24vw;
  max-height: 500px;
  min-height: 400px;
}
.md-topWf_picWrap picture {
  display: block;
  width: 100%;
  height: 100%;
}

.md-topWf_picTxt {
  position: absolute;
  font-size: var(--fontSize_pc162);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
  line-height: 1;
  bottom: -0.38em;
  left: 50%;
  transform: translateX(-50%);
}

.md-topWf_txtWrap {
  margin-top: calc(50px + var(--fontSize_pc162) * 0.38);
}

.md-topWf_lTxt {
  font-size: var(--fontSize_pc35);
  letter-spacing: 0.05em;
  margin-bottom: 25px;
  line-height: 1.43;
  text-align: center;
}
.md-topWf_lTxt span {
  display: inline-block;
}

.md-topWf_sTxt {
  margin-bottom: 62px;
  padding: 0 3.4vw;
  font-weight: 500;
}

@media only screen and (max-width: 1600px) {
  .md-topWf_picTxt {
    font-size: var(--fontSize_pc150);
  }
}
@media only screen and (max-width: 1024px) {
  .md-topWf_picTxt {
    font-size: var(--fontSize_sp77);
  }
  .md-topWf_lTxt {
    font-size: var(--fontSize_sp26);
  }
  .md-topWf_sTxt {
    font-size: var(--fontSize_sp15);
    padding: 0;
  }
  .md-topWf_picWrap {
    min-height: 250px;
    padding: 0 6.2%;
  }
  .md-topWf_txtWrap {
    margin-top: calc(50px + var(--fontSize_sp77) * 0.38);
  }
}
@media only screen and (max-width: 768px){
  .md-topWf_picWrap {
    padding: 0 20px;
  }
}



/*===============================
         md-topVoice
===============================*/
.md-topVoice_contWrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: calc(100vh - 160px);
}

.md-topVoice_ttl {
  font-size: var(--fontSize_pc170);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
  color: #119D3B;
}

.md-topVoice_slideWrap {
  margin-top: 35px;
}
.md-topVoice_slideWrap.swiper {
  position: relative;
  width: 100%;
  padding: 0 100px; /* ← 左右に見切れさせる幅 */
  overflow: visible;
}

.md-topVoice_slideItem {
  padding: 50px 60px;
  background-color: #FFFFFF;
  color: #434343;
}

.md-topVoice_pic {
  display: block;
  height: 17.3vw;
  min-height: 290px;
  max-height: 360px;
  margin-bottom: 26px;
}

.md-topVoice_lTxt {
  font-size: var(--fontSize_pc30);
  letter-spacing: 0;
  margin-bottom: 20px;
  line-height: 1.28;
}

.md-topVoice_name {
  font-size: var(--fontSize_pc26);
  letter-spacing: 0.025em;
}

.md-topVoice_post {
  font-size: var(--fontSize_pc22);
  letter-spacing: 0.025em;
}

.md-topVoice_nav {
  position: absolute;
  top: 25.8%;
  width: 4.8vw;
  height: 4.8vw;
  min-width: 40px;
  min-height: 40px;
  max-width: 110px;
  max-height: 110px;
  background-color: #E5E5E5;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.md-topVoice_nav img {
  width: 42px;
}
.md-topVoice_nav._prev {
  left: 75px;
  transform: translateX(-50%);
}
.md-topVoice_nav._next {
  right: 75px;
  transform: translateX(50%);
}
.md-topVoice_nav._next img {
  transform: rotate(180deg);
}
@media only screen and (min-width: 1025px) {
  .md-topVoice_nav {
    transition: 0.2s;
  }
  .md-topVoice_nav:hover {
    background-color: #B5B5B5;
  }
}

.md-topVoice_linkWrap {
  padding-right: 100px;
  margin-top: 62px;
}

@media only screen and (max-width: 1400px) {
  .md-topVoice_slideItem {
    padding: 20px 30px;
  }
  .md-topVoice_slideWrap.swiper {
    padding: 0 50px;
  }
  .md-topVoice_nav._prev {
    left: 40px;
  }
  .md-topVoice_nav._next {
    right: 40px;
  }
  .md-topVoice_nav img {
    width: 30px;
  }
  .md-topVoice_linkWrap {
    padding-right: 50px;
  }
}
@media only screen and (max-width: 1024px) {
  .md-topVoice_slideItem {
    padding: 20px;
  }
  .md-topVoice_pic {
    min-height: unset;
    min-height: 200px;
    height: 45vw;
  }
  .md-topVoice_lTxt {
    font-size: var(--fontSize_sp20);
  }
  .md-topVoice_name {
    font-size: var(--fontSize_sp18);
  }
  .md-topVoice_post {
    font-size: var(--fontSize_sp15);
  }
  .md-topVoice_linkWrap {
    padding-right: 30px;
  }
  .md-topVoice_nav img{
    width: 18px;
  }
}
/*===============================
         md-contactForm
===============================*/
.md-footEntry_contWrap {
  position: relative;
  display: block;
  padding: 7.1vw 50px;
}
@media only screen and (min-width: 1025px) {
  .md-footEntry_contWrap:hover .md-footEntry_pic::before {
    opacity: 0.7;
  }
  .md-footEntry_contWrap:hover .md-footEntry_lTxt img._hover {
    opacity: 1;
  }
}

.md-footEntry_pic {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.md-footEntry_pic picture {
  width: 100%;
  height: 100%;
}
.md-footEntry_pic::before {
  position: absolute;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: #000;
  top: 0;
  left: 0;
  opacity: 0.3;
  transition: 0.2s;
}

.md-footEntry_txtWrap {
  position: relative;
  z-index: 2;
  text-align: center;
}

.md-footEntry_sTxt {
  font-size: var(--fontSize_pc30);
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
}

.md-footEntry_lTxt {
  position: relative;
  height: 5.42vh;
  min-height: 80px;
}
.md-footEntry_lTxt img {
  position: absolute;
  width: 52.4%;
  min-width: 350px;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
}

.md-footEntry_slideHide {
  position: relative;
  padding-top: 18px;
  width: 100%;
  overflow: hidden;
  background-color: rgba(25, 25, 25, 0.75);
  border-bottom: 1px solid #fff;
  opacity: 0.4;
}
.md-footEntry_slideHide span {
  text-transform: uppercase;
  letter-spacing: 0;
  font-size: 17px;
}
.md-footEntry_slideHide::before {
  position: absolute;
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #fff;
  top: 18px;
  left: 0;
}

.md-footEntry_slideImg {
  margin-left: 18px;
  margin-right: 12px;
  width: 22px;
  height: 20px;
  display: flex;
  align-items: center;
}

.md-footEntry_slideWrap {
  display: flex;
  width: -moz-max-content;
  width: max-content;
}

.md-footEntry_slide {
  display: flex;
  width: -moz-max-content;
  width: max-content;
  align-items: center;
  animation: infinity-scroll-left 80s infinite linear 0.5s both;
}

@keyframes infinity-scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
@media only screen and (max-width: 1024px) {
  .md-footEntry_lTxt img {
    min-width: unset;
    width: 100%;
    max-width: 380px;
  }
  .md-footEntry_contWrap {
    padding: 60px 20px;
  }
  .md-footEntry_sTxt {
    font-size: var(--fontSize_sp22);
    margin-bottom: 20px;
  }
  .md-footEntry_pic img, .md-footEntry_pic source {
    -o-object-position: 50% 0%;
       object-position: 50% 0%;
  }
}
/*===============================
            md-foot
===============================*/
.md-foot_infoWrap {
  position: relative;
  padding-bottom: 28px;
  border-bottom: 1px solid #707070;
}

.md-foot_comWrap {
  display: flex;
  align-items: center;
}
.md-foot_comWrap img {
  width: 72px;
  margin-right: 12px;
}
.md-foot_comWrap span {
  font-size: var(--fontSize_pc35);
  letter-spacing: 0;
}

.md-foot_info {
  margin-top: 40px;
  font-size: var(--fontSize_pc18);
  font-weight: 500;
}
.md-foot_info p + p {
  margin-top: 10px;
}

.md-foot_snsLink {
  position: absolute;
  display: flex;
  bottom: 28px;
  right: 0;
}
.md-foot_snsLink a + a {
  margin-left: 30px;
}
.md-foot_snsLink a {
  width: 36px;
  height: 36px;
}
.md-foot_snsLink a:last-child{
  display: none;
}

.md-foot_linkWrap {
  position: relative;
  margin-top: 28px;
}

.md-foot_linkUpper {
  font-size: var(--fontSize_pc20);
  font-weight: 500;
  line-height: 1.4;
}
.md-foot_linkUpper ._upper {
  display: flex;
  justify-content: space-between;
  margin-bottom: 22px;
}

.md-foot_linkLower {
  margin-top: 44px;
  display: flex;
  flex-direction: column;
  color: #9D9D9D;
}
.md-foot_linkLower a {
  display: flex;
  align-items: center;
  font-size: var(--fontSize_pc15);
}
.md-foot_linkLower a + a {
  margin-top: 8px;
}
.md-foot_linkLower img {
  opacity: 0.4;
  margin-left: 14px;
  width: 13px;
}
.md-foot_bannerWrap{
  display: block;
  width: 44%;
  margin-top: 40px;
  min-width: 200px;
}
.md-foot_bannerWrap picture{
  width: 100%;
  display: block;
}
.md-foot_bannerWrap img{
  object-fit: contain;
}

.md-pageTop {
  position: absolute;
  width: 42px;
  height: 42px;
  bottom: 0;
  right: 0;
}
.md-pageTop img {
  position: absolute;
  width: 100%;
  top: 0;
  right: 0;
  transition: 0.2s;
}
.md-pageTop img._hover {
  transform: rotate(-90deg);
}
@media only screen and (min-width: 1025px) {
  .md-pageTop:hover img._hover {
    opacity: 1;
  }
}

.md-foot_bottomTxt {
  margin-top: 46px;
  font-size: var(--fontSize_pc15);
  font-weight: 400;
}

@media only screen and (max-width: 1280px) {
  .md-foot_linkUpper ._upper {
    flex-direction: column;
  }
  .md-foot_linkUpper ._upper a + a {
    margin-top: 22px;
  }
}
@media only screen and (max-width: 1024px) {
  .md-foot_comWrap span {
    font-size: var(--fontSize_sp26);
  }
  .md-foot_comWrap img {
    width: 60px;
  }
  .md-foot_info {
    font-size: var(--fontSize_sp14);
  }
  .md-foot_linkUpper {
    font-size: var(--fontSize_sp15);
  }
  .md-foot_linkUpper ._upper a + a {
    margin-top: 16px;
  }
  .md-foot_linkUpper ._upper {
    margin-bottom: 16px;
  }
  .md-foot_linkLower a {
    font-size: var(--fontSize_sp12);
  }
  .md-foot_bottomTxt {
    font-size: var(--fontSize_sp10);
  }
  .md-foot_bannerWrap{
    margin-top: 20px;
  }
}
/*===============================
          md-fixedTxt_hide
===============================*/
.md-fixedTxt_hide {
  position: absolute;
  top: 0;
  width: 100%;
  padding-top: 5.3vh;
  overflow: hidden;
  border-bottom: 1px solid #FFFFFF;
  padding-bottom: 10px;
}

.md-fixedTxt_wrap {
  display: flex;
  width: -moz-max-content;
  width: max-content;
}

.md-fixedTxt {
  display: flex;
  animation: infinity-scroll-left 80s infinite linear 0.5s both;
}
.md-fixedTxt img {
  width: 96vw;
  max-width: 1920px;
  margin-left: 80px;
}

@media only screen and (max-width: 1024px) {
  .md-fixedTxt_hide {
    display: none;
  }
}
/*===============================
         md-lower
===============================*/
.md-lowerTop {
  position: relative;
  padding-top: 8.4375vw;
}
.md-lowerTop picture{
  display: block;
}

.md-lowerTtl_wrap {
  position: absolute;
  bottom: 0;
  left: 6.2%;
}

.md-lowerTtl_jp {
  font-size: var(--fontSize_pc20);
  line-height: 1;
}

.md-lowerTtl_en {
  font-size: var(--fontSize_pc102);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: 0;
}
.md-lowerTtl_en._s {
  font-size: var(--fontSize_pc89);
}

.md-lowerTop_txtWrap {
  padding-top: 98px;
}
.md-lowerTop_txtWrap._black {
  color: #171717;
}

.md-lowerTop_lTxt {
  font-size: var(--fontSize_pc40);
  letter-spacing: 0.05em;
  line-height: 1.25;
  margin-bottom: 25px;
}

.md-lowerTop_sTxt {
  font-size: var(--fontSize_pc22);
  font-weight: 400;
}
@media only screen and (max-width: 1024px) {
  .md-lowerTop {
    padding-top: 126px;
  }
  .md-lowerTtl_jp {
    font-size: var(--fontSize_sp16);
  }
  .md-lowerTtl_en {
    font-size: var(--fontSize_sp50);
    line-height: 0.9;
  }
  .md-lowerTtl_en._s {
    font-size: var(--fontSize_sp45);
  }
  .md-lowerTop picture{
    height: 36.41vw;
  }
}
@media only screen and (max-width: 768px) {
  .md-lowerTtl_wrap {
    left: 20px;
  }
  .md-lowerTop {
    padding-top: 80px;
  }
}
@media only screen and (max-width: 1024px) {
  .md-lowerTop_txtWrap {
    padding-top: 50px;
  }
}

/*===============================
         md-Rsn
===============================*/
.md-abtRsn_ttlWrap{
  margin-bottom: 36px;
}
.md-abtRsn_txtWrap ._lTxt{
  font-size: var(--fontSize_pc40);
  font-weight: 700;
  margin-bottom: 25px;
}
.md-abtRsn_txtWrap ._sTxt{
  font-size: var(--fontSize_pc22);
  font-weight: 500;
}

@media only screen and (max-width: 1024px) {
  .md-abtRsn_txtWrap ._lTxt{
    font-size: var(--fontSize_sp22);
  }
  .md-abtRsn_txtWrap ._sTxt{
    font-size: var(--fontSize_sp15);
    font-weight: 400;
  }
}

/*===============================
         md-abtBrd
===============================*/
.md-abtBrd_ttlWrap{
  position: relative;
  width: 100%;
  height: 15.4vw;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.md-abtBrd_ttlWrap picture{
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}
.md-abtBrd_ttlWrap ._txt{
  position: relative;
  z-index: 2;
}
.md-abtBrd_contWrap{
  position: relative;
  z-index: 2;
  margin-top: 32px;
}
.md-abtBrd_lTxt{
  text-align: center;
  font-size: var(--fontSize_pc40);
  font-weight: 700;
  letter-spacing: 0.05em;
}
.md-abtBrd_checkWrap{
  margin-top: 34px;
  padding: 0 3.75vw;
}
.md-abtBrd_check{
  display: flex;
  align-items: start;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}
.md-abtBrd_check img{
  width: 1.6vw;
  min-width: 24px;
  margin-right: 0.93vw;
  padding-top: calc(var(--fontSize_pc24) * 0.25);
}
.md-abtBrd_check ._txt{
  flex: 1;
  font-size: var(--fontSize_pc24);
  font-weight: 500;
}
.md-abtBrd_check ._l{
  font-size: var(--fontSize_pc28);
  font-weight: 700;
}
.md-abtBrd_check + .md-abtBrd_check {
  padding-top: 22px;
}
.md-abtBrd_mTxt{
  font-size: var(--fontSize_pc33);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-align: center;
  margin-top: 26px;
}
.md-abtBrd_sTxt{
  margin-top: 8px;
  font-size: var(--fontSize_pc22);
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 0 2.1vw;
}
.md-abtBrd_sTxt ._bold{
  font-weight: 700;
}

@media only screen and (max-width: 1280px){
  .md-abtBrd_checkWrap,.md-abtBrd_sTxt{
    padding: 0;
  }
}
@media only screen and (max-width: 1024px) {
  .md-abtBrd_lTxt{
    font-size: var(--fontSize_sp22);
  }
  .md-abtBrd_check img{
    min-width: 18px;
    margin-right: 12px;
    padding-top: 6px;
  }
  .md-abtBrd_check ._txt{
    font-size: var(--fontSize_sp15);
  }
  .md-abtBrd_check ._l{
    font-size: var(--fontSize_sp18);
  }
  .md-abtBrd_check{
    padding-bottom: 16px;
  }
  .md-abtBrd_check+.md-abtBrd_check{
    padding-top: 16px;
  }
  .md-abtBrd_mTxt{
    font-size: var(--fontSize_sp20);
  }
  .md-abtBrd_sTxt{
    font-size: var(--fontSize_sp15);
    font-weight: 400;
  }
}



/*===============================
         md-abtData
===============================*/
.md-abtData_ttlWrap{
  margin-bottom: 40px;
}
.md-abtData_contWrap{
  padding: 0 3.6vw;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 1.4vw;
  row-gap: 20px;
}
.md-abtData_box{
  border: 1px solid #fff;
  padding: 15px 6px 27px 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.md-abtData_box._l{
  padding: 20px 6px 22px 6px;
}
.md-abtData_mTxt{
  font-size: var(--fontSize_pc22);
  font-weight: 500;
  margin-bottom: 5px;
}
.md-abtData_green{
  font-size: var(--fontSize_pc33);
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #78AE3F;
}
.md-abtDat_sTxt{
  font-size: var(--fontSize_pc16);
  font-weight: 500;
  margin-top: 4px;
  min-height: 1.55em;
}
.md-abtData_bottomTxt{
  padding-right: 3.6vw;
  text-align: right;
  font-size: var(--fontSize_pc18);
  font-weight: 500;
  margin-top: 12px;
}

@media only screen and (max-width: 1600px){
  .md-abtData_contWrap,.md-abtData_bottomTxt{
    padding: 0 2vw;
  }
}
@media only screen and (max-width: 1280px){
  .md-abtData_contWrap{
    column-gap: 1.0vw;
  }
  .md-abtData_contWrap,.md-abtData_bottomTxt{
    padding: 0;
  }
  .md-abtDat_sTxt{
    font-size: var(--fontSize_pc13);
  }
  .md-abtData_mTxt{
    font-size: var(--fontSize_pc19);
  }
}
@media only screen and (max-width: 1024px){
  .md-abtData_contWrap{
    row-gap: 10px;
    column-gap: 10px;
  }
  .md-abtData_box,.md-abtData_box._l{
    padding: 20px 6px 24px 6px;
  }
  .md-abtData_mTxt{
    font-size: var(--fontSize_sp16);
    line-height: 1.5;
    text-align: center;
  }
  .md-abtData_green{
    font-size: var(--fontSize_sp22);
    line-height: 1.2;
  }
  .md-abtDat_sTxt{
    font-size: var(--fontSize_sp10);
  }
  .md-abtData_bottomTxt{
    margin-top: 10px;
    font-size: var(--fontSize_sp11);
  }
}


/*===============================
         md-abtRlt
===============================*/
.md-abtRlt_subTxt{
  font-size: var(--fontSize_pc22);
  font-weight: 500;
  letter-spacing: 0.02em;
  margin-top: 22px;
  margin-bottom: 34px;
}
.md-abtRlt_cont{
  padding: 0 2.4vw;
}
.md-abtRlt_cont+.md-abtRlt_cont{
  margin-top: 44px;
}
.md-abtRlt_imgWrap{
  position: relative;
  margin-bottom: 12px;
}
.md-abtRlt_imgWrap img{
  display: block;
  width: 72px;
  margin: 0 auto;
}
.md-abtRlt_imgWrap img._l{
  width: 80px;
}
.md-abtRlt_imgWrap::before,
.md-abtRlt_imgWrap::after{
  position: absolute;
  content: "";
  display: block;
  width: calc(50% - 100px);
  height: 1px;
  background-color: rgba(255 , 255, 255, 0.75);
  top: 50%;
}
.md-abtRlt_imgWrap::before{
  left: 0;
}
.md-abtRlt_imgWrap::after{
  right: 0;
}
.md-abtRlt_lTxt{
  font-size: var(--fontSize_pc27);
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
  text-align: center;
}
.md-abtRlt_sTxt{
  font-size: var(--fontSize_pc22);
  font-weight: 500;
  letter-spacing: 0.02em;
}

@media only screen and (max-width: 1280px){
  .md-abtRlt_cont{
    padding: 0;
  }
  .md-abtRlt_lTxt{
    font-size: var(--fontSize_pc24);
  }
}
@media only screen and (max-width: 1024px){
  .md-abtRlt_subTxt{
    font-size: var(--fontSize_sp15);
    font-weight: 400;
  }
  .md-abtRlt_imgWrap img{
    width: 50px;
  }
  .md-abtRlt_imgWrap::before, .md-abtRlt_imgWrap::after{
    width: calc(50% - 60px);
  }
  .md-abtRlt_lTxt{
    font-size: var(--fontSize_sp16);
  }
  .md-abtRlt_sTxt{
    font-size: var(--fontSize_sp14);
    font-weight: 400;
  }
  .md-abtRlt_imgWrap img._l{
    width: 60px;
  }
}

/*===============================
         md-abtMsg
===============================*/
.md-abtMsg_ttlWrap {
  margin-bottom: 40px;
}

.md-abtMsg_txtWrap {
  margin-top: 40px;
}
.md-abtMsg_picWrap{
  display: none;
}
.md-abtMsg_lTxt {
  font-size: var(--fontSize_pc40);
  margin-bottom: 25px;
  letter-spacing: 0.05em;
  line-height: 1.25;
}

.md-abtMsg_sTxt {
  font-size: var(--fontSize_pc22);
  font-weight: 400;
}
.md-abtMsg_sTxt + .md-abtMsg_sTxt {
  margin-top: 1.25em;
}

.md-abtMsg_name {
  margin-top: 30px;
  display: flex;
  align-items: center;
  justify-content: end;
}
.md-abtMsg_name span {
  font-weight: 500;
}
.md-abtMsg_name span:first-child {
  font-size: var(--fontSize_pc22);
  margin-right: 8px;
}
.md-abtMsg_name span:last-child {
  font-size: var(--fontSize_pc30);
}

@media only screen and (max-width: 1024px) {
  .md-abtMsg_ttlWrap {
    margin-bottom: 25px;
  }
  .md-abtMsg_txtWrap {
    margin-top: 25px;
  }
  .md-abtMsg_lTxt {
    font-size: var(--fontSize_sp22);
  }
  .md-abtMsg_sTxt {
    font-size: var(--fontSize_sp15);
  }
  .md-abtMsg_name {
    margin-top: 25px;
  }
  .md-abtMsg_name span:first-child {
    font-size: var(--fontSize_sp15);
  }
  .md-abtMsg_name span:last-child {
    font-size: var(--fontSize_sp20);
  }
}
/*===============================
         md-abtPolicy
===============================*/
.md-abtPolicy_ttlWrap {
  text-align: center;
  margin-bottom: 20px;
}

.md-abtPolicy_txtWrap {
  position: relative;
  padding: 48px 0 36px 0;
  font-size: var(--fontSize_pc55);
  letter-spacing: 0.05em;
  line-height: 1.27;
  text-align: center;
}
.md-abtPolicy_txtWrap p {
  position: relative;
  z-index: 2;
}

.md-abtPolicy_bgImg {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.15;
}
.md-abtPolicy_bgImg img {
  height: 100%;
  width: auto;
}

.md-abtPolicy_picWrap {
  position: relative;
  z-index: 3;
  margin-top: 100px;
  height: 38.333vh;
  width: 100%;
}
.md-abtPolicy_picWrap ._1 {
  position: absolute;
  z-index: 2;
  height: 65.7%;
  width: 53.8%;
  bottom: 0;
  left: 0;
}
.md-abtPolicy_picWrap ._2 {
  position: absolute;
  height: 77.6%;
  width: 48%;
  top: -34px;
  right: 0;
}

@media only screen and (max-width: 1024px) {
  .md-abtPolicy_txtWrap {
    font-size: var(--fontSize_sp30);
  }
  .md-abtPolicy_picWrap {
    height: 30vh;
  }
}
/*===============================
         md-abtSrv
===============================*/
.md-abtSrv_ttlWrap, .md-abtSrv_box {
  position: relative;
  z-index: 2;
}

.md-abtSrv_ttlTxt {
  margin: 30px 0;
  font-size: var(--fontSize_pc22);
  font-weight: 400;
}
.md-abtSrv_ttlTxt ._l {
  font-size: var(--fontSize_pc40);
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.25;
  margin-bottom: 25px;
}

.md-abtSrv_box {
  padding-top: 30px;
  padding-bottom: 60px;
}
.md-abtSrv_box + .md-abtSrv_box {
  border-top: 1px solid rgba(255, 255, 255, 0.4);
}

.md-abtSrv_picWrap {
  position: relative;
}

.md-abtSrv_num {
  position: absolute;
  font-size: var(--fontSize_pc212);
  font-weight: 900;
  left: -0.01em;
  bottom: 0;
  line-height: 0.96;
  opacity: 0.8;
  margin-left: -0.02em;
}

.md-abtSrv_lTxt {
  margin-top: 30px;
  font-size: var(--fontSize_pc40);
  letter-spacing: 0.05em;
  line-height: 1.25;
}

.md-abtSrv_sTxt {
  font-size: var(--fontSize_pc22);
  font-weight: 400;
  margin-top: 25px;
}

@media only screen and (max-width: 1024px) {
  .md-abtSrv_ttlTxt {
    font-size: var(--fontSize_sp15);
    margin: 25px 0;
  }
  .md-abtSrv_ttlTxt ._l {
    font-size: var(--fontSize_sp22);
  }
  .md-abtSrv_box {
    padding-top: 20px;
    padding-bottom: 40px;
  }
  .md-abtSrv_lTxt {
    font-size: var(--fontSize_sp22);
    margin-top: 20px;
  }
  .md-abtSrv_sTxt {
    font-size: var(--fontSize_sp15);
    margin-top: 20px;
  }
}
@media only screen and (max-width: 768px) {
  .md-abtSrv_num {
    font-size: var(--fontSize_sp100);
    line-height: 1;
  }
}
/*===============================
         md-abtOl
===============================*/
.md-abtOl_dlWrap {
  padding-top: 20px;
}

/*===============================
         md-abtAcc
===============================*/
.md-abtAcc_topTxt {
  margin-top: 36px;
  font-size: var(--fontSize_pc25);
}

.md-abtAcc_mapFlex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 20px;
}

.md-abtAcc_box {
  width: calc(50% - 1.7vw);
}
.md-abtAcc_box:nth-child(n+3) {
  margin-top: 65px;
}

.md-abtAcc_mapWrap {
  width: 100%;
  height: 13.4375vw;
}
.md-abtAcc_mapWrap iframe {
  width: 100%;
  height: 100%;
}

.md-abtAcc_txtWrap {
  position: relative;
  margin-top: 20px;
}

.md-abtAcc_sTxt {
  font-size: var(--fontSize_pc18);
}
.md-abtAcc_sTxt + .md-abtAcc_sTxt {
  margin-top: 12px;
}
.md-abtAcc_sTxt ._light {
  font-weight: 500;
}
.md-abtAcc_sTxt span{
  margin-left: -0.5em;
}
.md-abtAcc_mapLink {
  display: block;
  width: 96px;
  height: 20px;
  margin-top: 10px;
  margin-left: auto;
}

@media only screen and (max-width: 1400px) {
  .md-abtAcc_box {
    width: calc(50% - 10px);
  }
}
@media only screen and (max-width: 1280px) {
  .md-abtAcc_box:nth-child(n+3) {
    margin-top: 40px;
  }
  .md-abtAcc_mapWrap {
    height: 20vh;
  }
}
@media only screen and (max-width: 1024px) {
  .md-abtAcc_topTxt {
    font-size: var(--fontSize_sp18);
  }
  .md-abtAcc_txtWrap {
    padding-bottom: 30px;
  }
  .md-abtAcc_sTxt {
    font-size: var(--fontSize_sp12);
  }
  .md-abtAcc_sTxt .tb_space{
    padding-left: 1em;
  }
  .md-abtAcc_mapLink {
    width: 80px;
    height: 17px;
  }
}
/*===============================
            md-jobs
===============================*/
.md-jobsTopWrap {
  padding-bottom: 80px;
}

.md-jobs_grad span {
  display: block;
  height: 18px;
  margin-bottom: 10px;
}
.md-jobs_grad ._grad1 {
  background-image: linear-gradient(rgba(46, 166, 82, 0.7215686275), rgba(69, 172, 72, 0.6588235294));
}
.md-jobs_grad ._grad2 {
  background-image: linear-gradient(rgba(69, 172, 72, 0.6588235294), rgba(119, 184, 49, 0.5490196078));
}
.md-jobs_grad ._grad3 {
  background-image: linear-gradient(rgba(119, 184, 49, 0.5490196078), rgba(162, 194, 29, 0.4392156863));
}

.md-jobs_boxWrap {
  padding-top: 104px;
  padding-bottom: 140px;
  background-image: linear-gradient(rgba(132, 177, 71, 0.8509803922), rgba(61, 136, 76, 0.8509803922));
}

.md-jobs_boxTtl {
  position: relative;
  margin-bottom: 50px;
  transition: 0.3s;
  cursor: pointer;
}
.md-jobs_boxTtl ._en {
  font-size: var(--fontSize_pc20);
  font-weight: 500;
  line-height: 1;
}
.md-jobs_boxTtl ._jp {
  font-size: var(--fontSize_pc55);
  letter-spacing: 0.05em;
  line-height: 1;
  margin-top: 6px;
}
.md-jobs_boxTtl::before {
  position: absolute;
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #fff;
  bottom: -50px;
  left: 0;
}
.md-jobs_boxTtl.active {
  margin-bottom: 30px;
}
.md-jobs_boxTtl.active::before {
  opacity: 0;
}

.md-jobs_picWrap {
  margin-bottom: 26px;
}

.md-jobs_lTxt {
  font-size: var(--fontSize_pc30);
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.65;
  margin-bottom: 6px;
  margin-left: -0.5em;
}

.md-jobs_sTxt {
  font-size: var(--fontSize_pc22);
  font-weight: 400;
}

.md-jobs_required {
  position: relative;
  border-bottom: 1px solid #fff;
  margin-top: 26px;
}
.md-jobs_required ._barTxt {
  position: relative;
  font-size: var(--fontSize_pc30);
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.65;
  padding-left: 36px;
}
.md-jobs_required ._barTxt::before, .md-jobs_required ._barTxt::after {
  position: absolute;
  content: "";
  display: block;
  top: 50%;
  height: 1px;
  background-color: #fff;
}
.md-jobs_required ._barTxt::before {
  left: 0;
  width: 20px;
}
.md-jobs_required ._barTxt::after {
  right: 0;
  width: 62%;
}
.md-jobs_required::before, .md-jobs_required::after {
  position: absolute;
  content: "";
  display: block;
  height: calc(100% - var(--fontSize_pc30) * 1.65 / 2);
  bottom: 0;
  background-color: #fff;
  width: 1px;
}
.md-jobs_required::before {
  left: 0;
}
.md-jobs_required::after {
  right: 0;
}

.md-jobs_requiredTxt {
  font-size: var(--fontSize_pc20);
  font-weight: 400;
  line-height: 1.3;
  padding: 26px 2.0833vw 38px 2.0833vw;
}
.md-jobs_requiredTxt ._check {
  display: flex;
  align-items: start;
}
.md-jobs_requiredTxt ._check img {
  width: 21px;
  margin-right: 24px;
}
.md-jobs_requiredTxt ._check + ._check {
  margin-top: 18px;
}

.md-jobs_txtWrap + .md-jobs_txtWrap {
  margin-top: 68px;
}

.md-jobs_box + .md-jobs_box {
  padding-top: 50px;
}

.md-jobs_boxOpen {
  position: absolute;
  width: 48px;
  height: 48px;
  border: 1px solid #fff;
  right: 0;
  bottom: 0;
}
.md-jobs_boxOpen span {
  position: absolute;
  width: 26px;
  height: 1px;
  background-color: #fff;
  top: 50%;
  left: 50%;
  transform: translateX(-50%);
}
.md-jobs_boxOpen span:last-child {
  transform: translateX(-50%) rotate(90deg);
  transition: 0.3s;
}
.md-jobs_boxOpen.active span:last-child {
  transform: translateX(-50%);
}

.md-jobs_hideWrap {
  display: none;
  padding-bottom: 84px;
}
.md-jobs_appLink{
  display: block;
  width: 44%;
  min-width: 200px;
  margin-top: 24px;
}

@media only screen and (max-width: 1024px) {
  .md-jobs_grad span {
    height: 12px;
  }
  .md-jobs_boxWrap {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .md-jobs_boxOpen {
    width: 30px;
    height: 30px;
  }
  .md-jobs_boxOpen span {
    width: 20px;
  }
  .md-jobs_boxTtl {
    margin-bottom: 30px;
  }
  .md-jobs_boxTtl::before {
    bottom: -30px;
  }
  .md-jobs_box + .md-jobs_box {
    padding-top: 30px;
  }
  .md-jobs_boxTtl ._en {
    font-size: var(--fontSize_sp12);
  }
  .md-jobs_boxTtl ._jp {
    font-size: var(--fontSize_sp28);
  }
  .md-jobs_lTxt {
    font-size: var(--fontSize_sp20);
  }
  .md-jobs_sTxt {
    font-size: var(--fontSize_sp15);
  }
  .md-jobs_required ._barTxt {
    font-size: var(--fontSize_sp18);
  }
  .md-jobs_required ._barTxt::after {
    width: 55%;
  }
  .md-jobs_requiredTxt {
    padding: 18px 10px 18px 14px;
    line-height: 1.5;
  }
  .md-jobs_requiredTxt ._check img {
    width: 16px;
    margin-right: 12px;
    margin-top: 0.25em;
  }
  .md-jobs_txtWrap + .md-jobs_txtWrap {
    margin-top: 50px;
  }
  .md-jobs_hideWrap {
    padding-bottom: 50px;
  }
}
/*===============================
         md-welfare
===============================*/
.md-welfare_topPic {
  padding-top: 32px;
}

/*===============================
          md-welTr
===============================*/
.md-welTr_boxWrap {
  margin-top: 50px;
}

.md-welTr_box {
  position: relative;
  padding: 45px 0 50px 5.2vw;
}
.md-welTr_box._1 {
  background-color: rgba(174, 237, 86, 0.75);
}
.md-welTr_box._2 {
  background-color: rgba(123, 207, 37, 0.75);
}
.md-welTr_box._3 {
  background-color: rgba(40, 170, 66, 0.75);
}
.md-welTr_box._3::before {
  display: none;
}
.md-welTr_box + .md-welTr_box {
  margin-top: 82px;
}
.md-welTr_box::before {
  position: absolute;
  content: "";
  display: block;
  width: 15.1vw;
  height: 2.3vw;
  background: rgba(255, 255, 255, 0.3);
  -webkit-clip-path: polygon(0 0, 100% 0%, 50% 100%);
          clip-path: polygon(0 0, 100% 0%, 50% 100%);
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 100%);
}

.md-welTr_lTxt {
  font-size: var(--fontSize_pc55);
  letter-spacing: 0.05em;
}
.md-welTr_lTxt span {
  font-size: var(--fontSize_pc20);
  font-weight: 500;
  padding-left: 12px;
}

.md-welTr_mTxt {
  font-size: var(--fontSize_pc30);
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.67;
  margin-top: 16px;
  display: flex;
}
.md-welTr_mTxt span {
  width: 1.5em;
}

.md-welTr_sTxt {
  font-size: var(--fontSize_pc20);
  font-weight: 400;
  margin-top: 10px;
  padding-left: calc(var(--fontSize_pc30) * 1.5);
}

.md-welTr_leftTxt {
  position: absolute;
  left: -0.3%;
  top: 0;
  height: 100%;
}
.md-welTr_leftTxt img {
  height: 100%;
  width: auto;
}

@media only screen and (max-width: 1024px) {
  .md-welTr_boxWrap{
    margin-top: 30px;
  }
  .md-welTr_box::before {
    width: 30vw;
    height: 5vw;
  }
  .md-welTr_box {
    padding: 30px 0 30px 20px;
  }
  .md-welTr_lTxt {
    font-size: var(--fontSize_sp30);
  }
  .md-welTr_lTxt span {
    font-size: var(--fontSize_sp16);
    padding-left: 0;
  }
  .md-welTr_mTxt {
    margin-top: 12px;
    font-size: var(--fontSize_sp17);
  }
  .md-welTr_sTxt {
    font-size: var(--fontSize_sp15);
    padding-left: calc(var(--fontSize_sp17) * 1.5);
    margin-top: 6px;
  }
}
@media only screen and (max-width: 768px) {
  .md-welTr_box + .md-welTr_box {
    margin-top: 50px;
  }
}
/*===============================
         md-welBen
===============================*/
.md-welBen_ttlWrap {
  text-align: center;
  margin-bottom: 50px;
}
.md-welBen_ttlWrap .bl-lowerSecTtl_jp {
  color: #171717;
}

.md-welBen_boxWrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.md-welBen_box {
  width: calc((100% - 40px) / 3);
  background-color: rgba(255, 255, 255, 0.75);
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  height: 11.8vw;
  box-shadow: 0px 3px 6px -1px rgba(0, 0, 0, 0.16);
}
.md-welBen_box:nth-child(n+4) {
  margin-top: 20px;
}

.md-welBen_img {
  width: 5vw;
  display: flex;
  align-items: end;
}
.md-welBen_img._transportation {
  transform: translateX(12.5%);
}
.md-welBen_img._qualification {
  transform: translate(8.3%, 10px);
}

.md-welBen_txtWrap {
  margin-top: 15px;
  font-size: var(--fontSize_pc21);
  letter-spacing: 0;
  line-height: 1.4;
  min-height: 2.8em;
  display: flex;
  align-items: center;
  text-align: center;
}

@media only screen and (max-width: 1024px) {
  .md-welBen_img {
    width: 14vw;
  }
  .md-welBen_box {
    height: 28vw;
  }
  .md-welBen_txtWrap {
    font-size: var(--fontSize_sp16);
  }
}
@media only screen and (max-width: 768px) {
  .md-welBen_img {
    width: 20vw;
  }
  .md-welBen_box {
    width: calc((100% - 10px) / 2);
    height: 46.2vw;
  }
  .md-welBen_box:nth-child(n+3) {
    margin-top: 10px;
  }
}
/*===============================
         md-welNum
===============================*/
.md-welNum_ttlWrap {
  text-align: center;
  margin-bottom: 52px;
}
.md-welNum_ttlWrap .bl-lowerSecTtl_jp {
  color: #171717;
}

.md-welNum_rightTxt {
  text-align: right;
  font-size: var(--fontSize_pc18);
  font-weight: 500;
  letter-spacing: 0.03em;
  line-height: 1;
  margin-bottom: 22px;
}

.md-welNum_boxWrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.md-welNum_box {
  width: calc((100% - 30px) / 2);
  padding-bottom: 34px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #FFFFFF;
  box-shadow: 0px 3px 6px -1px rgba(0, 0, 0, 0.16);
}
.md-welNum_box._sPadding{
  padding-bottom: 20px;
}
.md-welNum_box._wide {
  width: 100%;
}
.md-welNum_box:nth-child(n+3) {
  margin-top: 30px;
}

.md-welNum_imgWrap {
  min-height: 10.9375vw;
  display: flex;
  align-items: center;
}
.md-welNum_imgWrap._1 {
  width: 5.73vw;
}
.md-welNum_imgWrap._2 {
  width: 9.6875vw;
}
.md-welNum_imgWrap._3 {
  width: 15.1vw;
  min-height: 16.4vw;
}
.md-welNum_imgWrap._4 {
  width: 8.75vw;
}
.md-welNum_imgWrap._5 {
  width: 7.1875vw;
}
.md-welNum_imgWrap._6 {
  width: 7.1875vw;
}
.md-welNum_imgWrap._7 {
  width: 33vw;
  min-height: 16.4vw;
}
.md-welNum_imgWrap._8 {
  width: 15.1vw;
  min-height: 16.4vw;
}
.md-welNum_imgWrap._9 {
  width: 6.875vw;
}

.md-welNum_sTxt {
  font-size: var(--fontSize_pc22);
  letter-spacing: 0.05em;
  font-weight: 500;
  text-align: center;
  margin-bottom: 10px;
}
.md-welNum_ssTxt{
  font-size: var(--fontSize_pc18);
  letter-spacing: 0.05em;
  font-weight: 500;
  text-align: center;
}

.md-welNum_lTxt {
  position: relative;
  font-size: var(--fontSize_pc70);
  font-family: "lato", sans-serif;
  letter-spacing: 0;
  color: #119D3B;
  font-weight: 700;
  padding-right: 6px;
  line-height: 1.0;
  width: fit-content;
  margin: 0 auto;
}
.md-welNum_lTxt span {
  font-size: var(--fontSize_pc25);
  letter-spacing: 0.05em;
  text-align: center;
  font-weight: 500;
  line-height: 1.24;
  color: #3B3B3B;
}
.md-welNum_lTxt span._m {
  font-size: var(--fontSize_pc40);
  font-weight: 500;
  color: #3B3B3B;
}
.md-welNum_lTxt ._absolute{
  position: absolute;
  right: 0;
  bottom: 0.2em;
  transform: translateX(100%);
}
.md-welNum_lTxt._flex {
  display: flex;
  align-items: center;
}
.md-welNum_lTxt._flex span {
  margin: 0 6px;
}

@media only screen and (max-width: 1024px) {
  .md-welNum_rightTxt {
    font-size: var(--fontSize_sp12);
    margin-bottom: 6px;
  }
  .md-welNum_sTxt {
    font-size: var(--fontSize_sp15);
  }
  .md-welNum_lTxt {
    font-size: var(--fontSize_sp35);
  }
  .md-welNum_lTxt span {
    font-size: var(--fontSize_sp18);
  }
  .md-welNum_lTxt ._absolute{
    bottom: 0;
  }
  .md-welNum_imgWrap {
    min-height: 25vw;
  }
  .md-welNum_imgWrap._1 {
    width: 14vw;
  }
  .md-welNum_imgWrap._2 {
    width: 19vw;
  }
  .md-welNum_imgWrap._3 {
    width: 35vw;
    min-height: 42vw;
  }
  .md-welNum_imgWrap._4 {
    width: 19vw;
  }
  .md-welNum_imgWrap._5 {
    width: 17vw;
  }
  .md-welNum_imgWrap._6 {
    width: 14vw;
  }
  .md-welNum_imgWrap._7 {
    width: 70vw;
    min-height: 42vw;
  }
  .md-welNum_imgWrap._8 {
    width: 35vw;
    min-height: 42vw;
  }
  .md-welNum_imgWrap._9 {
    width: 18vw;
  }
}
@media only screen and (max-width: 768px) {
  .md-welNum_box {
    width: calc((100% - 10px) / 2);
    padding-bottom: 20px;
  }
  .md-welNum_box:nth-child(n+3) {
    margin-top: 10px;
  }
  .md-welNum_imgWrap {
    min-height: 27vw;
  }
  .md-welNum_imgWrap._1 {
    width: 15vw;
  }
  .md-welNum_imgWrap._2 {
    width: 20vw;
  }
  .md-welNum_imgWrap._3 {
    width: 38vw;
    min-height: 45vw;
  }
  .md-welNum_imgWrap._4 {
    width: 20vw;
  }
  .md-welNum_imgWrap._5 {
    width: 18vw;
  }
  .md-welNum_imgWrap._6 {
    width: 15vw;
  }
  .md-welNum_imgWrap._7 {
    width: 80vw;
    min-height: 45vw;
  }
  .md-welNum_imgWrap._8 {
    width: 38vw;
    min-height: 45vw;
  }
  .md-welNum_imgWrap._9 {
    width: 20vw;
  }
  .md-welNum_ssTxt{
    font-size: var(--fontSize_sp10);
  }
}
/*===============================
         md-voice
===============================*/
.md-voice_contWrap + .md-voice_contWrap {
  margin-top: 136px;
}

.md-voice_ttlWrap {
  position: relative;
  line-height: 1.29;
  padding: 40px 30px 52px 30px;
  cursor: pointer;
}

.md-voice_picWrap {
  height: 20vw;
  min-height: 192px;
}

.md-voice_box ._gradWrap {
  background-image: linear-gradient(#84B147, #3D884C);
}

.md-voice_num {
  font-size: var(--fontSize_pc142);
  font-weight: 900;
  color: #119D3B;
  letter-spacing: 0.03em;
  line-height: 0.9;
}

.md-voice_ttl {
  font-size:  clamp(18px, 1.75vw, 38px);
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-bottom: 26px;
}

.md-voice_name {
  font-size: var(--fontSize_pc27);
  font-weight: 500;
  letter-spacing: 0.025em;
}

.md-voice_post {
  font-size: var(--fontSize_pc20);
  font-weight: 500;
  letter-spacing: 0.025em;
  line-height: 1.7;
}

.md-voice_open {
  position: absolute;
  bottom: 52px;
  right: 30px;
  width: 50px;
  height: 50px;
  border: 1px solid #fff;
}
.md-voice_open span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 50%;
  height: 1px;
  background-color: #fff;
  transform: translateX(-50%);
}
.md-voice_open span:last-child {
  transform: translateX(-50%) rotate(90deg);
  transition: 0.3s;
}
.md-voice_open.active span:last-child {
  transform: translateX(-50%);
}

.md-voice_hideWrap {
  display: none;
  padding: 48px 30px 140px 30px;
}

.md-voice_qa + .md-voice_qa {
  margin-top: 86px;
}

.md-voice_qTxt {
  display: flex;
  font-size: var(--fontSize_pc35);
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.63;
}
.md-voice_qTxt ._q {
  font-size: var(--fontSize_pc93);
  font-weight: 900;
  margin-right: 20px;
  line-height: 1;
  opacity: 0.45;
}
.md-voice_qTxt ._bar {
  border-bottom: 1px solid #fff;
}
.md-voice_qTxt > div {
  flex: 1;
}

.md-voice_aTxt {
  margin-top: 22px;
  font-size: var(--fontSize_pc22);
  font-weight: 400;
  letter-spacing: 0;
}

@media only screen and (max-width: 1280px) {
  .md-voice_open {
    width: 40px;
    height: 40px;
  }
  .md-voice_ttlWrap{
    padding: 40px 20px 52px 20px;
  }
  .md-voice_hideWrap{
    padding: 48px 20px 140px 20px;
  }
}
@media only screen and (max-width: 1024px) {
  .md-voice_num {
    font-size: var(--fontSize_sp80);
  }
  .md-voice_picWrap {
    height: 48.24vw;
  }
  .md-voice_ttlWrap {
    padding: 30px 20px 40px 20px;
  }
  .md-voice_ttl {
    font-size: var(--fontSize_sp22);
  }
  .md-voice_name {
    font-size: var(--fontSize_sp16);
  }
  .md-voice_post {
    font-size: var(--fontSize_sp14);
  }
  .md-voice_open {
    width: 30px;
    height: 30px;
    bottom: 40px;
  }
  .md-voice_hideWrap {
    padding: 10px 20px 80px 20px;
  }
  .md-voice_qTxt {
    font-size: var(--fontSize_sp20);
  }
  .md-voice_qTxt ._q {
    font-size: var(--fontSize_sp40);
    margin-right: 10px;
  }
  .md-voice_aTxt {
    margin-top: 16px;
    font-size: var(--fontSize_sp15);
    line-height: 1.3;
  }
  .md-voice_qa + .md-voice_qa {
    margin-top: 40px;
  }
  .md-voice_contWrap + .md-voice_contWrap {
    margin-top: 60px;
  }
}
/*===============================
         md-enGuide
===============================*/
.md-enGuide_ttlWrap {
  margin-bottom: 26px;
}

.md-enGuide_catWrap {
  width: 13em;
  font-size: var(--fontSize_pc20);
  height: 2.1em;
}

.md-enGuide_dlWrap {
  margin-top: 24px;
}

.md-enGuide_nonTxt {
  padding-top: 26px;
  font-size: var(--fontSize_pc20);
}

@media only screen and (max-width: 1024px) {
  .md-enGuide_catWrap {
    font-size: var(--fontSize_sp16);
  }
}
/*===============================
         md-enFaq
===============================*/
.md-enFaq_ttlWrap {
  text-align: center;
}

.md-enFaq_contWrap {
  margin-top: 28px;
}

.md-enFaq_box {
  padding: 32px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.75);
}

.md-enFaq_open {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  width: 50px;
  height: 50px;
  border: 1px solid #fff;
}
.md-enFaq_open span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 50%;
  height: 1px;
  background-color: #fff;
  transform: translateX(-50%);
}
.md-enFaq_open span:last-child {
  transform: translateX(-50%) rotate(90deg);
  transition: 0.3s;
}
.md-enFaq_open.active span:last-child {
  transform: translateX(-50%);
}

.md-enFaq_qWrap, .md-enFaq_aWrap {
  display: flex;
  padding-right: 94px;
}
.md-enFaq_qWrap span, .md-enFaq_aWrap span {
  font-size: var(--fontSize_pc60);
  line-height: 1;
  opacity: 0.45;
}
.md-enFaq_qWrap p, .md-enFaq_aWrap p {
  margin-left: 28px;
}
.md-enFaq_qWrap .md-enFaq_open span, .md-enFaq_aWrap .md-enFaq_open span {
  opacity: 1;
}

.md-enFaq_qWrap {
  position: relative;
  align-items: center;
  cursor: pointer;
}

.md-enFaq_qWrap p {
  font-size: var(--fontSize_pc30);
  font-weight: 500;
  letter-spacing: 0.05em;
}

.md-enFaq_aWrap {
  margin-top: 24px;
}

.md-enFaq_aWrap p {
  font-size: var(--fontSize_pc20);
  font-weight: 400;
  line-height: 1.5;
  padding-top: 10px;
}

.md-enFaq_hideWrap {
  display: none;
}

@media only screen and (max-width: 1280px) {
  .md-enFaq_open {
    width: 30px;
    height: 30px;
  }
  .md-enFaq_qWrap, .md-enFaq_aWrap {
    padding-right: 50px;
  }
}
@media only screen and (max-width: 1024px) {
  .md-enFaq_qWrap p, .md-enFaq_aWrap p {
    margin-left: 16px;
  }
  .md-enFaq_qWrap p {
    font-size: var(--fontSize_sp18);
    line-height: 1.5;
  }
  .md-enFaq_aWrap p {
    font-size: var(--fontSize_sp15);
  }
  .md-enFaq_qWrap, .md-enFaq_aWrap {
    padding-right: 40px;
  }
  .md-enFaq_qWrap span, .md-enFaq_aWrap span {
    font-size: var(--fontSize_sp38);
  }
  .md-enFaq_open {
    width: 26px;
    height: 26px;
  }
}
/*===============================
    md-contactForm,md-enForm
===============================*/
.md-enForm_ttlWrap {
  text-align: center;
}

.md-enForm_contWrap {
  margin-top: 64px;
}

.md-contactForm {
  font-size: var(--fontSize_pc22);
}
.md-contactForm dl + dl {
  margin-top: 36px;
}
.md-contactForm dl dt {
  letter-spacing: 0;
  margin-bottom: 12px;
  font-weight: 500;
}
.md-contactForm dl dd {
  flex: 1;
  letter-spacing: 0.05em;
  font-weight: 500;
}
.md-contactForm .radio {
  margin-top: 20px;
  display: flex;
}
.md-contactForm .radio._type{
  flex-wrap: wrap;
}
.md-contactForm .radio._type label span{
  flex: 1;
}
.md-contactForm .radio._type span{
  width: 33.333%;
}
.md-contactForm .radio._type span:nth-child(n+4){
  margin-top: 26px;
}
.md-contactForm .radio._type span + span{
  margin-left: 0;
}
.md-contactForm .radio span + span {
  margin-left: 2.6vw;
}
.md-contactForm .radio._contact {
  display: block;
}
.md-contactForm .radio._contact span {
  display: block;
}
.md-contactForm .radio._contact span + span {
  margin-top: 26px;
  margin-left: 0;
}
.md-contactForm ._birth {
  display: flex;
  align-items: center;
}
.md-contactForm ._birth span._year {
  width: 7em;
}
.md-contactForm ._birth span._month, .md-contactForm ._birth span._date {
  width: 5em;
}
.md-contactForm ._birth span:nth-child(2n) {
  margin: 0 1.67vw 0 7px;
}
.md-contactForm ._adress {
  display: flex;
  flex-wrap: wrap;
}
.md-contactForm ._adress span:first-child, .md-contactForm ._adress span:nth-child(2) {
  width: 10em;
  margin-right: 24px;
}
.md-contactForm ._adress span:last-child {
  width: 100%;
  margin-top: 14px;
}

.required span {
  font-size: var(--fontSize_pc30);
  padding-left: 2px;
  color: #119D3B;
}

.md-contact_policyWrap {
  margin-top: 84px;
  font-weight: 500;
}
.md-contact_policyWrap a {
  color: #119D3B;
  border-bottom: 1px solid #119D3B;
}

.md-contact_sendBtn {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 96px auto 0 auto;
  width: 14.07em;
  height: 2.73em;
  font-size: var(--fontSize_pc30);
  font-weight: 500;
  font-family: inherit;
  color: #fff;
  background-color: #119D3B;
  transition: 0.2s;
}
.md-contact_sendBtn._wide {
  letter-spacing: 0.3em;
}
.md-contact_sendBtn::before {
  position: absolute;
  content: "";
  display: block;
  width: calc(100% - 12px);
  height: calc(100% - 12px);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid #fff;
  transition: 0.2s;
}
.md-contact_sendBtn span {
  position: relative;
  z-index: 2;
}
@media only screen and (min-width: 1025px) {
  .md-contact_sendBtn:hover {
    color: #119D3B;
  }
  .md-contact_sendBtn:hover::before {
    background-color: #fff;
  }
}

.md-enForm_thanksWrap {
  margin-top: 40px;
  text-align: center;
  font-size: var(--fontSize_pc22);
  font-weight: 400;
}

.md-polictTxt {
  font-size: var(--fontSize_pc20);
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.3;
}

.md-enForm_confirm {
  padding-top: 62px;
  line-height: 1.2;
}
.md-enForm_confirm tr {
  display: flex;
  flex-direction: column;
}
.md-enForm_confirm tr + tr {
  margin-top: 52px;
}
.md-enForm_confirm th {
  text-align: left;
  font-size: var(--fontSize_pc25);
  font-weight: 500;
  letter-spacing: 0;
}
.md-enForm_confirm td {
  font-size: var(--fontSize_pc25);
  letter-spacing: 0.05em;
  font-weight: 400;
  margin-top: 10px;
  word-break: break-all;
}
@media only screen and (max-width: 1280px){
  .md-contactForm .radio._type span{
    width: 50%;
  }
  .md-contactForm .radio._type span:nth-child(n+3){
    margin-top: 26px;
  }
}
@media only screen and (max-width: 1024px) {
  .md-enForm_contWrap {
    margin-top: 50px;
  }
  .md-contactForm {
    font-size: var(--fontSize_sp15);
  }
  .md-contactForm dl dt {
    margin-bottom: 6px;
  }
  .md-contactForm .radio {
    margin-top: 16px;
  }
  .md-contactForm .radio span + span {
    margin-left: 20px;
  }
  .md-contactForm .radio._type span:nth-child(n+3){
    margin-top: 16px;
  }
  .md-contactForm .radio._contact {
    display: block;
  }
  .md-contactForm .radio._contact span {
    display: block;
  }
  .md-contactForm .radio._contact span + span {
    margin-top: 10px;
  }
  .md-contactForm ._adress span:first-child, .md-contactForm ._adress span:nth-child(2) {
    width: 9em;
    margin-right: 14px;
  }
  .md-contact_policyWrap {
    margin-top: 50px;
  }
  .md-contact_sendBtn {
    margin-top: 50px;
  }
  .md-polictTxt {
    font-size: var(--fontSize_sp14);
  }
  .md-enForm_confirm {
    padding-top: 50px;
  }
  .md-enForm_confirm th {
    font-size: var(--fontSize_sp15);
  }
  .md-enForm_confirm td {
    font-size: var(--fontSize_sp15);
  }
}
/*===============================
        共通設定
===============================*/
.l-contWrap {
  margin: 0 auto;
  width: 41.875%;
  overflow: hidden;
}

.l-inner {
  padding: 0 6.2%;
}

.bg_gray {
  background-color: rgba(25, 25, 25, 0.75);
}
.bg_gray._grad {
  background-color: transparent;
  background-image: linear-gradient(rgba(25, 25, 25, 0.75) 95%, transparent);
}

.bg_white {
  background-color: rgba(255, 255, 255, 0.75);
}

.bg_black {
  background-color: #000000;
}

.l-side {
  position: fixed;
  left: 5.2vw;
  bottom: 20.9%;
  z-index: 5;
}
.l-side._l {
  bottom: 3.4375%;
}

@media only screen and (max-width: 1400px) {
  .l-side {
    left: 2.857%;
    bottom: 100px;
    z-index: 5;
  }
}
@media only screen and (max-width: 1280px) {
  .l-side {
    left: 1.953125%;
  }
}
@media only screen and (max-width: 1024px) {
  .l-contWrap {
    width: 100%;
  }
  .l-side {
    display: none;
  }
}
@media only screen and (max-width: 768px) {
  .l-inner {
    padding: 0 20px;
  }
}
/*===============================
        		l-head
===============================*/
.l-head {
  position: fixed;
  z-index: 98;
  top: 0;
  width: 41.875%;
  height: 8.542vw;
  min-height: 80px;
  max-height: 164px;
  left: 50%;
  transform: translateX(-50%);
  backdrop-filter: blur(10px);
  background-color: rgba(0, 0, 0, 0.4);
}
.l-head._white{
  background-color: rgba(255, 255, 255, 0.4);
}
.l-head._white.js-menu_open,
.l-head.js-menu_open{
  background-color: transparent;
  backdrop-filter: none;
}
.l-head._top {
  display: none;
}

@media only screen and (max-width: 1024px) {
  .l-head {
    height: 14vw;
    width: 100%;
    z-index: 100;
    min-height: unset;
    max-height: unset;
  }
  .l-head._top {
    display: block;
  }
}
@media only screen and (max-width: 768px) {
  .l-head {
    height: 60px;
  }
}
/*===============================
        		l-top
===============================*/
.l-topFv {
  position: relative;
  padding-top: 6.666vh;
  min-height: 100vh;
}

.l-topAbt {
  position: relative;
  padding-top: 80px;
  padding-bottom: 80px;
  min-height: 100vh;
}

.l-topJobs {
  position: relative;
  min-height: 100vh;
  background-color: rgba(110, 177, 38, 0.75);
}

.l-topWf {
  padding-top: 80px;
  padding-bottom: 80px;
  min-height: 100vh;
  background-color: rgba(46, 166, 82, 0.75);
}

.l-topVoice {
  padding-top: 80px;
  padding-bottom: 80px;
  min-height: 100vh;
  background-color: rgba(255, 255, 255, 0.85);
}

@media only screen and (max-width: 1024px) {
  .l-topFv {
    padding-top: 4.5vh;
    min-height: 100svh;
  }
}
/*===============================
        		l-footEntry
===============================*/
.l-footEntry {
  background-image: linear-gradient(120deg, #9FC11D, #008428);
  padding: 16px;
}

/*===============================
        		l-foot
===============================*/
.l-foot {
  padding-top: 94px;
  padding-bottom: 18px;
  background-color: rgba(25, 25, 25, 0.75);
}


@media only screen and (max-width: 1024px) {
  .l-foot{
    padding-top: 72px;
  }
}

/*===============================
						l-abt
===============================*/
.l-abtRsn{
  padding-top: 100px;
  padding-bottom: 98px;
}
.l-abtBrd{
  position: relative;
  padding-bottom: 70px;
}
.l-abtBrd::before{
  position: absolute;
  display: block;
  content: "";
  background-color: rgba(159, 239, 49, 0.75);
  width: 100%;
  height: calc(100% - 3.125vw);
  bottom: 0;
  left: 0;
}
.l-abtRlt{
  position: relative;
  padding-top: 104px;
  padding-bottom: 74px;
}
.l-abtRlt::before{
  position: absolute;
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #28AA42;
  opacity: 0.75;
}
.l-abtData{
  padding-top: 116px;
  padding-bottom: 162px;
}
.l-abtRlt .l-inner{
  position: relative;
  z-index: 2;
}
.l-abtMsg {
  padding-top: 108px;
}

.l-abtPolicy {
  padding-top: 170px;
}

.l-abtSrv {
  position: relative;
  padding-top: 170px;
  padding-bottom: 140px;
}
.l-abtSrv::before {
  position: absolute;
  content: "";
  display: block;
  height: calc(100% + 220px);
  width: 100%;
  bottom: 0;
  background-image: linear-gradient(transparent, #84b147 11%, #3d884c);
  opacity: 0.85;
}

.l-abtOl {
  padding-top: 140px;
  padding-bottom: 110px;
  background-color: rgba(255, 255, 255, 0.85);
  color: #171717;
}

.l-abtAcc {
  padding-top: 110px;
  padding-bottom: 78px;
  background-color: rgba(255, 255, 255, 0.65);
  color: #171717;
}

@media only screen and (max-width: 1024px) {
  .l-abtMsg {
    padding-top: 80px;
  }
  .l-abtPolicy {
    padding-top: 80px;
  }
  .l-abtSrv,
  .l-abtOl,
  .l-abtAcc {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .l-abtRsn{
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .l-abtBrd{
    padding-bottom: 60px;
  }
  .l-abtBrd::before{
    height: calc(100% - 70px);
  }
  .l-abtRlt{
    padding-top: 80px;
  }
  .l-abtData{
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
/*===============================
						l-wel
===============================*/
.l-welTr {
  padding-top: 104px;
}

.l-welBen {
  padding-top: 164px;
  padding-bottom: 85px;
  background-color: rgba(255, 255, 255, 0.85);
  color: #434343;
}

.l-welNum {
  padding-top: 85px;
  padding-bottom: 170px;
  background-color: rgba(255, 255, 255, 0.85);
  color: #3B3B3B;
}

@media only screen and (max-width: 1024px) {
  .l-welBen {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .l-welNum {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
/*===============================
						l-voice
===============================*/
.l-voice {
  padding-top: 80px;
  padding-bottom: 170px;
}

@media only screen and (max-width: 1024px) {
  .l-voice {
    padding-top: 60px;
    padding-bottom: 80px;
  }
}
/*===============================
							l-en
===============================*/
.l-enGuide {
  padding-top: 108px;
  padding-bottom: 140px;
  color: #171717;
}

.l-enFaq {
  padding-top: 148px;
  padding-bottom: 140px;
  background-image: linear-gradient(rgba(132, 177, 71, 0.85), rgba(61, 136, 76, 0.85));
}

.l-enForm {
  padding-top: 140px;
  padding-bottom: 140px;
}

.l-policy {
  padding-top: 104px;
  padding-bottom: 194px;
}

@media only screen and (max-width: 1024px) {
  .l-enGuide {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .l-enFaq {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .l-enForm {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .l-policy {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
/*===============================
         js-nav
===============================*/
.js-nav {
  opacity: 0;
  pointer-events: none;
  transition: 0.5s;
}
.js-nav.js-menu_open {
  opacity: 1;
  pointer-events: visible;
}

.js-menu_icon span {
  transition: 0.5s;
  transform-origin: left;
}
@media only screen and (max-width: 1024px) {
  .js-menu_icon.js-menu_open span:first-child {
    transform: rotate(25deg);
  }
  .js-menu_icon.js-menu_open span:nth-child(2) {
    transform: scalex(0);
  }
  .js-menu_icon.js-menu_open span:last-child {
    transform: rotate(-25deg);
  }
}

.js-bgOpacity {
  transition: 1.5s ease-out;
}
.js-bgOpacity.active {
  background-color: rgba(25, 25, 25, 0.75);
}/*# sourceMappingURL=style.css.map */