@charset "UTF-8";
@font-face {
  font-family: "noto";
  font-weight: 900;
  src: url(../fonts/Noto_Sans_JP/static/NotoSansJP-Black.ttf) format("truetype");
}
@font-face {
  font-family: "noto";
  font-weight: 700;
  src: url(../fonts/Noto_Sans_JP/static/NotoSansJP-Bold.ttf) format("truetype");
}
@font-face {
  font-family: "noto";
  font-weight: 500;
  src: url(../fonts/Noto_Sans_JP/static/NotoSansJP-Medium.ttf) format("truetype");
}
@font-face {
  font-family: "noto";
  font-weight: 400;
  src: url(../fonts/Noto_Sans_JP/static/NotoSansJP-Regular.ttf) format("truetype");
}
@font-face {
  font-family: "hind";
  font-weight: 700;
  src: url(../fonts/Hind_Vadodara/HindVadodara-Bold.ttf) format("truetype");
}
@font-face {
  font-family: "hind";
  font-weight: 500;
  src: url(../fonts/Hind_Vadodara/HindVadodara-Medium.ttf) format("truetype");
}
/*------------------
　　共通設定
------------------*/
body {
  font-size: var(--fontSize_pc18);
  font-family: "noto", sans-serif;
  font-weight: 700;
  color: #4D4D4D;
  line-height: 1.67;
  font-feature-settings: "palt";
  letter-spacing: 0;
  background-color: #fff;
  -moz-text-size-adjust: 100%;
       text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%; /* Safari */
}

@media only screen and (max-width: 1024px) {
  body {
    font-size: var(--fontSize_sp13);
  }
}
.t-center {
  text-align: center;
}

@media only screen and (min-width: 1025px) {
  .t-centerPc {
    text-align: center;
  }
}
@media only screen and (max-width: 1024px) {
  .t-centerSp {
    text-align: center;
  }
}
.t-right {
  text-align: right;
}

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

.t_en {
  font-family: futura, "hind", sans-serif;
}

.cl-orange {
  color: #F18D00;
}

.cl-black {
  color: #000;
}

input[type=text], input[type=email], input[type=tel], textarea {
  width: 100%;
  font-size: inherit;
  font-weight: inherit;
  font-family: inherit;
  padding: 0.7em 1.6em;
  letter-spacing: 0.03em;
  border-radius: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 1px solid #F18D00;
  background-color: #fff;
}

input::-moz-placeholder, textarea::-moz-placeholder {
  color: #A3AFAC;
}

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

input[type=radio] {
  position: relative;
  background-color: #fff;
  border: 1px solid #707070;
  font-size: inherit;
  font-weight: inherit;
  font-family: inherit;
  width: 1em;
  height: 1em;
  border-radius: 50%;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin: 0;
  margin-right: 0.8em;
}
input[type=radio]::before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 54%;
  height: 54%;
  border-radius: 50%;
  background: transparent;
  content: "";
}

select {
  width: 16em;
  padding: 0 1.7em;
  border: 1px solid #000000;
  font-size: inherit;
  font-weight: inherit;
  font-family: inherit;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  border-radius: 0;
  font-size: var(--fontSize_pc22);
  line-height: 2.5;
  background-color: #fff;
  color: inherit;
}

.selectWrap {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
}
.selectWrap::before {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 2;
  width: 1.5em;
  height: 1.4em;
  background-color: #F18D00;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  right: 0.7em;
  top: 50%;
  transform: translateY(-50%);
}

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

input[type=checkbox] {
  position: relative;
  width: 1.5em;
  height: 1.5em;
  border: 2px solid #F18D00;
  border-radius: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin: 0;
  margin-right: 0.8em;
}

input[type=checkbox]:checked::before {
  position: absolute;
  top: 10%;
  left: 25%;
  transform: rotate(50deg);
  width: 40%;
  height: 55%;
  border-right: 2px solid #F18D00;
  border-bottom: 2px solid #F18D00;
  content: "";
}

textarea {
  min-height: 16em;
  border-radius: 0;
}

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

picture {
  display: block;
}
picture img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media only screen and (min-width: 1025px) {
  .tb {
    display: none;
  }
}
@media only screen and (max-width: 1024px) {
  .n_tb {
    display: none;
  }
}
@media only screen and (min-width: 769px) {
  .sp {
    display: none;
  }
}
@media only screen and (max-width: 768px) {
  .pc {
    display: none;
  }
}
@media only screen and (max-width: 1024px) {
  select {
    font-size: var(--fontSize_sp13);
    padding: 0 1em;
  }
  input[type=radio] {
    margin-left: 0;
  }
  input[type=text], input[type=email], input[type=tel], textarea {
    padding: 0.7em 1.4em;
  }
}
/*------------------
  フォントサイズ管理
------------------*/
:root {
  --fontSize_pc13: clamp(11px, 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(13px, 0.88541666vw, 19px);
  --fontSize_pc18: clamp(13px, 0.9375vw, 26px);
  --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(16px, 1.30208333vw, 31px);
  --fontSize_pc26: clamp(18px, 1.35416666vw, 32px);
  --fontSize_pc27: clamp(18px, 1.40625vw, 32px);
  --fontSize_pc28: clamp(20px, 1.458333vw, 34px);
  --fontSize_pc29: clamp(20px, 1.51041666vw, 34px);
  --fontSize_pc30: clamp(16px, 1.5625vw, 40px);
  --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(22px, 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(28px, 2.03125vw, 42px);
  --fontSize_pc40: clamp(26px, 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(30px, 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(30px, 2.60416666vw, 60px);
  --fontSize_pc53: clamp(32px, 2.76041666vw, 63px);
  --fontSize_pc55: clamp(32px, 2.8645vw, 65px);
  --fontSize_pc58: clamp(32px, 3.02vw, 80px);
  --fontSize_pc60: clamp(40px, 3.125vw, 72px);
  --fontSize_pc66: clamp(45px, 3.4375vw, 78px);
  --fontSize_pc70: clamp(52px, 3.64583333vw, 82px);
  --fontSize_pc73: clamp(52px, 3.8vw, 85px);
  --fontSize_pc80: clamp(50px, 4.1666vw, 90px);
  --fontSize_pc83: clamp(70px, 4.322196666vw, 90px);
  --fontSize_pc89: clamp(76px, 4.635416666vw, 100px);
  --fontSize_pc90: clamp(50px, 4.6875vw, 100px);
  --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, 18px);
  --fontSize_sp14: clamp(13px, 3.58974vw, 18px);
  --fontSize_sp15: clamp(14px, 3.8461538vw, 18px);
  --fontSize_sp16: clamp(15px, 4.102564102vw, 19px);
  --fontSize_sp17: clamp(15px, 4.3589vw, 20px);
  --fontSize_sp18: clamp(16px, 4.6153846vw, 28px);
  --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, 32px);
  --fontSize_sp23: clamp(21px, 5.897435vw, 28px);
  --fontSize_sp24: clamp(22px, 6.15384615vw, 29px);
  --fontSize_sp25: clamp(23px, 6.41vw, 36px);
  --fontSize_sp26: clamp(24px, 6.66666666vw, 32px);
  --fontSize_sp28: clamp(26px, 7.17948vw, 36px);
  --fontSize_sp30: clamp(28px, 7.6923076vw, 36px);
  --fontSize_sp32: clamp(28px, 8.2051282051vw, 38px);
  --fontSize_sp35: clamp(30px, 8.9743vw, 55px);
  --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, 60px);
  --fontSize_sp58: clamp(56px, 14.87vw, 70px);
  --fontSize_sp60: clamp(58px, 15.38461538vw, 78px);
  --fontSize_sp77: clamp(75px, 19.743589vw, 100px);
}

/*===============================
         bl-linkBtn
===============================*/
.bl-linkBtn {
  font-size: var(--fontSize_pc21);
  display: grid;
  align-items: center;
  grid-template-columns: auto auto;
  gap: 2em;
  line-height: 2.9;
  border-radius: 1lh;
  border: 2px solid #F18D00;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0 0.7em 0 2em;
  background-color: rgba(255, 255, 255, 0.57);
  text-transform: uppercase;
}
.bl-linkBtn:not(._head) {
  margin-top: 3.6vw;
  font-weight: 500;
}
.bl-linkBtn:not(._head)._noMg {
  margin-top: 0;
}
.bl-linkBtn._item {
  margin-top: 0;
  min-width: 16em;
  justify-content: space-between;
}
.bl-linkBtn._item img {
  transform: rotate(90deg);
}
@media only screen and (min-width: 1025px) {
  .bl-linkBtn {
    transition: 0.2s;
  }
}
.bl-linkBtn img {
  grid-column: 2/3;
  grid-row: 1/2;
  width: 2em;
  aspect-ratio: 1/1;
}
@media only screen and (min-width: 1025px) {
  .bl-linkBtn img {
    transition: 0.2s;
  }
}
.bl-linkBtn._head {
  padding: 0 0.7em 0 3em;
  color: #fff;
  text-transform: uppercase;
  font-size: var(--fontSize_pc20);
  background-color: #F18D00;
}
@media only screen and (min-width: 1025px) {
  .bl-linkBtn._head {
    transition: 0.2s;
  }
  .bl-linkBtn._head:hover {
    background-color: #fff;
    color: #F18D00;
  }
}
.bl-linkBtn ._hover {
  opacity: 0;
}
.bl-linkBtn._reverse {
  background-color: #F18D00;
  color: #fff;
}
@media only screen and (min-width: 1025px) {
  .bl-linkBtn._reverse:hover {
    background-color: rgba(255, 255, 255, 0.57);
    color: inherit;
  }
  .bl-linkBtn._reverse:hover ._normal {
    opacity: 0;
  }
  .bl-linkBtn._reverse:hover ._hover {
    opacity: 1;
  }
}
@media only screen and (min-width: 1025px) {
  .bl-linkBtn {
    transition: 0.2s;
  }
  .bl-linkBtn:hover {
    background-color: #F18D00;
    color: #fff;
  }
  .bl-linkBtn:hover ._normal {
    opacity: 0;
  }
  .bl-linkBtn:hover ._hover {
    opacity: 1;
  }
}
.bl-linkBtn._right {
  margin-left: auto;
}
.bl-linkBtn ._sTxt {
  font-size: 0.86em;
}

@media only screen and (max-width: 1024px) {
  .bl-linkBtn {
    font-size: var(--fontSize_sp15);
    line-height: 2.4;
    padding: 0 0.4em 0 2.5em;
  }
  .bl-linkBtn img {
    width: 1.86em;
  }
  .bl-linkBtn:not(._head) {
    margin-top: 6.4vw;
    font-weight: 700;
  }
  .bl-linkBtn._item {
    grid-template-columns: 1fr auto;
    width: 100%;
    padding-left: 1.2em;
    gap: 1em;
  }
  .bl-linkBtn._item span {
    text-align: center;
  }
  .bl-linkBtn._item img {
    transform: none;
  }
}
/*===============================
         bl-secTtl
===============================*/
.bl-secTtl_en {
  position: relative;
  font-family: futura, "hind", sans-serif;
  font-size: var(--fontSize_pc22);
  font-weight: 900;
  text-transform: uppercase;
  padding-bottom: 0.5em;
  line-height: 1;
  letter-spacing: 0.08em;
}
.bl-secTtl_en::before {
  position: absolute;
  content: "";
  display: block;
  height: 0.3em;
  width: 2.7em;
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  background-color: #4D4D4D;
}
.bl-secTtl_en._center {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
.bl-secTtl_en._center::before {
  left: 50%;
  transform: translate(-50%, 100%);
}
@media only screen and (min-width: 1025px) {
  .bl-secTtl_en._pcCenter {
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
  }
  .bl-secTtl_en._pcCenter::before {
    left: 50%;
    transform: translate(-50%, 100%);
  }
}
@media only screen and (max-width: 1024px) {
  .bl-secTtl_en._spCenter {
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
  }
  .bl-secTtl_en._spCenter::before {
    left: 50%;
    transform: translate(-50%, 100%);
  }
}
.bl-secTtl_en._white::before {
  background-color: #fff;
}

.bl-secTtl_jp {
  letter-spacing: 0.1em;
  margin-top: 0.8em;
}

.bl-topSec_subTxt {
  margin-top: 3.2vw;
  font-size: var(--fontSize_pc30);
  letter-spacing: 0.1em;
  line-height: 1.6;
}

.bl-topSec_sTxt {
  font-weight: 400;
  margin-top: 2.4vw;
}

@media only screen and (max-width: 1024px) {
  .bl-secTtl_en {
    font-size: var(--fontSize_sp13);
    letter-spacing: 0.05em;
  }
  .bl-secTtl_en::before {
    height: 0.23em;
  }
  .bl-topSec_subTxt {
    font-size: var(--fontSize_sp25);
    letter-spacing: 0.05em;
    line-height: 1.5;
    margin-top: 0.6em;
  }
  .bl-topSec_sTxt {
    letter-spacing: 0.05em;
    margin-top: 1.15em;
  }
}
/*===============================
         bl-slideTxt
===============================*/
.bl-slideTxt {
  width: 100%;
  overflow: hidden;
}
.bl-slideTxt ._wrap {
  display: flex;
  width: -moz-max-content;
  width: max-content;
}
.bl-slideTxt picture {
  width: 184vw;
  padding-right: 4vw;
  animation: scroll-left 20s infinite linear 0.5s both;
}
.bl-slideTxt ._txt {
  font-size: var(--fontSize_pc60);
  font-family: futura, "hind", sans-serif;
  line-height: 1.34;
  background-color: #FFBF65;
  color: #fff;
  animation: scroll-left 20s infinite linear 0.5s both;
  padding-right: 2em;
}

@keyframes scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
@media only screen and (max-width: 1024px) {
  .bl-slideTxt picture {
    width: 361vw;
    padding-right: 10vw;
  }
  .bl-slideTxt ._txt {
    font-size: var(--fontSize_sp32);
  }
}
/*===============================
         bl-picSlide
===============================*/
.bl-picSlide {
  width: 100%;
  overflow: hidden;
  padding-bottom: 1px;
}
.bl-picSlide ._wrap {
  display: flex;
  width: -moz-max-content;
  width: max-content;
}
.bl-picSlide ._slide {
  display: flex;
  animation: scroll-left 40s infinite linear 0.5s both;
}
.bl-picSlide picture {
  width: 28.5vw;
  margin-right: 1.7vw;
}
.bl-picSlide picture img {
  -o-object-fit: contain;
     object-fit: contain;
}
.bl-picSlide picture:nth-child(2n+1) {
  padding-top: 2.1vw;
}

@media only screen and (max-width: 1024px) {
  .bl-picSlide picture {
    width: 77.7vw;
    margin-right: clamp(24px, 6.2vw, 40px);
    max-width: 400px;
  }
  .bl-picSlide picture:nth-child(2n+1) {
    padding-top: 6.2vw;
  }
}
/*===============================
         bl-bgCircle
===============================*/
.bl-bgCircle {
  position: fixed;
  z-index: -5;
  top: -25.2vw;
  right: -18.5vw;
  width: 56vw;
}

@media only screen and (max-width: 1024px) {
  .bl-bgCircle {
    width: 80vw;
  }
}
/*===============================
         bl-lowerSec
===============================*/
.bl-lowerSec_subTxt {
  font-size: var(--fontSize_pc35);
  line-height: 1.37;
  letter-spacing: 0.1em;
  margin: 1em 0;
}

.bl-lowerSec_sTxt {
  font-size: var(--fontSize_pc22);
  letter-spacing: 0.1em;
  line-height: 1.5;
  text-transform: uppercase;
}
.bl-lowerSec_sTxt ._lTxt {
  font-size: var(--fontSize_pc32);
  font-weight: 700;
}
.bl-lowerSec_sTxt ._link {
  border-bottom: 1px solid #2C2FAE;
  color: #2C2FAE;
}

@media only screen and (max-width: 1024px) {
  .bl-lowerSec_subTxt {
    font-size: var(--fontSize_sp25);
    letter-spacing: 0.05em;
    line-height: 1.48;
    margin: 0.6em 0;
  }
  .bl-lowerSec_subTxt._s {
    font-size: var(--fontSize_sp20);
  }
  .bl-lowerSec_sTxt {
    font-size: var(--fontSize_sp13);
    font-weight: 500;
    letter-spacing: 0.05em;
    color: #000;
  }
  .bl-lowerSec_sTxt._lite {
    font-weight: 400;
  }
  .bl-lowerSec_sTxt ._lTxt {
    font-size: var(--fontSize_sp22);
  }
}
/*===============================
         bl-lineTxt
===============================*/
.bl-lineTxt {
  position: relative;
}
.bl-lineTxt::before {
  position: absolute;
  content: "";
  display: block;
  height: 1em;
  width: calc(100% + 0.8em);
  bottom: -0.2em;
  left: -0.4em;
  background-color: rgba(241, 141, 0, 0.12);
  z-index: -1;
}
.bl-lineTxt._lite::before {
  height: 0.6em;
}

@media only screen and (max-width: 1024px) {
  .bl-lineTxt::before {
    bottom: 0;
  }
  .bl-lineTxt._lite::before {
    height: 0.6em;
  }
}
/*===============================
         bl-secGrid
===============================*/
.bl-secGrid {
  display: grid;
  grid-template-columns: 1fr 36.25vw;
  gap: 8.75vw;
}
.bl-secGrid._jobs {
  grid-template-columns: 1fr 41.4vw;
  gap: 4.8vw;
}
.bl-secGrid._clt {
  gap: 6.5vw;
  grid-template-columns: 1fr 41.1vw;
}
.bl-secGrid._ppl {
  grid-template-columns: 1fr 41vw;
  gap: 7.3vw;
  padding: 0 3.5vw;
}
.bl-secGrid._ppl.active {
  transition: 0.5s;
  border-bottom: 1px solid #F18D00;
  background-image: linear-gradient(to bottom, rgba(241, 141, 0, 0), rgba(241, 141, 0, 0.1));
}
.bl-secGrid._is {
  position: relative;
  padding-right: 2.7vw;
}

@media only screen and (max-width: 1280px) {
  .bl-secGrid {
    gap: 6vw;
    grid-template-columns: 1fr 42vw;
  }
  .bl-secGrid._jobs {
    grid-template-columns: 1fr 48vw;
  }
}
@media only screen and (max-width: 1024px) {
  .bl-secGrid {
    display: block;
  }
  .bl-secGrid._ppl {
    position: relative;
    padding: 0;
    border-bottom: 1px solid #F18D00;
  }
  .bl-secGrid._ppl::before {
    position: absolute;
    content: "";
    display: block;
    width: 100vw;
    height: calc(100% + 20vw);
    background-image: linear-gradient(to bottom, rgba(241, 141, 0, 0) 30%, rgba(241, 141, 0, 0.1));
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    opacity: 0;
  }
  .bl-secGrid._ppl.active {
    background-image: unset;
    border-bottom: none;
    margin-bottom: 20vw;
  }
  .bl-secGrid._ppl.active::before {
    opacity: 1;
  }
  .bl-secGrid_contWrap {
    margin-top: 6.1vw;
  }
}
/*===============================
         bl-stickyWrap
===============================*/
.bl-stickyWrap {
  position: relative;
}
.bl-stickyWrap ._sticky {
  position: sticky;
  left: 0;
  top: calc(clamp(80px, 5.7vw, 130px) + 20px);
}

/*===============================
         bl-dl
===============================*/
.bl-dl {
  display: grid;
  grid-template-columns: 8.5em 1fr;
  gap: 3.6vw;
  padding-bottom: 1em;
  line-height: 1.6;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}
.bl-dl dd {
  font-weight: 400;
}
.bl-dl + .bl-dl {
  padding-top: 1em;
}
.bl-dl ._line {
  position: relative;
  height: 1.5lh;
}
.bl-dl ._line::before {
  position: absolute;
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.5);
  top: 50%;
  left: 0;
}

@media only screen and (max-width: 1024px) {
  .bl-dl {
    display: block;
    font-size: var(--fontSize_sp14);
    padding-bottom: 1.4em;
    letter-spacing: 0.05em;
  }
  .bl-dl + .bl-dl {
    padding-top: 1.4em;
  }
  .bl-dl dd {
    margin-top: 0.7em;
  }
}
/*===============================
         bl-iconBox
===============================*/
.bl-iconBox {
  position: relative;
  padding: 4.2vw 10px;
  border: 2px solid #F18D00;
  border-top: none;
  text-align: center;
}
.bl-iconBox::before, .bl-iconBox::after {
  position: absolute;
  content: "";
  display: block;
  top: 0;
  width: calc(50% - 3.28vw);
  height: 2px;
  background-color: #F18D00;
}
.bl-iconBox::before {
  left: 0;
}
.bl-iconBox::after {
  right: 0;
}
.bl-iconBox ._icon {
  position: absolute;
  width: 6.56vw;
  aspect-ratio: 1/1;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
}
.bl-iconBox ._icon picture {
  width: 100%;
  height: 100%;
}
.bl-iconBox ._icon::before {
  position: absolute;
  content: "";
  display: block;
  border-top-left-radius: 3.28vw;
  border-top-right-radius: 3.28vw;
  border: 2px solid #F18D00;
  border-bottom: none;
  width: 100%;
  height: 50%;
  left: -2px;
  top: -2px;
  z-index: -1;
}
.bl-iconBox ._lTxt {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  font-size: var(--fontSize_pc22);
  letter-spacing: 0.1em;
}
.bl-iconBox ._sTxt {
  margin-top: 1.8em;
  letter-spacing: 0.1em;
  font-weight: 500;
}

@media only screen and (max-width: 1024px) {
  .bl-iconBox {
    padding: 15.9vw 0 6.4vw 0;
  }
  .bl-iconBox ._icon {
    width: 20.5vw;
  }
  .bl-iconBox ._icon::before {
    border-top-left-radius: 10.25vw;
    border-top-right-radius: 10.25vw;
  }
  .bl-iconBox::before, .bl-iconBox::after {
    width: calc(50% - 10.25vw);
  }
  .bl-iconBox ._lTxt {
    font-size: var(--fontSize_sp18);
  }
  .bl-iconBox ._sTxt {
    font-weight: 400;
    color: #000;
    letter-spacing: 0.05em;
  }
}
/*===============================
         bl-scrollAnime
===============================*/
.bl-scrollAnime {
  position: fixed;
  bottom: 0;
  left: -7.4vw;
  bottom: -8vw;
  width: 22.9vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 5;
  pointer-events: none;
}
.bl-scrollAnime span {
  font-size: var(--fontSize_pc20);
  font-family: futura, "hind", sans-serif;
  text-transform: uppercase;
  color: #F18D00;
  transform: translateY(7vw);
}
.bl-scrollAnime.absolute {
  position: absolute;
}

@media only screen and (max-width: 1024px) {
  .bl-scrollAnime {
    width: 52.6vw;
    left: -23.6vw;
    bottom: -18vw;
  }
  .bl-scrollAnime span {
    font-size: 9px;
    writing-mode: vertical-lr;
    transform: translateY(15vw);
  }
}
/*===============================
         bl-fixedBg
===============================*/
.js-fixedBg {
  position: relative;
}

.bl-fixedBg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: -5;
}
.bl-fixedBg img {
  -o-object-fit: cover;
     object-fit: cover;
}
.bl-fixedBg.fixed {
  position: fixed;
}
.bl-fixedBg.fixed._clt, .bl-fixedBg.fixed._abt {
  width: 84.375%;
  left: 50%;
  transform: translateX(-50%);
}
.bl-fixedBg.bottom {
  bottom: 0;
  top: auto;
}

@media only screen and (max-width: 1280px) {
  .bl-fixedBg.fixed._clt, .bl-fixedBg.fixed._abt {
    width: 89%;
  }
}
@media only screen and (max-width: 1024px) {
  .bl-fixedBg.fixed._clt, .bl-fixedBg.fixed._abt {
    width: 100%;
  }
  .bl-fixedBg._is img {
    -o-object-position: 30% 50%;
       object-position: 30% 50%;
  }
  .bl-fixedBg._abt img {
    -o-object-position: 12% 50%;
       object-position: 12% 50%;
  }
}
/*===============================
        bl-entryLink
===============================*/
.bl-entryLink {
  position: fixed;
  z-index: 5;
  bottom: 8.7vw;
  right: 5.1vw;
  transition: 0.2s;
}
.bl-entryLink.bl-linkBtn {
  background-color: #F18D00;
  color: #fff;
  margin: 0;
}
.bl-entryLink.none {
  opacity: 0;
  pointer-events: none;
}

@media only screen and (min-width: 1025px) {
  .bl-entryLink {
    display: none;
  }
}
/*===============================
         md-head
===============================*/
.md-head_contWrap {
  padding: 0 2.6vw;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.md-head_logo {
  width: 21.4vw;
  max-width: 320px;
  min-width: 180px;
}
.md-head_logo img {
  display: block;
}

.md-head_navWrap {
  width: -moz-max-content;
  width: max-content;
  height: 100%;
}
.md-head_navWrap ul {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 3.8vw;
  font-size: var(--fontSize_pc20);
  color: #F18D00;
  text-transform: uppercase;
  line-height: 2;
}
@media only screen and (min-width: 1025px) {
  .md-head_navWrap a:not(.bl-linkBtn) {
    position: relative;
  }
  .md-head_navWrap a:not(.bl-linkBtn)::before {
    position: absolute;
    content: "";
    display: block;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #F18D00;
    transform-origin: center;
    transform: scaleX(0);
    transition: 0.2s;
  }
  .md-head_navWrap a:not(.bl-linkBtn):hover::before {
    transform: none;
  }
}

@media only screen and (max-width: 1024px) {
  .md-head_logo {
    width: 57.3vw;
    min-width: unset;
    max-width: 250px;
  }
  .md-head_openIcon {
    width: 46px;
    aspect-ratio: 1/1;
    border-radius: 50%;
    background-color: #F18D00;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
  }
  .md-head_openIcon span {
    height: 2px;
    width: 40%;
    background-color: #fff;
    transform-origin: left;
    transition: 0.3s;
  }
  .md-head_openIcon.js-menu_open span:nth-child(2) {
    transform: scaleX(0);
  }
  .md-head_openIcon.js-menu_open span:first-child {
    transform: translateY(1px) rotate(35deg) scale(1.3);
  }
  .md-head_openIcon.js-menu_open span:last-child {
    transform: translateY(-1px) rotate(-35deg) scale(1.3);
  }
}
/*===============================
         md-spNav
===============================*/
.md-spNav_contWrap {
  display: grid;
  grid-template-rows: 1fr auto auto;
  height: 100%;
}

.md-spNav_liWrap {
  overflow: auto;
}

.md-spNav_item {
  position: relative;
  padding-bottom: 1em;
  border-bottom: 1px solid #898989;
}
.md-spNav_item ._top {
  display: block;
}
.md-spNav_item ._top ._en {
  font-weight: 500;
  color: #F18D00;
  line-height: 1.5;
  text-transform: uppercase;
  display: block;
}
.md-spNav_item ._top ._jp {
  font-size: var(--fontSize_sp18);
  line-height: 1.5;
}
.md-spNav_item + .md-spNav_item {
  padding-top: 1.1em;
}

.md-spNav_lowerLi {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -moz-column-gap: 1em;
       column-gap: 1em;
  row-gap: 0.4em;
  line-height: 1.5;
  justify-content: space-between;
  padding: 1.2em 0;
}

.md-spNav_open {
  position: absolute;
  bottom: 8px;
  right: 0;
  width: 2.3em;
  aspect-ratio: 1/1;
  transition: transform 0.2s;
}
.md-spNav_open.is-active {
  transform: rotate(180deg);
}

.md-spNav_linkWrap {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: repeat(2, 1fr);
  grid-auto-flow: column;
  row-gap: 1em;
  padding-top: 5vw;
  padding-bottom: 3.6vw;
}
.md-spNav_linkWrap ._iconWrap {
  display: flex;
  align-items: center;
  gap: 4vw;
  margin-top: 7px;
}
.md-spNav_linkWrap ._iconWrap a {
  width: 8.9vw;
  max-width: 50px;
}
.md-spNav_linkWrap ._plcyLink {
  grid-row: 1/3;
  display: flex;
  flex-direction: column;
  justify-content: end;
  align-items: end;
}
.md-spNav_linkWrap ._plcyLink ._site {
  font-size: var(--fontSize_sp14);
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: end;
}
.md-spNav_linkWrap ._plcyLink ._site img {
  width: 1.3em;
  margin-left: 0.8em;
}
.md-spNav_linkWrap ._plcyLink ._policy {
  font-family: futura, "hind", sans-serif;
  font-weight: 500;
  margin-top: 6px;
}

.md-spNav_btmTxt {
  border-top: 1px solid #707070;
  padding-top: 8px;
  text-align: center;
  font-family: futura, "hind", sans-serif;
  font-weight: 500;
}

/*===============================
         md-topFv
===============================*/
.md-topFv_contWrap {
  position: relative;
  overflow: hidden;
  height: calc(100vh - clamp(80px, 5.7vw, 130px));
  height: calc(100svh - clamp(80px, 5.7vw, 130px));
  margin-left: 7.8vw;
}

.md-topFv_video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.md-topFv_videoBtn {
  position: absolute;
  z-index: 1;
  top: 4.9vw;
  left: 4.9vw;
  width: clamp(58px, 5.7vw, 88px);
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
}
.md-topFv_videoBtn img {
  width: 100%;
  height: auto;
}

.md-topFv_txtWrap {
  position: absolute;
  z-index: 1;
  right: 4.3vw;
  bottom: 25.2vh;
}
.md-topFv_txtWrap ._en {
  position: relative;
  font-family: futura, "hind", sans-serif;
  text-transform: uppercase;
  font-size: 5.83vw;
  letter-spacing: 0.08em;
  line-height: 1;
  color: #F18D00;
}
.md-topFv_txtWrap ._en::before {
  position: absolute;
  content: "wind the globe.";
  display: block;
  color: #fff;
  top: -0.04em;
  left: -0.05em;
}
.md-topFv_txtWrap ._jp {
  text-align: right;
  font-size: var(--fontSize_pc35);
  letter-spacing: 0.07em;
  color: #fff;
  padding-right: 0.3em;
}

.md-topFv_msgWrap {
  padding: 3.6vw 0 3.6vw 10.4vw;
  font-size: var(--fontSize_pc35);
  letter-spacing: 0.07em;
  color: #F18D00;
}

.md-topVideo_modal {
  position: fixed;
  z-index: 1000;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5vw;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.md-topVideo_modal.is-open {
  opacity: 1;
  pointer-events: auto;
}
.md-topVideo_overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.75);
}
.md-topVideo_cont {
  position: relative;
  z-index: 1;
  width: min(86vw, 960px);
}
.md-topVideo_close {
  position: absolute;
  top: -44px;
  right: 0;
  width: 34px;
  height: 34px;
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
}
.md-topVideo_close::before,
.md-topVideo_close::after {
  position: absolute;
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  top: 50%;
  left: 0;
  background-color: #fff;
}
.md-topVideo_close::before {
  transform: rotate(45deg);
}
.md-topVideo_close::after {
  transform: rotate(-45deg);
}
.md-topVideo_iframeWrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  background-color: #000;
}
.md-topVideo_iframeWrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

@media only screen and (max-width: 1024px) {
  .md-topFv_contWrap {
    height: calc(100vh - clamp(30px, 13.8vw, 80px));
    height: calc(100svh - clamp(30px, 13.8vw, 80px));
    margin-left: 5.1vw;
  }
  .md-topFv_videoBtn {
    top: 8vw;
    left: 8vw;
    width: 15.4vw;
    min-width: 58px;
    max-width: 88px;
  }
  .md-topFv_txtWrap {
    right: auto;
    left: 5.1vw;
    bottom: 41vw;
  }
  .md-topFv_txtWrap ._en {
    font-size: 12vw;
    padding-right: 0;
  }
  .md-topFv_txtWrap ._en._row1::before {
    content: "wind";
  }
  .md-topFv_txtWrap ._en._row2::before {
    content: "the globe.";
  }
  .md-topFv_txtWrap ._jp {
    font-size: var(--fontSize_sp14);
    margin-top: 0.5em;
    padding-right: 0;
  }
  .md-topFv_msgWrap {
    padding: 10.3vw 0 19.2vw 5.1vw;
    font-size: var(--fontSize_sp22);
    letter-spacing: 0;
    line-height: 1.6;
  }
  .md-topVideo_modal {
    padding: 6.4vw;
  }
  .md-topVideo_cont {
    width: 100%;
  }
  .md-topVideo_close {
    top: -40px;
    width: 30px;
    height: 30px;
  }
}
/*===============================
         md-topAbt
===============================*/
.md-topAbt_enTxt {
  position: absolute;
  top: 0;
  left: 50%;
  width: 80.8vw;
  transform: translate(-50%, -30%);
}

.md-topAbt_contWrap {
  display: grid;
  grid-template-columns: 53vw 1fr;
  align-items: center;
  gap: 7.3vw;
  background-image: linear-gradient(to bottom, rgba(241, 141, 0, 0) -20%, rgba(241, 141, 0, 0.14));
  padding-top: 10.1vw;
  padding-bottom: 6.6vw;
}

.md-topAbt_imgWrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.7vw;
}

@media only screen and (max-width: 1024px) {
  .md-topAbt_enTxt {
    width: 88.5vw;
  }
  .md-topAbt_contWrap {
    display: flex;
    flex-direction: column-reverse;
    align-items: start;
    padding: 15.9vw 5.1vw 20.5vw 0;
    gap: 15.4vw;
  }
  .md-topAbt_txtWrap {
    padding: 0 5.1vw;
  }
  .md-topAbt_imgWrap {
    gap: 1vw;
  }
}
/*===============================
         md-topJb
===============================*/
.md-topJb_contWrap {
  padding: 0 5.2vw 0 12.3vw;
  display: grid;
  grid-template-columns: 1fr 51vw;
  align-items: center;
}
.md-topJb_contWrap._reverse {
  grid-template-columns: 51vw 1fr;
  gap: 9.6vw;
}

@media only screen and (min-width: 1025px) {
  .md-topJb_contWrap {
    grid-template-columns: 1fr 42vw;
    align-items: center;
  }
  .md-topJb_contWrap._reverse {
    grid-template-columns: 42vw 1fr;
    gap: 9.6vw;
  }
}
@media only screen and (max-width: 1024px) {
  .md-topJb_contWrap._reverse, .md-topJb_contWrap {
    padding: 0 5.1vw;
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 5.1vw;
  }
  .md-topJb_contWrap {
    flex-direction: column-reverse;
  }
}
/*===============================
         md-topBgWrap
===============================*/
.md-topBgWrap {
  position: relative;
  z-index: 2;
  background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0) 20%, #ffecd1 95%);
}

/*===============================
         md-topPpl
===============================*/
.md-topPpl_contWrap {
  padding: 0 5.2vw;
}

.md-topPpl_swiper.swiper {
  position: relative;
  margin-top: 3.1vw;
  padding-top: calc(var(--fontSize_pc90) * 0.5);
}
.md-topPpl_swiper.swiper .swiper-slide {
  position: relative;
  width: 21.8vw;
}
.md-topPpl_swiper.swiper .swiper-slide ._num {
  position: absolute;
  top: -0.5em;
  right: 0.23em;
  font-size: var(--fontSize_pc90);
  letter-spacing: 0.03em;
  font-family: futura, "hind", sans-serif;
  font-weight: 500;
  line-height: 1;
  font-style: italic;
}
.md-topPpl_swiper.swiper .swiper-slide ._picWrap {
  background-image: linear-gradient(to bottom, rgba(241, 141, 0, 0.56), #d97f00);
  padding: 12px;
}
.md-topPpl_swiper.swiper .swiper-slide ._picWrap img {
  border-radius: 3px;
}
.md-topPpl_swiper.swiper .swiper-slide ._ttl {
  margin-top: 0.64em;
  font-size: var(--fontSize_pc22);
  letter-spacing: 0.1em;
  line-height: 1.36;
}
.md-topPpl_swiper.swiper .swiper-slide ._post {
  color: #000000;
  font-size: var(--fontSize_pc16);
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.875;
  margin-top: 0.6em;
}

.md-topPpl_nav {
  position: absolute;
  top: 13vw;
  left: 50%;
  width: 2.2vw;
  min-width: 30px;
  height: 2.2vw;
  min-height: 30px;
  z-index: 2;
  cursor: pointer;
}
.md-topPpl_nav img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.md-topPpl_nav._prev {
  transform: translateX(calc(-100% - 12.3vw)) rotate(180deg);
}
.md-topPpl_nav._next {
  transform: translateX(12.3vw);
}
.md-topPpl_nav ._hover {
  opacity: 0;
}
@media only screen and (min-width: 1025px) {
  .md-topPpl_nav img {
    transition: 0.2s;
  }
  .md-topPpl_nav:hover ._normal {
    opacity: 0;
  }
  .md-topPpl_nav:hover ._hover {
    opacity: 1;
  }
}

.md-topPpl_link {
  margin-left: auto;
}

@media only screen and (max-width: 1280px) {
  .md-topPpl_swiper.swiper .swiper-slide {
    width: 27vw;
  }
  .md-topPpl_nav {
    top: 16vw;
  }
  .md-topPpl_nav._prev {
    transform: translateX(calc(-100% - 14.5vw)) rotate(180deg);
  }
  .md-topPpl_nav._next {
    transform: translateX(14.5vw);
  }
}
@media only screen and (max-width: 1024px) {
  .md-topPpl_contWrap {
    padding: 0;
  }
  .md-topPpl_swiper.swiper {
    margin-top: 7.6vw;
    padding-top: 6.24vw;
  }
  .md-topPpl_swiper.swiper .swiper-slide {
    width: 50vw;
  }
  .md-topPpl_nav {
    top: 22vw;
    width: 7vw;
    height: 7vw;
    min-width: unset;
  }
  .md-topPpl_nav._next {
    transform: translateX(23vw);
  }
  .md-topPpl_nav._prev {
    transform: translateX(calc(-100% - 23vw)) rotate(180deg);
  }
  .md-topPpl_swiper.swiper .swiper-slide ._num {
    font-size: 10vw;
  }
  .bl-linkBtn.md-topPpl_link {
    margin-left: auto;
    margin-right: auto;
    margin-top: 10.25vw;
  }
  .md-topPpl_swiper.swiper .swiper-slide ._ttl {
    font-size: var(--fontSize_sp18);
    margin-top: 0.55em;
    letter-spacing: 0.05em;
    line-height: 1.67;
  }
  .md-topPpl_swiper.swiper .swiper-slide ._post {
    font-size: var(--fontSize_sp13);
    line-height: 1.54;
  }
}
@media only screen and (max-width: 768px) {
  .md-topPpl_swiper.swiper .swiper-slide {
    width: 79.5vw;
  }
  .md-topPpl_swiper.swiper .swiper-slide ._picWrap {
    padding: 7px;
  }
  .md-topPpl_swiper.swiper .swiper-slide ._num {
    font-size: 14.1vw;
  }
  .md-topPpl_nav {
    top: 32vw;
    width: 9vw;
    height: 9vw;
    min-width: unset;
  }
  .md-topPpl_nav._next {
    transform: translateX(32.5vw);
  }
  .md-topPpl_nav._prev {
    transform: translateX(calc(-100% - 32.5vw)) rotate(180deg);
  }
}
/*===============================
         md-topIs
===============================*/
.md-topIs_contWrap {
  margin-top: 10.2vw;
  padding: 0 7.8vw;
  display: grid;
  grid-template-columns: 48.6vw 1fr;
  gap: 10.6vw;
  align-items: end;
}

@media only screen and (max-width: 1280px) {
  .md-topIs_contWrap {
    grid-template-columns: 40vw 1fr;
  }
}
@media only screen and (max-width: 1024px) {
  .md-topIs_contWrap {
    display: block;
    padding: 0 5.1vw;
    margin-top: 20.5vw;
  }
  .md-topIs_txtWrap {
    margin-top: 5.1vw;
  }
}
/*===============================
         md-topNews
===============================*/
.md-topNews_gridWrap {
  margin-top: 4.7vw;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4.7vw;
}

.md-topNews_link {
  margin: 0 auto;
}

@media only screen and (max-width: 1024px) {
  .md-topNews_gridWrap {
    margin: 0 auto;
    margin-top: 5.1vw;
    display: flex;
    flex-direction: column;
    gap: 15.4vw;
    max-width: 700px;
  }
}
/*===============================
         md-footEntry
===============================*/
.md-footEntry_contWrap {
  padding-left: 12.2vw;
}

.md-footEntry_link {
  backdrop-filter: blur(10px);
  background-color: rgba(255, 255, 255, 0.2);
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  padding-left: 4.3vw;
  border-radius: 3px;
}
.md-footEntry_link ._txt {
  display: flex;
  flex-direction: column;
  color: #fff;
}
.md-footEntry_link img {
  width: 3vw;
}
.md-footEntry_link ._en {
  font-family: futura, "hind", sans-serif;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  line-height: 1.2;
}
.md-footEntry_link ._jp {
  letter-spacing: 0.05em;
}
.md-footEntry_link._fap {
  gap: 14vw;
  height: 7.2vw;
  padding-right: 2.3vw;
}
.md-footEntry_link._fap ._en {
  font-size: var(--fontSize_pc58);
}
.md-footEntry_link._fap ._jp {
  font-size: var(--fontSize_pc14);
}
.md-footEntry_link._entry {
  margin-top: 2vw;
  gap: 17vw;
  height: 9.9vw;
  padding-right: 3.6vw;
}
.md-footEntry_link._entry ._en {
  font-size: var(--fontSize_pc80);
}
@media only screen and (min-width: 1025px) {
  .md-footEntry_link {
    transition: 0.2s;
  }
  .md-footEntry_link._fap:hover {
    background-color: rgba(77, 77, 77, 0.7);
  }
  .md-footEntry_link._entry:hover {
    background-color: rgba(241, 141, 0, 0.5);
  }
}

@media only screen and (max-width: 1024px) {
  .md-footEntry_contWrap {
    padding: 0 5.1vw;
  }
  .md-footEntry_link {
    padding-left: 5.1vw;
  }
  .md-footEntry_link._fap, .md-footEntry_link._entry {
    height: 21vw;
  }
  .md-footEntry_link._fap {
    gap: 36.9vw;
  }
  .md-footEntry_link._entry {
    width: 100%;
    margin-top: 5.1vw;
  }
  .md-footEntry_link._fap ._en, .md-footEntry_link._entry ._en {
    font-size: var(--fontSize_sp35);
  }
  .md-footEntry_link ._jp {
    font-size: var(--fontSize_sp11);
    font-weight: 500;
  }
  .md-footEntry_link img {
    width: 7.2vw;
  }
}
/*===============================
         md-foot
===============================*/
.md-foot_contWrap {
  padding: 0 5.2vw;
}

.md-foot_logo {
  display: block;
  width: 22.5vw;
}

.md-foot_grid {
  margin-top: 2.1vw;
  display: grid;
  -moz-column-gap: 3.6vw;
       column-gap: 3.6vw;
  grid-template-columns: 1fr auto auto auto auto auto;
  grid-template-rows: auto auto;
}

.md-foot_infoWrap {
  grid-column: 1/2;
  grid-row: 1/3;
}
.md-foot_infoWrap ._name {
  font-size: var(--fontSize_pc30);
  font-weight: 500;
}
.md-foot_infoWrap ._nameEn {
  font-family: futura, "hind", sans-serif;
  font-size: var(--fontSize_pc25);
  letter-spacing: -0.04em;
  margin-bottom: 1em;
}
.md-foot_infoWrap ._detail {
  font-weight: 400;
  line-height: 1.5;
}
.md-foot_infoWrap ._detail + ._detail {
  margin-top: 0.56em;
}
.md-foot_infoWrap ._link {
  margin-top: 2.5vw;
  font-weight: 500;
}
.md-foot_infoWrap ._link + ._link {
  margin-top: 0.8vw;
}
.md-foot_infoWrap ._iconWrap {
  margin-top: 12px;
  display: flex;
  align-items: center;
  gap: 1vw;
}
.md-foot_infoWrap ._iconWrap a {
  width: 2.3vw;
  min-width: 30px;
}
@media only screen and (min-width: 1025px) {
  .md-foot_infoWrap ._iconWrap a {
    transition: 0.2s;
  }
  .md-foot_infoWrap ._iconWrap a:hover {
    opacity: 0.7;
  }
}

.md-foot_policyWrap {
  grid-column: 2/7;
  grid-row: 2/3;
  display: flex;
  align-items: end;
  justify-content: end;
  gap: 3.5vw;
}
.md-foot_policyWrap ._site {
  display: flex;
  align-items: center;
  font-size: var(--fontSize_pc19);
  font-weight: 500;
  gap: 0.5em;
}
.md-foot_policyWrap ._site img {
  width: 1.1em;
}
.md-foot_policyWrap ._policy {
  font-family: futura, "hind", sans-serif;
  font-weight: 500;
}
@media only screen and (min-width: 1025px) {
  .md-foot_policyWrap a {
    transition: 0.2s;
  }
  .md-foot_policyWrap a:hover {
    opacity: 0.5;
  }
}

.md-foot_link ._top {
  font-size: var(--fontSize_pc22);
  display: block;
  width: -moz-fit-content;
  width: fit-content;
}
.md-foot_link ._mgn {
  margin-top: 3.5vw;
}
.md-foot_link ._lower {
  margin-top: 1em;
  line-height: 1.75;
  font-size: var(--fontSize_pc16);
  font-weight: 400;
}
@media only screen and (min-width: 1025px) {
  .md-foot_link a {
    transition: 0.2s;
  }
  .md-foot_link a._top {
    position: relative;
  }
  .md-foot_link a._top::before {
    position: absolute;
    content: "";
    display: block;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #F18D00;
    transform-origin: center;
    transform: scaleX(0);
    transition: 0.2s;
  }
  .md-foot_link a._top:hover::before {
    transform: none;
  }
  .md-foot_link ._lower a:hover {
    opacity: 0.5;
  }
}

.md-foot_bottomWrap {
  margin-top: 22px;
  padding-top: 12px;
  border-top: 1px solid #707070;
  text-align: center;
  font-size: var(--fontSize_pc15);
  font-family: futura, "hind", sans-serif;
  font-weight: 500;
}

@media only screen and (max-width: 1280px) {
  .md-foot_grid {
    grid-template-rows: repeat(3, auto);
    grid-template-columns: repeat(5, auto);
    row-gap: 2.3vw;
    -moz-column-gap: 4.6vw;
         column-gap: 4.6vw;
  }
  .md-foot_infoWrap {
    grid-row: 1/2;
    grid-column: 1/7;
  }
  .md-foot_policyWrap {
    grid-row: 3/4;
    grid-column: 1/7;
  }
}
@media only screen and (max-width: 1024px) {
  .md-foot_contWrap {
    padding: 0 5.1vw;
  }
  .md-foot_logo {
    width: 73.3vw;
  }
  .md-foot_grid {
    margin-top: 6.67vw;
  }
  .md-foot_infoWrap ._name {
    font-size: var(--fontSize_sp25);
    font-weight: 700;
  }
  .md-foot_infoWrap ._nameEn {
    font-weight: 500;
    font-size: var(--fontSize_sp20);
    margin-bottom: 0.8em;
  }
  .md-foot_grid {
    display: block;
  }
  .md-foot_infoWrap ._link {
    margin-top: 10.2vw;
  }
  .md-foot_infoWrap ._iconWrap {
    gap: 7.6vw;
  }
  .md-foot_infoWrap ._iconWrap a {
    width: 11vw;
    max-width: 50px;
  }
  .md-foot_infoWrap ._link + ._link {
    margin-top: 5vw;
  }
  .md-foot_link {
    margin-top: 12.8vw;
  }
  .md-foot_link + .md-foot_link {
    margin-top: 10.2vw;
  }
  .md-foot_link ._top {
    font-size: var(--fontSize_sp18);
    font-weight: 500;
  }
  .md-foot_link ._lower {
    margin-top: 0.76em;
    font-size: var(--fontSize_sp13);
    line-height: 1.9;
  }
  .md-foot_policyWrap {
    flex-direction: column;
    gap: 0.8em;
    margin-top: 4.6vw;
  }
  .md-foot_policyWrap ._site {
    font-size: var(--fontSize_sp14);
    letter-spacing: 0;
  }
  .md-foot_policyWrap ._policy {
    font-size: var(--fontSize_sp14);
  }
  .md-foot_bottomWrap {
    padding-top: 8px;
    font-size: var(--fontSize_sp12);
  }
}
/*===============================
        md-lowerTop
===============================*/
.md-lowerTop_bg {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.md-lowerTop_contWrap {
  position: relative;
  height: 100%;
  color: #fff;
}

.md-lowerTop_txtWrap {
  position: absolute;
  left: 0;
  bottom: 6.67vw;
}
.md-lowerTop_txtWrap ._jp {
  font-size: var(--fontSize_pc25);
  letter-spacing: 0.05em;
  line-height: 1.9;
}
.md-lowerTop_txtWrap ._en {
  font-size: var(--fontSize_pc90);
  font-family: futura, "hind", sans-serif;
  font-weight: 900;
  letter-spacing: 0.05em;
  line-height: 1;
  text-transform: uppercase;
}

.md-lowerTop_linkWrap {
  position: absolute;
  width: 41.7vw;
  min-width: 550px;
  right: 0;
  bottom: 1.3vw;
  font-size: var(--fontSize_pc16);
  font-weight: 400;
  letter-spacing: 0;
}
.md-lowerTop_linkWrap h2 {
  display: inline;
}
@media only screen and (min-width: 1025px) {
  .md-lowerTop_linkWrap a {
    transition: 0.2s;
  }
  .md-lowerTop_linkWrap a:hover {
    opacity: 0.6;
  }
}

@media only screen and (max-width: 1024px) {
  .md-lowerTop_txtWrap {
    bottom: 48.7%;
  }
  .md-lowerTop_txtWrap._narrow {
    bottom: 14.9%;
  }
  .md-lowerTop_txtWrap ._jp {
    font-size: var(--fontSize_sp13);
  }
  .md-lowerTop_txtWrap ._en {
    font-size: var(--fontSize_sp50);
  }
  .md-lowerTop_linkWrap {
    min-width: unset;
    width: 100%;
    bottom: auto;
    bottom: 6.9%;
    font-size: var(--fontSize_sp12);
  }
}
/*===============================
        md-lowerMsg
===============================*/
.md-lowerMsg_contWrap {
  display: grid;
  grid-template-columns: 40.8vw 1fr;
}

.md-lowerMsg_lTxt {
  font-size: var(--fontSize_pc50);
  letter-spacing: 0.07em;
  color: #F18D00;
  line-height: 1.4;
}

.md-lowerMsg_rightWrap {
  padding-top: 7.4vw;
}

.md-lowerMsg_sTxt {
  font-size: var(--fontSize_pc22);
  font-weight: 500;
  color: #000;
}

@media only screen and (max-width: 1024px) {
  .md-lowerMsg_contWrap {
    display: block;
  }
  .md-lowerMsg_lTxt {
    font-size: var(--fontSize_sp22);
    letter-spacing: 0;
    line-height: 1.6;
  }
  .md-lowerMsg_rightWrap {
    padding-top: 7.7vw;
  }
  .md-lowerMsg_sTxt {
    font-size: var(--fontSize_sp13);
    letter-spacing: 0.05em;
  }
}
/*===============================
        md-abtTop
===============================*/
.md-abtTop_link {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 1fr);
  row-gap: 1.25em;
}

/*===============================
        md-abtMsg
===============================*/
.md-abtMsg_contWrap {
  display: grid;
  grid-template-columns: 34.2vw 1fr;
  gap: 6.7vw;
  margin-top: 1.6vw;
}

.md-abtMsg_txtWrap ._topTxt.bl-lowerSec_subTxt {
  margin-top: 0;
  margin-bottom: 0.8em;
}
.md-abtMsg_txtWrap ._sTxt {
  font-size: var(--fontSize_pc20);
  font-weight: 400;
  line-height: 1.5;
}
.md-abtMsg_txtWrap ._name {
  font-size: var(--fontSize_pc20);
  font-weight: 500;
  line-height: 1.5;
  margin-top: 1.6vw;
  display: grid;
  grid-template-columns: 1fr 13em;
  gap: 2.5em;
  align-items: center;
  text-align: right;
  color: #000;
}

@media only screen and (max-width: 1024px) {
  .md-abtMsg_img {
    display: none;
  }
  .md-abtMsg_contWrap {
    display: block;
    margin-top: 3.8vw;
  }
  .md-abtMsg_txtWrap ._topTxt.bl-lowerSec_subTxt {
    margin-bottom: 0.72em;
  }
  .md-abtMsg_txtWrap ._sTxt {
    font-size: var(--fontSize_sp13);
    letter-spacing: 0.05em;
    line-height: 1.54;
  }
  .md-abtMsg_txtWrap ._name {
    font-size: var(--fontSize_sp13);
    letter-spacing: 0.05em;
    margin-top: 7.7vw;
  }
}
/*===============================
        md-abt1
===============================*/
.md-abt1_bgWrap {
  position: relative;
}
.md-abt1_bgWrap::before {
  position: absolute;
  content: "";
  display: block;
  z-index: -1;
  top: 14vw;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(to bottom, rgba(241, 141, 0, 0), rgba(241, 141, 0, 0.1));
}

.md-abt1_topImgWrap {
  padding: 0 2.6vw;
}

.md-abt1_contWrap {
  padding: 5.5vw 7.9vw 0 4.5vw;
  display: grid;
  grid-template-columns: 1fr 34.3vw;
}

.md-abt1_leftWrap {
  padding-top: 2.6vw;
}

.md-abt1_linkBtn.bl-linkBtn {
  margin: 3.2vw auto 0 auto;
}

.md-abt1_imgSlide {
  margin-top: 7.7vw;
}

@media only screen and (max-width: 1024px) {
  .md-abt1_bgWrap::before {
    top: 7.7vw;
    height: calc(100% - 7.7vw + 39.5vw);
  }
  .md-abt1_topImgWrap {
    padding: 0 5.1vw;
  }
  .md-abt1_contWrap {
    padding: 5.1vw;
    padding-bottom: 0;
    display: block;
  }
  .md-abt1_rightWrap {
    margin-top: 7.7vw;
  }
  .md-abt1_linkBtn.bl-linkBtn {
    margin-top: 10.25vw;
  }
  .md-abt1_imgSlide {
    margin-top: 20.5vw;
  }
}
/*===============================
        md-abt_bgWrap
===============================*/
.md-abt_bgWrap {
  background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(255, 232, 199, 0.3));
}

/*===============================
        md-abt2
===============================*/
.md-abt2_contWrap {
  position: relative;
}

.md-abt2_leftImg {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 14.8vw;
}

.md-abt2_rightImg {
  position: absolute;
  right: 2.1vw;
  bottom: 0;
  transform: translateY(100%);
  width: 19.5vw;
}

.md-abt2_numWrap {
  margin: 2.6vw auto;
  width: -moz-fit-content;
  width: fit-content;
}

.md-abt2_numTxt {
  display: flex;
  align-items: center;
  gap: 1.45em;
  text-align: left;
}
.md-abt2_numTxt + .md-abt2_numTxt {
  margin-top: 16px;
}
.md-abt2_numTxt span {
  font-size: var(--fontSize_pc21);
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.2em;
  height: 3.2em;
  border: 2px solid #F18D00;
  border-radius: 50%;
}
.md-abt2_numTxt p {
  letter-spacing: 0.1em;
}

@media only screen and (max-width: 1024px) {
  .md-abt2_leftImg {
    top: 0;
    bottom: auto;
    left: 5.1vw;
    transform: translateY(-100%);
    width: 25.1vw;
    max-width: 200px;
  }
  .md-abt2_rightImg {
    bottom: -6.4vw;
    right: 0;
    width: 40vw;
    max-width: 350px;
  }
  .md-abt2_contWrap {
    padding: 0 5.1vw;
  }
  .md-abt2_numWrap {
    margin: 6.4vw 0;
  }
  .md-abt2_numTxt {
    font-weight: 500;
    letter-spacing: 0.05em;
  }
  .md-abt2_numTxt span {
    font-size: var(--fontSize_sp15);
  }
}
/*===============================
        md-abt3
===============================*/
.md-abt3_boxWrap {
  margin: 3.2vw auto;
  display: grid;
  grid-template-columns: repeat(2, 29.4vw);
  grid-template-rows: repeat(2, 1fr);
  row-gap: 0.94vw;
  -moz-column-gap: 1.3vw;
       column-gap: 1.3vw;
  width: -moz-fit-content;
  width: fit-content;
}

.md-abt3_box {
  padding: 0 1vw;
  display: flex;
  height: 5.1vw;
  align-items: center;
  gap: 1.46vw;
  font-size: var(--fontSize_pc22);
  border: 1px solid #F18D00;
}
.md-abt3_box picture {
  height: 100%;
  width: auto;
}
.md-abt3_box picture img {
  height: 100%;
  width: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.md-abt3_slideTxt {
  margin-top: 8.6vw;
}

@media only screen and (max-width: 1024px) {
  .md-abt3_boxWrap {
    margin: 7.7vw 0;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, 1fr);
    gap: 2.6vw;
    width: 100%;
  }
  .md-abt3_box {
    padding: 0 0 0 4.1vw;
    height: 15.3vw;
    font-size: var(--fontSize_sp13);
    letter-spacing: 0.1em;
    gap: 1.8em;
  }
  .md-abt3_slideTxt {
    margin-top: 20.5vw;
  }
}
/*===============================
        md-abt4
===============================*/
.md-abt4_mTxt {
  margin-top: 1.2em;
  font-size: var(--fontSize_pc26);
  line-height: 1.3;
}
.md-abt4_mTxt + .md-abt4_mTxt {
  margin-top: 1.6em;
}

.md-abt4_txtMgn {
  margin-top: 3.9vw;
}

@media only screen and (max-width: 1024px) {
  .md-abt4_mTxt {
    font-size: var(--fontSize_sp18);
    font-weight: 500;
    letter-spacing: 0.05em;
    line-height: 1.67;
    color: #000000;
  }
  .md-abt4_txtMgn ._lTxt {
    letter-spacing: 0.05em;
    padding: 0.5em 0.5em 0.5em 0;
  }
}
/*===============================
        md-abt5
===============================*/
.md-abt5_contWrap {
  align-items: end;
}

.md-abt5_leftWrap {
  padding-left: 4.4vw;
}

.md-abt5_boxWrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  -moz-column-gap: 1.6vw;
       column-gap: 1.6vw;
  row-gap: 0.7vw;
}

.md-abt5_box {
  display: flex;
  align-items: center;
  gap: 1.25vw;
  padding: 0 1vw;
  height: 6.8vw;
  border: 1px solid #F18D00;
  font-size: var(--fontSize_pc22);
  letter-spacing: 0.1em;
}
.md-abt5_box picture {
  height: 85%;
  width: auto;
}
.md-abt5_box picture img {
  height: 100%;
  width: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.md-abt5_txt {
  margin-top: 2.2vw;
  text-transform: uppercase;
  font-size: var(--fontSize_pc32);
  letter-spacing: 0.1em;
  line-height: 1.375;
}

@media only screen and (max-width: 1280px) {
  .md-abt5_leftWrap {
    padding-left: 0;
  }
}
@media only screen and (max-width: 1024px) {
  .md-abt5_boxWrap {
    margin: 7.7vw 0;
    -moz-column-gap: 3.6vw;
         column-gap: 3.6vw;
    row-gap: 2.1vw;
  }
  .md-abt5_box {
    height: 16.7vw;
    padding: 0 2.6vw;
    gap: 2.8vw;
    font-size: var(--fontSize_sp13);
  }
  .md-abt5_box picture {
    height: 75%;
  }
  .md-abt5_txt {
    font-size: var(--fontSize_sp18);
    letter-spacing: 0.05em;
  }
  .bl-linkBtn._right._abt5 {
    margin: 7.7vw auto 0 auto;
  }
}
/*===============================
        md-abt6
===============================*/
.md-abt6_leftWrap {
  padding-left: 2.3vw;
}

.md-abt6_txtWrap {
  margin-top: 4vw;
  padding-left: 4.5vw;
}
.md-abt6_txtWrap ._lTxt {
  font-size: var(--fontSize_pc32);
  line-height: 1.375;
  color: #F18D00;
  letter-spacing: 0.1em;
}
.md-abt6_txtWrap ._lTxt + ._lTxt {
  margin-top: 0.375em;
}

.md-abt6_listWrap {
  margin-top: 4vw;
  display: grid;
  align-items: center;
  grid-template-columns: 30.1vw 1fr 34.4vw;
}

.md-abt6_list {
  font-size: var(--fontSize_pc26);
  letter-spacing: 0.1em;
}
.md-abt6_list li + li {
  margin-top: 0.7em;
}
.md-abt6_list._circle li {
  padding-left: 1.46em;
  position: relative;
}
.md-abt6_list._circle li::before {
  position: absolute;
  content: "";
  display: block;
  top: 0.5lh;
  left: 0;
  width: 0.42em;
  height: 0.42em;
  background-color: #F18D00;
  border-radius: 50%;
  transform: translateY(-50%);
}
.md-abt6_list._check li {
  display: flex;
  align-items: start;
}
.md-abt6_list._check li img {
  width: 1em;
  margin-right: 1.15em;
  margin-top: 0.22lh;
}

.md-abt6_arrowWrap {
  position: relative;
  padding-right: 3.1vw;
}
.md-abt6_arrowWrap p {
  position: absolute;
  top: 6%;
  left: 5%;
  letter-spacing: 0.1em;
}

@media only screen and (max-width: 1280px) {
  .md-abt6_leftWrap {
    padding-left: 0;
  }
  .md-abt6_txtWrap {
    padding-left: 0;
  }
}
@media only screen and (max-width: 1024px) {
  .md-abt6_listWrap {
    grid-template-columns: 1fr;
    grid-template-rows: auto 30.8vw auto;
    margin-top: 7.7vw;
  }
  .md-abt6_list {
    font-size: var(--fontSize_sp18);
    letter-spacing: 0.05em;
  }
  .md-abt6_arrowWrap {
    padding: 0;
  }
  .md-abt6_arrowWrap picture {
    width: 20.5vw;
    transform: translateX(-5vw) rotate(90deg);
    margin: 0 auto;
  }
  .md-abt6_arrowWrap p {
    top: 50%;
    left: 52%;
    transform: translateY(-50%);
  }
  .md-abt6_list._circle li {
    padding-left: 1.1em;
  }
  .md-abt6_list._check li img {
    margin-right: 0.38em;
  }
}
/*===============================
        md-abt7
===============================*/
.md-abt7_mapWrap {
  margin: 4.3vw auto 0 auto;
  width: 77.1vw;
}

@media only screen and (max-width: 1024px) {
  .bl-lowerSec_sTxt ._lTxt._abt7 {
    font-size: var(--fontSize_sp18);
    letter-spacing: 0.05em;
    line-height: 1.67;
  }
  .md-abt7_mapWrap {
    margin: 10.3vw auto 0 auto;
    width: 100%;
  }
}
/*===============================
        md-abt8
===============================*/
.md-abt8_boxWrap {
  display: grid;
  justify-content: center;
  grid-template-columns: repeat(3, 22.9vw);
  gap: 1.1vw;
  margin-top: 6.5vw;
}
.md-abt8_boxWrap .bl-iconBox {
  padding-bottom: 1.56vw;
}

.md-abt8_bottomTxt {
  margin-top: 11.8vw;
}

.md-abt8_lTxt {
  min-height: 2.5lh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

@media only screen and (max-width: 1280px) {
  .md-abt8_boxWrap {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media only screen and (max-width: 1024px) {
  .md-abt8_boxWrap {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, auto);
    gap: 16vw;
    margin-top: 18vw;
  }
  .md-abt8_boxWrap .bl-iconBox {
    padding-bottom: 6.4vw;
  }
  .md-abt8_bottomTxt {
    margin-top: 21vw;
  }
  .bl-iconBox._abt {
    background-color: #FDFEFF;
  }
  .bl-iconBox._abt ._icon {
    background-color: #FDFEFF;
    border-radius: 50%;
  }
}
/*===============================
        md-abtOrg
===============================*/
.md-abtOrg_contWrap {
  padding-left: 6.25vw;
  display: grid;
  grid-template-columns: 1fr 35.4vw;
}

.md-abtOrg_rightWrap {
  padding-top: 6.8vw;
}

.md-abtOrg_txtBox + .md-abtOrg_txtBox {
  margin-top: 2.3vw;
}
.md-abtOrg_txtBox ._lTxt {
  width: -moz-fit-content;
  width: fit-content;
  background-color: #F18D00;
  color: #fff;
  font-size: var(--fontSize_pc28);
  margin-bottom: 0.7em;
  padding: 0 0.4em;
  line-height: 1.5;
  letter-spacing: 0.1em;
}
.md-abtOrg_txtBox ._sTxt {
  font-weight: 500;
  letter-spacing: 0.1em;
}

.md-abtOrg_bottomTxt {
  padding-top: 4.4vw;
  text-align: center;
  font-size: var(--fontSize_pc32);
  letter-spacing: 0.1em;
  line-height: 1.375;
  color: #F18D00;
}

@media only screen and (max-width: 1024px) {
  .md-abtOrg_contWrap {
    padding-left: 0;
    display: block;
  }
  .md-abtOrg_rightWrap {
    padding-top: 7.7vw;
  }
  .md-abtOrg_txtBox ._lTxt {
    font-size: var(--fontSize_sp18);
    line-height: 1.67;
  }
  .md-abtOrg_txtBox ._sTxt {
    letter-spacing: 0.05em;
    margin-top: 0.85em;
  }
  .md-abtOrg_txtBox + .md-abtOrg_txtBox {
    margin-top: 7.7vw;
  }
  .md-abtOrg_bottomTxt {
    padding-top: 7.7vw;
    font-size: var(--fontSize_sp18);
    letter-spacing: 0.05em;
    line-height: 1.67;
    text-align: left;
  }
}
/*===============================
        md-abtFrom
===============================*/
.md-abtFrom_topTtl {
  text-transform: uppercase;
  line-height: 1;
  display: flex;
  align-items: start;
  color: #E57500;
}
.md-abtFrom_topTtl ._sTxt {
  font-size: var(--fontSize_pc58);
  font-family: futura, "hind", sans-serif;
  line-height: 1.6;
}
.md-abtFrom_topTtl ._lTxt {
  font-size: 7.1vw;
  margin-left: 0.1em;
}

.md-abtFrom_leftBox {
  margin-top: 6vw;
}
.md-abtFrom_leftBox + .md-abtFrom_leftBox {
  margin-top: 4.7vw;
}

.md-abtFrom_bgTxt {
  font-size: var(--fontSize_pc22);
  padding: 0 0.4em;
  line-height: 1.5;
  background-color: #F18D00;
  color: #fff;
  letter-spacing: 0.1em;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 1.3em;
  font-weight: 500;
}
.md-abtFrom_bgTxt + .md-abtFrom_bgTxt {
  margin-top: 5px;
}

.md-abtFrom_sTxt {
  font-weight: 500;
  letter-spacing: 0.1em;
  margin-top: 1.1em;
  text-transform: uppercase;
}

.md-abtFrom_rightWrap {
  padding-top: 3.3vw;
}
.md-abtFrom_rightWrap ._topTxt {
  letter-spacing: 0.1em;
}
.md-abtFrom_rightWrap ._topTxt ._jp {
  font-weight: 900;
}
.md-abtFrom_rightWrap ._topTxt ._en {
  font-size: var(--fontSize_pc38);
  font-family: futura, "hind", sans-serif;
  color: #F18D00;
  text-transform: uppercase;
  line-height: 1;
}

.md-abtFrom_lTxt {
  margin-top: 6vw;
  font-size: var(--fontSize_pc39);
  font-weight: 900;
  letter-spacing: 0.1em;
  line-height: 1.2;
  color: #F18D00;
  margin-bottom: 2.5vw;
}

.md-abtFrom_bgImg {
  position: absolute;
  top: 14.7vw;
  left: -5.2vw;
  width: 47.6vw;
  z-index: -1;
}

@media only screen and (max-width: 1024px) {
  .md-abtFrom_rightWrap {
    padding-top: 0;
  }
  .md-abtFrom_bgImg {
    top: 13.8vw;
    width: 132.8vw;
    left: -46vw;
  }
  .md-abtFrom_topTtl ._sTxt {
    font-size: var(--fontSize_sp26);
  }
  .md-abtFrom_topTtl ._lTxt {
    font-size: clamp(60px, 16.6vw, 100px);
    margin-left: 0.6em;
  }
  .md-abtFrom_topTb {
    text-align: center;
    margin-top: 1em;
  }
  .md-abtFrom_topTb ._jp {
    font-weight: 900;
    letter-spacing: 0.1em;
  }
  .md-abtFrom_topTb ._en {
    font-size: var(--fontSize_sp28);
    font-family: futura, "hind", sans-serif;
    color: #F18D00;
    text-transform: uppercase;
    line-height: 1;
  }
  .md-abtFrom_bgTxt {
    margin: 0 auto;
    font-size: var(--fontSize_sp18);
  }
  .md-abtFrom_bgTxt._mgn {
    margin-top: 3.8vw;
  }
  .md-abtFrom_sTxt {
    font-weight: 400;
    color: #000000;
    letter-spacing: 0.05em;
    text-align: center;
  }
  .md-abtFrom_leftBox + .md-abtFrom_leftBox {
    margin-top: 15.4vw;
  }
  .md-abtFrom_lTxt {
    margin-top: 15.4vw;
    margin-bottom: 3.8vw;
    font-size: var(--fontSize_sp22);
    font-weight: 700;
    letter-spacing: 0.05em;
    text-align: center;
  }
}
/*===============================
        md-abtOl
===============================*/
.md-abtOl_contWrap {
  position: relative;
  z-index: 2;
  color: #fff;
  padding-top: 10.7vw;
  padding-bottom: 10.3vw;
}
.md-abtOl_contWrap p {
  position: relative;
  z-index: 2;
}

.md-abtOl_dlWrap {
  position: relative;
  z-index: 2;
  margin: 0 auto;
  margin-top: 3.5vw;
  width: 54.6vw;
  min-width: 700px;
  font-size: var(--fontSize_pc22);
}

@media only screen and (max-width: 1024px) {
  .l-inner._abtOl {
    width: 100%;
    max-width: unset;
  }
  .md-abtOl_contWrap {
    padding: 20.5vw 5.1vw 0 5.1vw;
    background-position: 10% 50%;
  }
  .md-abtOl_dlWrap {
    width: 100%;
    min-width: unset;
    margin-top: 10.25vw;
    padding-bottom: 30.7vw;
  }
}
/*===============================
         md-jobsTop
===============================*/
.md-jobsTop_link {
  display: flex;
  flex-wrap: wrap;
  -moz-column-gap: 1.7em;
       column-gap: 1.7em;
  row-gap: 0.8em;
}

.md-jobsTop_img {
  margin: 0 2.6vw;
}

.md-jobsTop_contWrap {
  padding-top: 4.7vw;
}

.md-jobsTop_linkWrap {
  display: grid;
  grid-template-columns: repeat(3, max-content);
  grid-template-rows: repeat(3, 1fr);
  -moz-column-gap: 3.8vw;
       column-gap: 3.8vw;
  row-gap: 1.9vw;
  justify-content: center;
  margin-top: 4.7vw;
}
.md-jobsTop_linkWrap ._item:nth-child(3n+1) {
  margin-left: auto;
}

@media only screen and (max-width: 1024px) {
  .md-jobsTop_img {
    margin: 0;
  }
  .md-jobsTop_contWrap {
    padding-top: 6.2vw;
  }
  .md-jobsTop_linkWrap {
    display: block;
    padding: 0 11.3vw;
  }
  .md-jobsTop_linkWrap ._item:nth-child(3n+1) {
    margin-left: unset;
  }
}
/*===============================
         md-jobs
===============================*/
.md-jobs_ttlWrap ._jp {
  font-size: var(--fontSize_pc50);
  font-weight: 500;
  letter-spacing: 0.03em;
  border-bottom: 1px solid #F18D00;
}
.md-jobs_ttlWrap ._jp span {
  font-size: var(--fontSize_pc35);
}
.md-jobs_ttlWrap ._en {
  font-family: futura, "hind", sans-serif;
  font-size: var(--fontSize_pc22);
  font-weight: 500;
  padding-top: 0.2em;
}

.md-jobs_contTtl {
  display: flex;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  font-size: var(--fontSize_pc33);
  color: #2C2C2C;
}
.md-jobs_contTtl img {
  width: 2.4em;
  margin-right: 0.6em;
  margin-top: -1em;
}
.md-jobs_contTtl._center {
  margin: 0 auto;
}
@media only screen and (min-width: 1025px) {
  .md-jobs_contTtl._centerPc {
    margin: 0 auto;
  }
}

.md-jobs_bottomSlide {
  margin-top: 2.9vw;
}

.md-jobs_charmWrap {
  margin-top: 5vw;
}

.md-jobs_charm {
  margin-top: 2.2vw;
}
.md-jobs_charm ._ttl {
  display: flex;
  justify-content: space-between;
  align-items: end;
  font-size: var(--fontSize_pc32);
  letter-spacing: 0.03em;
  border-bottom: 1px solid #F18D00;
  color: #2C2C2C;
}
.md-jobs_charm ._ttl span {
  font-size: 3.9vw;
  letter-spacing: 0;
  color: #F18D00;
  opacity: 0.18;
  line-height: 0.85;
  font-style: italic;
}
.md-jobs_charm ._sTxt {
  font-size: var(--fontSize_pc22);
  letter-spacing: 0.1em;
  padding-top: 1.2em;
  padding-right: 5.7vw;
}

.md-jobs_mainWrap {
  padding-top: 6.5vw;
}

.md-jobs_mainGrid {
  margin-top: 2vw;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 1.6vw;
  padding: 0 2.6vw;
  text-align: justify;
}

.md-jobs_main {
  padding: 1.6vw 2vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.3vw;
  border: 1px solid #F18D00;
}
.md-jobs_main:nth-child(1) {
  grid-area: 1/1/2/3;
}
.md-jobs_main:nth-child(2) {
  grid-area: 1/3/2/5;
}
.md-jobs_main:nth-child(3) {
  grid-area: 1/5/2/7;
}
.md-jobs_main:nth-child(4) {
  grid-area: 2/2/3/4;
}
.md-jobs_main:nth-child(5) {
  grid-area: 2/4/3/6;
}
.md-jobs_main ._pic {
  height: 7.5vw;
  width: auto;
}
.md-jobs_main ._pic img {
  height: 100%;
  width: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.md-jobs_main ._pic._scale img {
  height: 150%;
  transform: translateY(-15%);
}
.md-jobs_main ._pic._scaleS img {
  height: 120%;
  transform: translateY(-5%);
}
.md-jobs_main ._lTxt {
  font-size: var(--fontSize_pc30);
  letter-spacing: 0.03em;
  color: #F18D00;
  text-align: center;
}
.md-jobs_main ._sTxt {
  font-size: var(--fontSize_pc20);
  font-weight: 400;
  letter-spacing: 0.03em;
}

.md-jobs_skills {
  padding-top: 5.9vw;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.2vw;
}

.md-jobs_skillsBox {
  position: relative;
  border: 1px solid rgba(112, 112, 112, 0.3);
  border-top: none;
  padding: 3.6vw 2.2vw;
  box-shadow: 4px 4px 8px #FFE3BC;
  background-color: #FFFEFC;
}
.md-jobs_skillsBox::before, .md-jobs_skillsBox::after {
  position: absolute;
  content: "";
  display: block;
  height: 1px;
  background-color: rgba(112, 112, 112, 0.3);
  top: 0;
}
.md-jobs_skillsBox::before {
  left: 0;
  width: 4.5vw;
}
.md-jobs_skillsBox::after {
  right: 0;
  width: calc(100% - 6vw - 20em);
}
.md-jobs_skillsBox .md-jobs_contTtl {
  position: absolute;
  top: 0;
  left: 6.1vw;
  transform: translateY(-70%);
}
.md-jobs_skillsBox li {
  font-size: var(--fontSize_pc22);
  font-weight: 400;
  display: flex;
  align-items: start;
  line-height: 2.3;
  color: #2C2C2C;
}
.md-jobs_skillsBox li img {
  margin-top: 0.3lh;
  width: 1.14em;
  margin-right: 0.7em;
}

.md-jobs_imp {
  padding-top: 5.1vw;
  text-align: center;
}

@media only screen and (max-width: 1280px) {
  .md-jobs_mainGrid {
    padding: 0;
  }
}
@media only screen and (min-width: 1025px) {
  .md-jobs_contTtl.sp {
    display: none;
  }
}
@media only screen and (max-width: 1024px) {
  .md-jobs_txtWrap {
    padding-top: 5.1vw;
  }
  .md-jobs_ttlWrap ._jp {
    font-size: var(--fontSize_sp25);
    font-weight: 700;
    letter-spacing: 0.05em;
  }
  .md-jobs_ttlWrap ._jp span {
    font-size: var(--fontSize_sp18);
  }
  .md-jobs_ttlWrap ._en {
    font-size: var(--fontSize_sp12);
  }
  .md-jobs_contTtl {
    font-size: var(--fontSize_sp20);
    align-items: end;
  }
  .md-jobs_contTtl img {
    transform: translateY(10%);
  }
  .md-jobs_contTtl._pcCenter {
    margin: unset;
  }
  .md-jobs_charmWrap {
    margin-top: 15vw;
  }
  .md-jobs_charm {
    margin-top: 10vw;
  }
  .md-jobs_charm + .md-jobs_charm {
    margin-top: 13vw;
  }
  .md-jobs_charm ._ttl {
    position: relative;
    font-size: var(--fontSize_sp18);
    letter-spacing: 0.05em;
  }
  .md-jobs_charm ._ttl span {
    position: absolute;
    right: 0;
    bottom: 0;
    font-size: min(20vw, 80px);
    z-index: 0;
    font-weight: 500;
    padding-right: 0.1em;
  }
  .md-jobs_charm ._sTxt {
    font-size: var(--fontSize_sp13);
    letter-spacing: 0.05em;
    padding-top: 0.7em;
    padding-right: 0;
    color: #000;
    font-weight: 400;
  }
  .md-jobs_mainWrap {
    padding-top: 14.8vw;
  }
  .md-jobs_mainGrid {
    display: block;
    margin-top: 6.2vw;
  }
  .md-jobs_main {
    padding: 3.1vw 5.1vw;
  }
  .md-jobs_main + .md-jobs_main {
    margin-top: 2.6vw;
  }
  .md-jobs_main ._pic {
    height: 11.2vw;
  }
  .md-jobs_main ._lTxt {
    font-size: var(--fontSize_sp18);
    letter-spacing: 0.05em;
  }
  .md-jobs_main ._sTxt {
    font-size: var(--fontSize_sp13);
    letter-spacing: 0.05em;
  }
  .md-jobs_skills {
    display: block;
    padding-top: 17.9vw;
    max-width: 700px;
    margin: 0 auto;
  }
  .md-jobs_skillsBox {
    padding: 10.2vw 5.1vw 7.7vw 8.2vw;
    box-shadow: 2px 2px 4px #FFE3BC;
  }
  .md-jobs_skillsBox + .md-jobs_skillsBox {
    margin-top: 17.9vw;
  }
  .md-jobs_skillsBox li {
    font-size: var(--fontSize_sp13);
    letter-spacing: 0.05em;
  }
  .md-jobs_skillsBox .md-jobs_contTtl {
    left: 50%;
    transform: translate(-50%, -70%);
    width: -moz-max-content;
    width: max-content;
  }
  .md-jobs_skillsBox::before, .md-jobs_skillsBox::after {
    width: calc(50% - 9em);
  }
  .md-jobs_skillsBox li img {
    width: 1.5em;
    margin-right: 0.5em;
    margin-top: 0.2lh;
  }
  .md-jobs_contTtl.pc {
    display: none;
  }
  .md-jobs_imp {
    padding-top: 12vw;
  }
}
/*===============================
         md-jobs
===============================*/
.md-jobsReq_contWrap {
  padding-top: 8.75vw;
  padding-bottom: 13.125vw;
  margin: 0 2.6vw;
  background-image: linear-gradient(to bottom, rgba(241, 141, 0, 0) -20%, rgba(241, 141, 0, 0.1));
}

.md-jobsReq_txt {
  margin-top: 3.1vw;
}

.md-abt2_numTxt._job {
  align-items: start;
}
.md-abt2_numTxt._job ._txt {
  padding-top: 0.3em;
  font-size: var(--fontSize_pc30);
  letter-spacing: 0.1em;
}
.md-abt2_numTxt._job ._sTxt {
  font-size: var(--fontSize_pc20);
  font-weight: 500;
  padding-top: 0.3em;
}
.md-abt2_numTxt._job + .md-abt2_numTxt._job {
  margin-top: 1.14vw;
}

.md-jobsReq_lTxt {
  font-size: var(--fontSize_pc27);
  color: #F18D00;
  margin: 1lh 0;
}

@media only screen and (max-width: 1024px) {
  .md-jobsReq_contWrap {
    margin: 0;
    padding-top: 20.5vw;
    padding-bottom: 30.7vw;
  }
  .md-jobsReq_lTxt {
    font-size: var(--fontSize_sp18);
  }
}
@media only screen and (max-width: 768px) {
  .md-jobsReq_lTxt {
    text-align: left;
    padding-left: 5.1vw;
  }
  .md-jobsReq_lTxt span {
    display: block;
    text-align: right;
    padding-right: 5.1vw;
  }
}
/*===============================
         md-pplTop
===============================*/
.md-pplTop_link {
  display: flex;
  justify-content: end;
  gap: 1.25em;
}

/*===============================
         md-pplItv
===============================*/
.md-pplItv_txtWrap {
  position: relative;
  padding-top: 4vw;
}

.md-pplItv_openWrap .md-pplItv_post::before {
  position: absolute;
  content: "";
  display: block;
  bottom: 0;
  right: 0;
  height: 1px;
  width: calc(100% + 7.3vw);
  background-color: #F18D00;
}
.md-pplItv_openWrap.active .md-pplItv_post::before {
  opacity: 0;
}

.md-pplItv_ttl {
  margin-top: 1.2em;
  font-size: var(--fontSize_pc35);
  letter-spacing: 0.1em;
}

.md-pplItv_post {
  position: relative;
  padding-top: 1.4em;
  padding-bottom: 2em;
  font-size: var(--fontSize_pc20);
  font-weight: 400;
  color: #000;
}

.md-pplItv_hideWrap {
  padding-top: 5vw;
  padding-bottom: 6.25vw;
}

.md-pplItv_qaWrap + .md-pplItv_qaWrap {
  margin-top: 2.7vw;
}
.md-pplItv_qaWrap ._qTxt {
  position: relative;
  font-size: var(--fontSize_pc30);
  letter-spacing: 0.1em;
  font-weight: 500;
  margin-bottom: 0.8em;
}
.md-pplItv_qaWrap ._qTxt::before {
  position: absolute;
  content: "▶";
  display: block;
  font-size: var(--fontSize_pc25);
  letter-spacing: 0.1em;
  top: 0;
  line-height: 1.9;
  left: -0.7em;
  transform: translateX(-100%);
  color: #F18D00;
  opacity: 0.5;
}
.md-pplItv_qaWrap ._aTxt {
  font-size: var(--fontSize_pc22);
  letter-spacing: 0.1em;
  font-weight: 500;
}

.md-pplItv_schWrap {
  margin-top: 7vw;
}
.md-pplItv_schWrap ._ttl {
  font-size: var(--fontSize_pc22);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.2em;
}
.md-pplItv_schWrap dl {
  padding: 1.45em 0;
  display: flex;
  gap: 7.4vw;
  border-top: 1px solid #4D4D4D;
}
.md-pplItv_schWrap dl dt {
  font-size: var(--fontSize_pc23);
  letter-spacing: 0.1em;
  color: #F18D00;
  font-weight: 900;
}
.md-pplItv_schWrap dl dd {
  flex: 1;
  font-size: var(--fontSize_pc22);
  font-weight: 400;
  letter-spacing: 0.1em;
}
.md-pplItv_schWrap dl:last-child {
  border-bottom: 1px solid #4D4D4D;
}
.md-pplItv_schWrap ._lTxt {
  font-weight: 700;
  margin-bottom: 0.7em;
}

.md-pplItv_openBtn {
  position: absolute;
  bottom: 4.5vw;
  right: 1.875vw;
  width: 2.1vw;
  height: 2.1vw;
}
.md-pplItv_openBtn span {
  position: absolute;
  width: 100%;
  height: 3px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #F18D00;
}
.md-pplItv_openBtn span:last-child {
  transform: translate(-50%, -50%) rotate(90deg);
}
.md-pplItv_openBtn.active {
  bottom: 3vw;
}
.md-pplItv_openBtn.active span:last-child {
  transform: translate(-50%, -50%);
}

.md-pplItv_img._change {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

@media only screen and (min-width: 1025px) {
  .md-pplItv_img_sp {
    display: none;
  }
}
@media only screen and (max-width: 1024px) {
  .md-pplItv_txtWrap {
    padding-top: 5.1vw;
  }
  .md-pplItv_ttl {
    margin-top: 5.1vw;
    font-size: var(--fontSize_sp22);
    letter-spacing: 0.05em;
  }
  .md-pplItv_ttl span {
    display: block;
    width: -moz-fit-content;
    width: fit-content;
  }
  .md-pplItv_ttl span.n_tb {
    display: none;
  }
  .md-pplItv_post {
    padding-top: 1.4em;
    font-size: var(--fontSize_sp13);
    letter-spacing: 0.05em;
  }
  .md-pplItv_openWrap .md-pplItv_post::before {
    display: none;
  }
  .md-pplItv_hideWrap {
    padding-top: 0;
  }
  .md-pplItv_qaWrap ._qTxt {
    padding-left: 1.4em;
    font-size: var(--fontSize_sp18);
    letter-spacing: 0.05em;
    font-weight: 700;
  }
  .md-pplItv_qaWrap ._qTxt::before {
    left: 0;
    font-size: var(--fontSize_sp15);
    transform: none;
    line-height: 2.1;
  }
  .md-pplItv_qaWrap ._aTxt {
    font-size: var(--fontSize_sp13);
    font-weight: 400;
    letter-spacing: 0.05em;
    color: #000;
  }
  .md-pplItv_qaWrap + .md-pplItv_qaWrap {
    margin-top: 15.4vw;
  }
  .md-pplItv_img_sp {
    margin-top: 12.8vw;
  }
  .md-pplItv_schWrap {
    margin-top: 5.1vw;
  }
  .md-pplItv_schWrap ._ttl {
    font-size: var(--fontSize_sp12);
    letter-spacing: 0.05em;
    margin-bottom: 1.67em;
  }
  .md-pplItv_schWrap dl {
    display: block;
    padding: 5.1vw 0;
  }
  .md-pplItv_schWrap dl ._sTxt {
    font-size: var(--fontSize_sp14);
    font-weight: 500;
    letter-spacing: 0.05em;
  }
  .md-pplItv_schWrap dl dt {
    font-size: var(--fontSize_sp18);
  }
  .md-pplItv_schWrap dl:last-child {
    border-bottom: 1px solid #F18D00;
  }
  .md-pplItv_schWrap ._lTxt {
    font-size: var(--fontSize_sp18);
    letter-spacing: 0.05em;
    margin-bottom: 0.5em;
  }
  .md-pplItv_hideWrap {
    padding-bottom: 0;
  }
  .md-pplItv_openBtn {
    width: 6.4vw;
    height: 6.4vw;
    max-width: 40px;
    max-height: 40px;
    bottom: 2vw;
  }
}
/*===============================
         md-pplGlr
===============================*/
.md-pplGlr_slide {
  width: 100%;
  overflow: hidden;
  margin-top: 10px;
}
.md-pplGlr_slide ._wrap {
  display: flex;
  width: -moz-max-content;
  width: max-content;
}
.md-pplGlr_slide ._slide {
  display: flex;
  animation: scroll-left 80s infinite linear 0.5s both;
}
.md-pplGlr_slide ._pic {
  display: flex;
}
.md-pplGlr_slide picture {
  width: 23.6vw;
  margin-right: 2.6vw;
}
.md-pplGlr_slide picture img {
  -o-object-fit: contain;
     object-fit: contain;
}
.md-pplGlr_slide + .md-pplGlr_slide {
  margin-top: 1.3vw;
}
.md-pplGlr_slide._middle ._slide {
  animation: scroll-right 80s infinite linear 0.5s both;
}
.md-pplGlr_slide._top {
  position: relative;
  margin-top: 4.6vw;
}
.md-pplGlr_slide._top::before {
  position: absolute;
  content: "";
  display: block;
  width: 100%;
  height: 30%;
  top: 0;
  left: 0;
  background-image: linear-gradient(to bottom, white, rgba(255, 255, 255, 0));
  z-index: 3;
}

@keyframes scroll-right {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(0);
  }
}
@media only screen and (max-width: 1024px) {
  .md-pplGlr_slide picture {
    width: 42.3vw;
    margin-right: 4.6vw;
  }
  .md-pplGlr_slide._top {
    margin-top: 5.1vw;
  }
  .md-pplGlr_slide + .md-pplGlr_slide {
    margin-top: 2.3vw;
  }
}
/*===============================
         md-isTop
===============================*/
.md-isTop_link {
  display: grid;
  grid-template-columns: repeat(2, auto);
  grid-template-rows: repeat(2, auto);
  justify-content: end;
  -moz-column-gap: 1.7em;
       column-gap: 1.7em;
  row-gap: 0.8em;
}

/*===============================
         md-isMsg
===============================*/
.md-isMsg_txt {
  margin-top: 5vw;
  text-align: center;
  font-size: var(--fontSize_pc25);
  letter-spacing: 0.1em;
}

@media only screen and (max-width: 1024px) {
  .md-isMsg_txt {
    text-align: left;
    font-size: var(--fontSize_sp13);
    font-weight: 500;
    color: #000;
  }
}
/*===============================
         md-isLn
===============================*/
.md-isLn_grid {
  display: grid;
  grid-template-columns: repeat(3, 25.3vw);
  gap: 1.7vw;
  justify-content: center;
}

.md-isLn_gridBox {
  padding: 1.7vw 1vw 2.6vw 1vw;
  border: 1px solid #F18D00;
  text-align: center;
  margin-top: 4.2vw;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.md-isLn_gridBox .bl-lowerSec_sTxt {
  font-weight: 500;
}
.md-isLn_gridBox picture {
  width: 5.7vw;
  margin: 0 auto;
}
.md-isLn_gridBox ._ttl {
  margin-top: 6px;
  margin-bottom: 1em;
  font-size: var(--fontSize_pc32);
  letter-spacing: 0.1em;
  line-height: 1.375;
  min-height: 2lh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
}
.md-isLn_gridBox ._sTxt {
  min-height: 8lh;
}
.md-isLn_gridBox ._linkWrap {
  flex: 1;
  margin-top: 1.25vw;
  display: flex;
  align-items: end;
}

.md-isLn_link {
  margin: 0 auto;
}
.md-isLn_link img {
  transform: rotate(90deg);
}

@media only screen and (max-width: 1280px) {
  .md-isLn_grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media only screen and (max-width: 1024px) {
  .md-isLn_grid {
    grid-template-columns: 1fr;
    margin: 10.3vw auto 0 auto;
    gap: 3.8vw;
    max-width: 700px;
  }
  .md-isLn_gridBox {
    margin-top: 0;
    padding: 2vw 0 8.4vw 0;
  }
  .md-isLn_gridBox picture {
    width: auto;
    height: 14.4vw;
  }
  .md-isLn_gridBox picture img {
    height: 100%;
    width: auto;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .md-isLn_gridBox ._ttl {
    margin-top: 0.2em;
    font-size: var(--fontSize_sp18);
    letter-spacing: 0.05em;
    min-height: unset;
  }
  .md-isLn_gridBox ._sTxt {
    font-weight: 400;
  }
  .md-isLn_gridBox ._linkWrap {
    margin-top: 2.3em;
  }
}
/*===============================
         md-isPr
===============================*/
.md-isPr_bgWrap {
  position: relative;
  padding-bottom: 9.6vw;
}
.md-isPr_bgWrap::before {
  position: absolute;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(to bottom, rgba(241, 141, 0, 0), rgba(241, 141, 0, 0.1));
  top: 0;
  left: 0;
  opacity: 0.5;
}

.md-isPr_txtWrap .md-jobs_charm:first-of-type {
  margin-top: 5.7vw;
}

.md-isPr_jpTtl {
  position: relative;
  font-size: var(--fontSize_pc40);
  letter-spacing: 0.03em;
  padding-bottom: 0.4em;
  line-height: 1;
  color: #2C2C2C;
}
.md-isPr_jpTtl::before {
  position: absolute;
  content: "";
  display: block;
  height: 0.1em;
  width: 1.5em;
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  background-color: #4D4D4D;
}

.md-isPr_enTtl {
  font-family: futura, "hind", sans-serif;
  font-size: var(--fontSize_pc18);
  font-weight: 500;
  color: #F18D00;
  margin-top: 0.7em;
}

.md-isPr_subTxt {
  font-size: var(--fontSize_pc30);
  letter-spacing: 0.1em;
  font-weight: 700;
  line-height: 1.6;
  margin: 2.4vw 0 1.6vw 0;
}

.md-isPr_imgWrap {
  position: relative;
}

.md-isPr_img._change {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

.md-isPro_exTxt {
  font-size: var(--fontSize_pc35);
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-top: 6.9vw;
  width: -moz-fit-content;
  width: fit-content;
}
.md-isPro_exTxt._s {
  font-size: var(--fontSize_pc22);
  letter-spacing: 0.1em;
  font-weight: 700;
  margin-top: 1.9em;
}

.md-isPr_vic {
  position: relative;
  margin-top: 23.4vw;
}

.md-isPr_vicTtl {
  padding-top: 5.4vw;
}

.md-isPr_vicGrid {
  margin-top: 4.7vw;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3.125vw;
  padding: 0 6.4vw;
}
.md-isPr_vicGrid._3 {
  grid-template-columns: repeat(3, 1fr);
  gap: 1.56vw;
}
.md-isPr_vicGrid .bl-iconBox {
  padding-bottom: 1.7vw;
  background-color: #fff;
}
.md-isPr_vicGrid .bl-iconBox ._sTxt {
  font-weight: 700;
}
.md-isPr_vicGrid .bl-iconBox ._sTxt._noMgn {
  margin-top: 0;
}
.md-isPr_vicGrid .bl-iconBox .bl-lineTxt::before {
  z-index: 0;
}

.md-jobs_charm._is {
  margin-top: 5.6vw;
  font-weight: 500;
}
.md-jobs_charm._is ._sTxt {
  padding-right: 0;
}
.md-jobs_charm._is + .md-jobs_charm._is {
  margin-top: 4.6vw;
}

@media only screen and (max-width: 1280px) {
  .md-isPr_vicGrid {
    padding: 0 1vw;
  }
}
@media only screen and (max-width: 1024px) {
  .md-isPr_bgWrap {
    padding-bottom: 0;
  }
  .md-isPr_bgWrap::before {
    display: none;
  }
  .md-isPr_txtWrap {
    margin-top: 6.1vw;
  }
  .md-isPr_jpTtl {
    font-size: var(--fontSize_sp25);
    letter-spacing: 0.05em;
    border-bottom: 1px solid #F18D00;
  }
  .md-isPr_jpTtl::before {
    display: none;
  }
  .md-isPr_jpTtl span {
    display: block;
    font-size: 0.56em;
    margin-top: 0.5em;
  }
  .md-isPr_enTtl {
    font-size: var(--fontSize_sp12);
  }
  .md-isPr_subTxt {
    font-size: var(--fontSize_sp20);
    letter-spacing: 0.05em;
    margin: 0.9em 0;
  }
  .md-isPr_txtWrap .md-jobs_charm:first-of-type {
    margin-top: 25.6vw;
  }
  .md-jobs_charm._is {
    margin-top: 17.4vw;
  }
  .md-jobs_charm._is + .md-jobs_charm._is {
    margin-top: 11.8vw;
  }
  .md-isPr_vicGrid, .md-isPr_vicGrid._3 {
    grid-template-columns: 1fr;
    margin-top: 14vw;
    gap: 15vw;
  }
  .md-isPr_vicGrid._3 ._sTxt {
    margin-top: 1.3em;
  }
  .md-isPr_vicGrid .bl-iconBox ._sTxt {
    font-weight: 400;
  }
  .md-isPr_vicGrid .bl-iconBox {
    padding-top: 15.9vw;
    padding-bottom: 5.6vw;
  }
  .md-isPro_exTxt {
    font-size: var(--fontSize_sp25);
    letter-spacing: 0.05em;
    margin-top: 15.4vw;
  }
  .md-isPro_exTxt span {
    display: block;
  }
}
/*===============================
         md-isAbt
===============================*/
.md-isAbt_contWrap {
  position: relative;
  margin: 0 2.6vw;
  padding-top: 6.875vw;
  padding-bottom: 5.6vw;
  color: #fff;
}

.md-isAbt_enTxt {
  position: absolute;
  top: 0;
  left: 50%;
  width: 94.2%;
  transform: translate(-50%, -96%);
}

.md-isAbt_dlWrap {
  margin: 3.6vw auto 0 auto;
  width: 54.4vw;
  min-width: 600px;
  font-size: var(--fontSize_pc22);
}

.md-isAbt_link {
  display: block;
  width: 14.2vw;
}

@media only screen and (max-width: 1024px) {
  .l-inner._isAbt {
    width: 100%;
    max-width: unset;
  }
  .md-isAbt_link {
    width: unset;
  }
  .md-isAbt_enTxt {
    width: 100%;
  }
  .md-isAbt_contWrap {
    margin: 0;
    padding: 20.5vw 5.1vw;
    background: unset;
  }
  .md-isAbt_dlWrap {
    width: 100%;
    min-width: unset;
    margin-top: 12.8vw;
  }
}
/*===============================
         md-isStr
===============================*/
.md-isStr_gridWrap {
  margin-top: 7vw;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 1.6vw;
  -moz-column-gap: 1.6vw;
       column-gap: 1.6vw;
  row-gap: 5vw;
}
.md-isStr_gridWrap .bl-iconBox {
  padding-bottom: 1.2vw;
}
.md-isStr_gridWrap .bl-iconBox:nth-child(1) {
  grid-area: 1/1/2/3;
}
.md-isStr_gridWrap .bl-iconBox:nth-child(2) {
  grid-area: 1/3/2/5;
}
.md-isStr_gridWrap .bl-iconBox:nth-child(3) {
  grid-area: 1/5/2/7;
}
.md-isStr_gridWrap .bl-iconBox:nth-child(4) {
  grid-area: 2/2/3/4;
}
.md-isStr_gridWrap .bl-iconBox:nth-child(5) {
  grid-area: 2/4/3/6;
}
.md-isStr_gridWrap .bl-iconBox ._lTxt {
  min-height: 2lh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/*===============================
         md-isBtm
===============================*/
.md-isBtm_txt {
  position: relative;
  text-align: center;
  font-size: var(--fontSize_pc25);
  font-weight: 700;
  letter-spacing: 0.1em;
}
.md-isBtm_txt ._mTxt {
  font-size: var(--fontSize_pc30);
}
.md-isBtm_txt ._topTxt {
  font-size: var(--fontSize_pc35);
}

@media only screen and (max-width: 1024px) {
  .md-isBtm_txt {
    font-size: var(--fontSize_sp13);
    font-weight: 500;
    letter-spacing: 0.05em;
    color: #000000;
  }
  .md-isBtm_txt ._topTxt {
    color: #4D4D4D;
    font-size: var(--fontSize_sp18);
  }
  .md-isBtm_txt ._mTxt {
    font-size: var(--fontSize_sp18);
    font-weight: 700;
    letter-spacing: 0.05em;
    line-height: 1.5;
  }
}
/*===============================
         md-cltTop
===============================*/
.md-cltTop_link {
  display: grid;
  grid-template-columns: repeat(4, auto);
  row-gap: 1.25em;
}

/*===============================
         md-cltTr
===============================*/
.md-cltTr_bg {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 50%;
  height: 100%;
  width: 89.6%;
  transform: translate(-50%, 0);
  background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(255, 232, 199, 0.3));
}

.md-cltTr_imgTop {
  width: 79.375vw;
  margin: 5vw auto 0 auto;
}

.md-cltTr_img {
  position: absolute;
}
.md-cltTr_img._leftTop {
  width: 15.1vw;
  top: 7vw;
  right: 7.8vw;
}
.md-cltTr_img._leftBottom {
  width: 21.4vw;
  top: 27.2vw;
  right: 1.5vw;
}
.md-cltTr_img._right {
  width: 26.4vw;
  left: 0;
  top: 13.8vw;
}

.md-cltTr_boxWrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(4, 1fr);
  -moz-column-gap: 4.1vw;
       column-gap: 4.1vw;
  row-gap: 1vw;
  margin-bottom: 4.1vw;
  margin-top: 4.6vw;
}

.md-cltTr_box {
  padding: 1.4vw 1.25vw;
  border: 1px solid #F18D00;
  display: grid;
  grid-template-columns: 4.5vw 1fr;
  gap: 1.8vw;
}
.md-cltTr_box ._imgWrap._s {
  width: 75%;
  margin: 0 auto;
}
.md-cltTr_box ._lTxt {
  font-size: var(--fontSize_pc30);
  letter-spacing: 0.03em;
  line-height: 2;
  margin-bottom: 0.4em;
}
.md-cltTr_box ._sTxt {
  font-size: var(--fontSize_pc22);
  font-weight: 400;
}

.md-cltTr_gridWrap {
  margin-top: 6.9vw;
}

.md-cltTr_gridCont ._ttlJp {
  font-size: var(--fontSize_pc32);
  font-weight: 500;
  letter-spacing: 0.03em;
  border-bottom: 1px solid #F18D00;
}
.md-cltTr_gridCont ._ttlEn {
  font-size: var(--fontSize_pc18);
  font-family: futura, "hind", sans-serif;
  font-weight: 500;
  margin-top: 0.6em;
}
.md-cltTr_gridCont + .md-cltTr_gridCont {
  margin-top: 8.9vw;
}

picture + .md-cltTr_gridCont {
  margin-top: 8.9vw;
}

.md-cltTr_gridImg._change {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

.md-cltTr_numTxt {
  margin-top: 1.9vw;
  display: flex;
  gap: 1em;
  align-items: end;
}
.md-cltTr_numTxt ._numTxt {
  display: flex;
  align-items: center;
  gap: 2.1vw;
}
.md-cltTr_numTxt ._numTxt._numTxt {
  margin-top: 0.8em;
}
.md-cltTr_numTxt ._num {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--fontSize_pc21);
  width: 3.2em;
  height: 3.2em;
  border-radius: 50%;
  border: 1px solid #F18D00;
}
.md-cltTr_numTxt p {
  line-height: calc(var(--fontSize_pc21) * 3.2);
}

.md-cltTr_numBox {
  padding: 1.6vw 0;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.8vw;
  border-bottom: 1px solid #4D4D4D;
}
.md-cltTr_numBox:first-of-type {
  margin-top: 3.6vw;
  border-top: 1px solid #4D4D4D;
}
.md-cltTr_numBox ._num {
  font-size: var(--fontSize_pc55);
  font-family: futura, "hind", sans-serif;
  font-weight: 500;
  font-style: italic;
  line-height: 1.2;
  color: #F18D00;
  opacity: 0.37;
}
.md-cltTr_numBox ._lTxt {
  font-size: var(--fontSize_pc30);
  letter-spacing: 0.03em;
  line-height: 2;
  margin-bottom: 0.5em;
  padding-top: calc(var(--fontSize_pc55) * 0.12);
}
.md-cltTr_numBox ._sTxt {
  font-size: var(--fontSize_pc22);
  font-weight: 400;
}

@media only screen and (max-width: 1280px) {
  .md-cltTr_img._right {
    width: 24vw;
  }
}
@media only screen and (max-width: 1024px) {
  .md-cltTr_imgTop {
    display: none;
  }
  .md-cltTr_bg {
    width: 100%;
  }
  .md-cltTr_img {
    position: relative;
  }
  .md-cltTr_img._right {
    width: 54.8vw;
    left: auto;
    top: auto;
    z-index: 2;
    margin-top: 10.25vw;
  }
  .md-cltTr_img._leftTop {
    top: unset;
    right: unset;
    width: 100%;
    margin-bottom: 6.1vw;
  }
  .md-cltTr_img._leftBottom {
    width: 54.8vw;
    top: auto;
    right: auto;
    margin-left: auto;
    margin-top: -5.1vw;
    z-index: 1;
  }
  .md-cltTr_boxWrap {
    margin-top: 10.3vw;
    margin-bottom: 7.6vw;
    display: block;
  }
  .md-cltTr_box {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2.6vw 0 7.6vw 0;
  }
  .md-cltTr_box + .md-cltTr_box {
    margin-top: 2.6vw;
  }
  .md-cltTr_box ._imgWrap, .md-cltTr_box ._imgWrap._s {
    height: 12.8vw;
    width: auto;
  }
  .md-cltTr_box ._imgWrap img, .md-cltTr_box ._imgWrap._s img {
    height: 100%;
    width: auto;
  }
  .md-cltTr_box ._lTxt {
    font-size: var(--fontSize_sp18);
    letter-spacing: 0.05em;
    margin-bottom: 0.56em;
  }
  .md-cltTr_box ._sTxt {
    font-size: var(--fontSize_sp13);
    letter-spacing: 0.05em;
  }
  .md-cltTr_gridWrap {
    margin-top: 31.5vw;
  }
  .md-cltTr_gridTxt {
    margin-top: 6.1vw;
  }
  .md-cltTr_gridCont ._ttlJp {
    font-size: var(--fontSize_sp25);
    font-weight: 700;
    letter-spacing: 0.05em;
  }
  .md-cltTr_gridCont ._ttlEn {
    font-size: var(--fontSize_sp12);
  }
  .md-cltTr_numTxt ._num {
    font-size: var(--fontSize_sp15);
    font-weight: 500;
    width: 3.3em;
    height: 3.3em;
  }
  .md-cltTr_numTxt p {
    line-height: calc(var(--fontSize_sp15) * 3.3);
  }
  .md-cltTr_gridImg_sp {
    margin-top: 15.4vw;
  }
  .md-cltTr_numBox:first-of-type {
    margin-top: 7.7vw;
    border-top: 1px solid rgba(77, 77, 77, 0.5);
  }
  .md-cltTr_numBox {
    border-bottom: 1px solid rgba(77, 77, 77, 0.5);
    gap: 5.1vw;
    padding: 3.8vw 0;
  }
  .md-cltTr_numBox ._num {
    font-size: var(--fontSize_sp35);
  }
  .md-cltTr_numBox ._lTxt {
    font-size: var(--fontSize_sp18);
    letter-spacing: 0.05em;
    padding-top: calc(var(--fontSize_sp35) * 0.12);
  }
  .md-cltTr_numBox ._lTxt span {
    font-size: var(--fontSize_sp12);
  }
  .md-cltTr_numBox ._sTxt {
    font-size: var(--fontSize_sp13);
    letter-spacing: 0.05em;
  }
  .md-cltTr_numBox ul li {
    display: flex;
  }
  .md-cltTr_numBox ul li span:last-child {
    flex: 1;
  }
}
/*===============================
         md-cltMnt
===============================*/
.md-cltMnt_contWrap {
  display: grid;
  gap: 4.1vw;
  grid-template-columns: repeat(2, 1fr);
}
.md-cltMnt_contWrap .md-cltTr_gridCont ._ttlJp._mnt {
  font-weight: 700;
  font-size: var(--fontSize_pc35);
}
.md-cltMnt_contWrap .md-cltTr_gridCont ._ttlJp._mnt._margin {
  margin-top: 8.4vw;
}
.md-cltMnt_contWrap .md-cltTr_gridCont + .md-cltTr_gridCont {
  margin-top: 0;
}

.bl-lowerSec_subTxt._mnt {
  margin-bottom: 0.7em;
  font-weight: 500;
}

.md-cltMnt_mTxt {
  position: relative;
  font-size: var(--fontSize_pc30);
  letter-spacing: 0.03em;
  line-height: 2;
  margin-bottom: 0.5em;
  margin-top: 2.6vw;
}
.md-cltMnt_mTxt::before {
  position: absolute;
  content: "";
  display: block;
  width: 1.5em;
  height: 1.5em;
  background-color: #F18D00;
  opacity: 0.37;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
}

.md-cltMnt_mTxt, .md-cltMnt_sTxt {
  padding-left: 3.1vw;
}

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

@media only screen and (max-width: 1024px) {
  .md-cltMnt_contWrap {
    display: block;
  }
  .md-cltMnt_contWrap .md-cltTr_gridCont ._ttlJp._mnt {
    font-size: var(--fontSize_sp25);
  }
  .md-cltMnt_mTxt, .md-cltMnt_sTxt {
    padding-left: 1.1em;
  }
  .md-cltMnt_mTxt {
    font-size: var(--fontSize_sp18);
    letter-spacing: 0.05em;
    margin-top: 7.7vw;
    margin-bottom: 2.6vw;
  }
  .md-cltMnt_mTxt::before {
    width: 1em;
    height: 1em;
  }
  .md-cltMnt_sTxt {
    font-size: var(--fontSize_sp12);
    letter-spacing: 0.05em;
    color: #000000;
  }
  .md-cltMnt_sTxt._mgn {
    margin-bottom: 7.7vw;
  }
  .bl-lowerSec_subTxt._mnt {
    font-weight: 700;
    letter-spacing: 0.05em;
  }
  .md-cltMnt_contWrap .md-cltTr_gridCont + .md-cltTr_gridCont {
    margin-top: 15.4vw;
  }
  .md-cltMnt_contWrap .md-cltTr_gridCont ._ttlJp._mnt._margin {
    margin-top: 15.4vw;
  }
}
/*===============================
         md-cltBnf
===============================*/
.md-cltBnf_contWrap {
  padding-top: 9.6vw;
  padding-bottom: 4.6vw;
  background-image: linear-gradient(to bottom, rgba(241, 141, 0, 0.05), rgba(241, 141, 0, 0.1));
}

.md-cltBnf_boxWrap {
  margin-top: 4.4vw;
}
.md-cltBnf_boxWrap ._ttl {
  font-size: var(--fontSize_pc32);
  letter-spacing: 0.1em;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}

.md-cltBnf_gridWrap {
  margin-top: 2.1vw;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.3vw;
  padding: 0 10.2vw;
}

.md-cltBnf_box {
  border-radius: 10px;
  background-color: #fff;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  aspect-ratio: 272/236;
}
.md-cltBnf_box ._imgWrap {
  width: var(--imgWidth);
  margin-bottom: 12px;
  --imgWidth: 4.9vw;
}
.md-cltBnf_box ._imgWrap._l {
  width: calc(var(--imgWidth) * 1.2);
}
.md-cltBnf_box ._txtWrap {
  font-size: var(--fontSize_pc25);
  font-weight: 700;
  min-height: 2lh;
  line-height: 1.36;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.md-cltBnf_box ._sTxt {
  font-size: var(--fontSize_pc18);
  font-weight: 500;
}

@media only screen and (max-width: 1280px) {
  .md-cltBnf_box ._sTxt {
    font-size: 12px;
  }
  .md-cltBnf_gridWrap {
    padding: 0 5.1vw;
  }
}
@media only screen and (max-width: 1024px) {
  .md-cltBnf_contWrap {
    position: relative;
    background-image: unset;
    padding-bottom: 30.7vw;
  }
  .md-cltBnf_boxWrap {
    margin-top: 7.7vw;
  }
  .md-cltBnf_boxWrap ._ttl {
    margin: unset;
  }
  .md-cltBnf_gridWrap {
    margin-top: 5.1vw;
    padding: 0;
    grid-template-columns: repeat(2, 1fr);
    -moz-column-gap: 5.1vw;
         column-gap: 5.1vw;
    row-gap: 3.6vw;
  }
  .md-cltBnf_box {
    border-radius: 3px;
    aspect-ratio: 165/120;
  }
  .md-cltBnf_box ._imgWrap {
    width: auto;
    height: 12.8vw;
    margin-bottom: 1vw;
    max-height: 100px;
  }
  .md-cltBnf_box ._imgWrap img {
    display: block;
    height: 100%;
    width: auto;
  }
  .md-cltBnf_box ._imgWrap._l {
    width: auto;
  }
  .md-cltBnf_box ._imgWrap._l img {
    height: 110%;
  }
  .md-cltBnf_box ._txtWrap {
    font-size: var(--fontSize_sp14);
  }
  .md-cltBnf_box ._sTxt {
    font-size: 11px;
  }
}
/*===============================
         md-cltNew
===============================*/
.md-cltNew_swiper {
  margin-top: 2.9vw;
}
.md-cltNew_swiper .swiper-wrapper {
  align-items: end;
}
.md-cltNew_swiper .swiper-slide img {
  transform: scale(0.728);
  transform-origin: bottom;
  transition: 1s;
  border: 17px solid #383838;
}
.md-cltNew_swiper .swiper-slide.swiper-slide-active img {
  transform: scale(1);
}

._tentative {
  margin-top: 1.3em;
  font-size: var(--fontSize_pc18);
  letter-spacing: 0.1em;
  text-align: right;
}

.md-cltNew_nav {
  position: absolute;
  top: 10vw;
  left: 50%;
  width: 2.2vw;
  min-width: 30px;
  height: 2.2vw;
  min-height: 30px;
  z-index: 2;
  cursor: pointer;
}
.md-cltNew_nav img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.md-cltNew_nav._prev {
  transform: translateX(calc(-100% - 17.8vw)) rotate(180deg);
}
.md-cltNew_nav._next {
  transform: translateX(17.8vw);
}
.md-cltNew_nav ._hover {
  opacity: 0;
}
@media only screen and (min-width: 1025px) {
  .md-cltNew_nav img {
    transition: 0.2s;
  }
  .md-cltNew_nav:hover ._normal {
    opacity: 0;
  }
  .md-cltNew_nav:hover ._hover {
    opacity: 1;
  }
}

.md-cltNew_boxWrap {
  margin-top: 7.9vw;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 5.8vw;
}
.md-cltNew_boxWrap .bl-iconBox ._sTxt {
  font-weight: 700;
}

.bl-iconBox._cltNew {
  padding-bottom: 1.8vw;
}

@media only screen and (max-width: 1024px) {
  .md-cltNew_swiper {
    margin-top: 10.3vw;
  }
  .md-cltNew_swiper .swiper-slide img {
    border: 8px solid #383838;
  }
  .md-cltNew_nav {
    width: 9vw;
    height: 9vw;
    top: 17vw;
  }
  .md-cltNew_nav._next {
    transform: translateX(33.5vw);
  }
  .md-cltNew_nav._prev {
    transform: translateX(calc(-100% - 33.5vw)) rotate(180deg);
  }
  ._tentative {
    font-size: var(--fontSize_sp12);
  }
  .md-cltNew_boxWrap {
    margin-top: 21vw;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, auto);
    gap: 14vw;
  }
  .md-cltNew_boxWrap .bl-iconBox ._sTxt {
    font-weight: 400;
  }
  .bl-iconBox._cltNew {
    padding-bottom: 5.1vw;
  }
}
/*===============================
         md-cltDt
===============================*/
.md-cltDt_subTxt {
  margin-top: 1.4em;
}

.md-cltDt_boxWrap {
  margin-top: 4.4vw;
  padding: 0 3.1vw;
}
.md-cltDt_boxWrap ._ttlEn {
  font-family: futura, "hind", sans-serif;
  letter-spacing: -0.05em;
  font-size: var(--fontSize_pc22);
}
.md-cltDt_boxWrap ._ttlJp {
  font-size: var(--fontSize_pc35);
  letter-spacing: 0.025em;
  font-weight: 700;
}

.md-cltDt_gridWrap {
  margin-top: 1vw;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  -moz-column-gap: 3.6vw;
       column-gap: 3.6vw;
  row-gap: 1.8vw;
}

.md-cltDt_box {
  background-color: #fff;
  padding: 1.8vw 1.6vw 0 1.6vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 3px;
  box-shadow: 5px 5px 9px rgba(255, 255, 255, 0.36);
  aspect-ratio: 454/290;
}
.md-cltDt_box ._ttlWrap {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #4D4D4D;
  font-size: var(--fontSize_pc30);
  padding-bottom: 0.5em;
}
.md-cltDt_box ._ttlWrap ._txt {
  letter-spacing: 0.1em;
  line-height: 1.6;
}
.md-cltDt_box ._ttlWrap ._txt ._s {
  font-size: 0.7em;
}
.md-cltDt_box ._ttlWrap ._icon {
  width: auto;
  height: 1.9em;
}
.md-cltDt_box ._sTxt {
  letter-spacing: 0.05em;
  line-height: 1.4;
  text-align: center;
  margin-top: 0.8em;
}
.md-cltDt_box._corp {
  aspect-ratio: 454/310;
}

.md-cltDt_data {
  margin: 0.8vw 0;
}
.md-cltDt_data .cl-orange {
  font-size: var(--fontSize_pc90);
  font-family: futura, "hind", sans-serif;
  font-weight: 500;
  line-height: 1;
}
.md-cltDt_data ._unit {
  font-size: var(--fontSize_pc30);
  letter-spacing: 0.1em;
  padding: 0 0.2em;
}

.md-cltDt_bottomTxt {
  text-align: right;
  font-size: var(--fontSize_pc20);
  letter-spacing: 0.1em;
}

@media only screen and (max-width: 1024px) {
  .md-cltDt_contWrap {
    padding: 10.2vw 5.1vw 25.6vw 5.1vw;
    background-image: linear-gradient(to bottom, rgba(241, 141, 0, 0.02), rgba(241, 141, 0, 0.1));
  }
  .md-cltDt_boxWrap {
    margin-top: 14.8vw;
    padding: 0;
  }
  .md-cltDt_gridWrap {
    grid-template-columns: 1fr;
    row-gap: 3.3vw;
    margin-top: 3.8vw;
  }
  .md-cltDt_box._corp, .md-cltDt_box {
    aspect-ratio: 310/120;
    padding: 3.6vw 4.6vw;
  }
  .md-cltDt_box ._ttlWrap {
    font-size: var(--fontSize_sp18);
    letter-spacing: 0.03em;
    padding-bottom: 0.27em;
  }
  .md-cltDt_box ._ttlWrap ._icon {
    height: 2.2em;
  }
  .md-cltDt_data .cl-orange {
    font-size: var(--fontSize_sp58);
  }
  .md-cltDt_data {
    line-height: 1.5;
    margin: 0;
    display: flex;
    align-items: end;
    justify-content: end;
    flex: 1;
    padding-bottom: 1em;
  }
  .md-cltDt_box ._sTxt {
    margin-top: 0;
    font-size: 12px;
    font-weight: 500;
  }
  .md-cltDt_data ._unit {
    font-size: var(--fontSize_sp18);
    letter-spacing: 0.05em;
  }
  .md-cltDt_box ._ttlWrap ._txt ._s {
    font-size: inherit;
  }
  .md-cltDt_bottomTxt {
    margin-top: 1em;
    font-size: var(--fontSize_sp13);
    letter-spacing: 0.03em;
  }
}
@media only screen and (max-width: 768px) {
  .md-cltDt_box._corp, .md-cltDt_box {
    aspect-ratio: 310/184;
    padding: 3.6vw 4.6vw;
  }
}
/*===============================
         md-cltGl
===============================*/
.md-cltGl_tabWrap {
  position: relative;
  margin-top: 5.8vw;
  padding-bottom: 6.7vw;
}

.md-cltGl_bg {
  position: absolute;
  inset: 0;
  background: url(../images/culture/cltGid_bg.jpg) center/cover no-repeat;
  background-attachment: fixed;
  z-index: -2;
}
.md-cltGl_bg::before {
  position: absolute;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #000000;
  opacity: 0.8;
}

.recruit-inner {
  position: relative;
  z-index: 1;
}

.md-cltGl_panel, .js-content {
  display: none;
}
.md-cltGl_panel.is-active, .js-content.is-active {
  display: block;
}

.md-cltGl_tab {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: end;
}
.md-cltGl_tab button {
  position: relative;
  font-size: var(--fontSize_pc35);
  height: 8.8vw;
  color: #fff;
}
.md-cltGl_tab button span {
  position: relative;
  opacity: 0.5;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  transition: 0.2s;
}
.md-cltGl_tab button span::before {
  position: absolute;
  content: "";
  display: block;
  border: 3px solid #727272;
  width: calc(100% - 2.1vw);
  height: calc(100% - 4.2vw);
}
.md-cltGl_tab button::after {
  position: absolute;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: #898989;
  top: 0;
  left: 0;
  z-index: -1;
  transition: 0.2s;
}
.md-cltGl_tab button.is-active span {
  opacity: 1;
}
.md-cltGl_tab button.is-active span::before {
  border: 3px solid #fff;
}
.md-cltGl_tab button.is-active::after {
  opacity: 0;
}

.md-cltGl_subTab {
  display: grid;
  padding-top: 7.2vw;
  -moz-column-gap: 3.6vw;
       column-gap: 3.6vw;
  justify-content: center;
}
.md-cltGl_subTab._new {
  grid-template-columns: repeat(4, max-content);
  grid-template-rows: repeat(2, 1fr);
  row-gap: 2.6vw;
}
.md-cltGl_subTab._career {
  grid-template-columns: repeat(3, auto);
}
.md-cltGl_subTab button {
  font-size: var(--fontSize_pc21);
  font-weight: 500;
  min-width: 15em;
  padding: 0 1.6em;
  color: #fff;
  background-color: rgba(255, 255, 255, 0.6);
  border: 2px solid #F18D00;
  line-height: 2.1;
  text-align: center;
  border-radius: 0.5lh;
  transition: 0.2s;
}
.md-cltGl_subTab button span {
  font-size: var(--fontSize_pc18);
}
.md-cltGl_subTab button.is-active {
  background-color: #fff;
  color: #4D4D4D;
}
@media only screen and (min-width: 1025px) {
  .md-cltGl_subTab button:not(.is-active):hover {
    opacity: 0.6;
  }
}

.md-cltGl_contWrap {
  padding-top: 6.25vw;
  width: 55vw;
  min-width: 700px;
  margin: 0 auto;
  color: #fff;
  font-size: var(--fontSize_pc22);
}

.md-cltGl_linkWrap {
  display: flex;
  gap: 2.3vw;
  margin-top: 1.5lh;
}

@media only screen and (max-width: 1280px) {
  .md-cltGl_subTab._new {
    grid-template-columns: repeat(3, auto);
  }
}
@media only screen and (min-width: 1025px) {
  .md-cltGl_panel .selectWrap {
    display: none;
  }
}
@media only screen and (max-width: 1024px) {
  .l-inner.md-cltGl_inner {
    width: 100%;
  }
  .md-cltGl_tab button {
    height: 21vw;
  }
  .md-cltGl_tab button span::before {
    width: calc(100% - 10.2vw);
    height: calc(100% - 7vw);
    border: 1px solid #727272;
  }
  .md-cltGl_tab button.is-active span::before {
    border: 1px solid #fff;
  }
  .md-cltGl_subTab {
    display: none;
  }
  .md-cltGl_panel {
    padding: 9.7vw 5.1vw 25.6vw 5.1vw;
  }
  .md-cltGl_contWrap {
    width: 100%;
    min-width: unset;
  }
  .md-cltGl_selectTxt {
    font-size: var(--fontSize_sp12);
    letter-spacing: 0.05em;
    font-weight: 500;
    margin-bottom: 0.2em;
    color: #fff;
  }
  select.md-cltGl_subTab_sp {
    width: 18;
  }
  .md-cltGl_linkWrap {
    gap: 6.6vw;
  }
}
/*===============================
         md-etyTop
===============================*/
.md-etyTop_link {
  display: flex;
  justify-content: end;
  gap: 1.25em;
}

.md-etyQa_boxWrap {
  margin-top: 4.2vw;
  width: 75.5vw;
  margin: 0 auto;
}
.md-etyQa_boxWrap + .md-etyQa_boxWrap {
  margin-top: 3.125vw;
}
.md-etyQa_boxWrap._first {
  margin-top: 4.2vw;
}

.md-etyQa_qTxt, .md-etyQa_aTxt {
  padding: 0 2.6vw;
  display: grid;
  gap: 2.2vw;
}
.md-etyQa_qTxt span, .md-etyQa_aTxt span {
  font-size: var(--fontSize_pc60);
  font-weight: 500;
}
.md-etyQa_qTxt a, .md-etyQa_aTxt a {
  color: #2C2FAE;
  border-bottom: 1px solid #2C2FAE;
}
.md-etyQa_qTxt p, .md-etyQa_aTxt p {
  letter-spacing: 0.03em;
}

.md-etyQa_qTxt {
  align-items: center;
  grid-template-columns: auto 1fr auto;
  border: 1px solid #F18D00;
  border-radius: 3px;
  background-color: #fff;
}
.md-etyQa_qTxt p {
  font-size: var(--fontSize_pc25);
  color: #1C1C1C;
}
.md-etyQa_qTxt span {
  color: #F18D00;
  line-height: 1.5;
  transform: translateY(-0.15em);
}

.md-etyQa_aTxt {
  grid-template-columns: auto 1fr;
}
.md-etyQa_aTxt p {
  padding-top: calc(var(--fontSize_pc60) * 0.5);
  font-weight: 500;
  line-height: 2;
  font-size: var(--fontSize_pc20);
}

.md-etyQa_open {
  width: 1.5vw;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
}
.md-etyQa_open img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  grid-column: 1/2;
  grid-row: 1/2;
  transition: 0.3s;
}
.md-etyQa_open ._close {
  opacity: 0;
}
.md-etyQa_open.is-active ._close {
  opacity: 1;
}
.md-etyQa_open.is-active ._open {
  opacity: 0;
}

@media only screen and (max-width: 1024px) {
  .md-etyQa_boxWrap._first {
    margin-top: 11.3vw;
  }
  .md-etyQa_boxWrap {
    width: 100%;
  }
  .md-etyQa_qTxt, .md-etyQa_aTxt {
    padding: 0 0.7em;
    gap: 5.1vw;
  }
  .md-etyQa_qTxt span, .md-etyQa_aTxt span {
    font-size: var(--fontSize_sp30);
    transform: none;
  }
  .md-etyQa_qTxt {
    align-items: stretch;
  }
  .md-etyQa_qTxt p {
    font-size: var(--fontSize_sp14);
    padding: 0.8em 0;
    color: #2E2E2E;
  }
  .md-etyQa_aTxt p {
    font-size: var(--fontSize_sp12);
    font-weight: 400;
    line-height: 1.5;
    padding-top: calc(var(--fontSize_sp30) * 0.5);
  }
  .md-etyQa_open {
    width: 5.1vw;
    max-width: 30px;
    align-items: center;
  }
  .md-etyQa_boxWrap + .md-etyQa_boxWrap {
    margin-top: 7.6vw;
  }
}
/*===============================
         md-etyForm
===============================*/
.md-etyForm_contWrap {
  position: relative;
  padding: 0 3.6vw 10.2vw 3.6vw;
}
.md-etyForm_contWrap::before {
  position: absolute;
  content: "";
  display: block;
  width: 100%;
  height: calc(100% + 9vw);
  bottom: 0;
  left: 0;
  background-image: linear-gradient(to bottom, rgba(241, 141, 0, 0), rgba(241, 141, 0, 0.1));
  z-index: -1;
}
.md-etyForm_contWrap._confirm::before {
  display: none;
}

.md-etyForm_subTxt {
  font-size: var(--fontSize_pc25);
  font-weight: 500;
  letter-spacing: 0.03em;
  margin: 4.7vw 0;
}

.md-contactForm._hide {
  margin-top: 2.3vw;
}
.md-contactForm._confirm {
  margin-top: 5.2vw;
}
.md-contactForm._confirm dl dd {
  padding-top: 0.7em;
}
.md-contactForm._confirm #policy {
  margin-top: 2.3vw;
}
.md-contactForm dl {
  display: grid;
  grid-template-columns: 10em 1fr;
  gap: 9vw;
  font-size: var(--fontSize_pc22);
  letter-spacing: 0.03em;
}
.md-contactForm dl + dl {
  margin-top: 2.3vw;
}
.md-contactForm dl dt {
  text-align: right;
  padding-top: 0.7em;
}
.md-contactForm dl dt.required {
  position: relative;
}
.md-contactForm dl dt.required::before {
  position: absolute;
  content: "必須";
  display: block;
  right: -3.9vw;
  top: var(--fontSize_pc22);
  background-color: #F18D00;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  padding: 0 1em;
  line-height: 1.7;
  border-radius: 5px;
  transform: translateX(100%);
}
.md-contactForm dl dd {
  font-weight: 400;
}
.md-contactForm .radio {
  padding-top: 0.7em;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  row-gap: 0.8em;
}
.md-contactForm .radio span {
  display: block;
}
.md-contactForm .wpcf7-radio {
  padding-top: 0.7em;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  row-gap: 0.8em;
}
.md-contactForm .wpcf7-list-item {
  margin: 0;
}
.md-contactForm ._address {
  display: grid;
  grid-template-columns: 10em 10em 1fr;
  grid-template-rows: 1fr;
  -moz-column-gap: 15px;
       column-gap: 15px;
  row-gap: 1em;
}
.md-contactForm ._address span:last-child {
  grid-row: 2/3;
  grid-column: 1/4;
}
.md-contactForm ._birth {
  display: flex;
  align-items: end;
}
.md-contactForm ._birth ._year {
  width: 6em;
}
.md-contactForm ._birth ._month, .md-contactForm ._birth ._date {
  width: 4.5em;
}
.md-contactForm ._birth span:nth-child(2n) {
  margin-left: 0.7em;
  margin-right: 1.7em;
}
.md-contactForm ._method span {
  display: block;
}
.md-contactForm ._method span + span {
  margin-top: 1.4em;
}

.md-contact_policyWrap {
  height: 19.3vw;
  padding: 1.6vw 1.8vw;
  background-color: #fff;
  min-height: 200px;
  border: 1px solid #F18D00;
}
.md-contact_policyWrap p {
  font-size: var(--fontSize_pc18);
  font-weight: 500;
  letter-spacing: 0.03em;
}
.md-contact_policyWrap ._scrollWrap {
  height: 100%;
  overflow-y: scroll;
  padding-right: 30px;
}
.md-contact_policyWrap ._scrollWrap::-webkit-scrollbar {
  width: 16px;
}
.md-contact_policyWrap ._scrollWrap::-webkit-scrollbar-track {
  background: #fff;
  border: 1px solid #707070;
}
.md-contact_policyWrap ._scrollWrap::-webkit-scrollbar-thumb {
  background: #F18D00;
}
.md-contact_policyWrap ._scrollWrap::-webkit-scrollbar-thumb:hover {
  opacity: 0.7;
}

.md-contact_policyCheck {
  margin-top: 4.6vw;
  font-size: var(--fontSize_pc22);
  text-align: center;
}
.md-contact_policyCheck label {
  justify-content: center;
}

.md-contact_sendBtn.bl-linkBtn {
  margin: 4.1vw auto 0 auto;
  padding-left: 4em;
}

@media only screen and (max-width: 1280px) {
  .md-contactForm dl dt.required::before {
    right: -1.5vw;
    font-size: 13px;
  }
}
@media only screen and (max-width: 1024px) {
  .md-etyForm_contWrap {
    padding: 0;
  }
  .md-etyForm_contWrap::before {
    display: none;
  }
  .md-etyForm_subTxt {
    font-size: var(--fontSize_sp13);
    letter-spacing: 0.05em;
    color: #000000;
  }
  .md-contactForm {
    margin-top: 15.4vw;
  }
  .md-contactForm._hide {
    margin-top: 8.9vw;
  }
  .md-contactForm dl {
    display: block;
    font-size: var(--fontSize_sp14);
  }
  .md-contactForm dl dt {
    text-align: left;
    width: -moz-fit-content;
    width: fit-content;
    padding-top: 0;
    margin-bottom: 0.7em;
  }
  .md-contactForm .radio, .md-contactForm .wpcf7-radio {
    display: block;
  }
  .md-contactForm .radio span + span, .md-contactForm .wpcf7-radio span + span {
    margin-top: 0.7em;
  }
  .md-contactForm .wpcf7-list-item {
    display: block;
  }
  .md-contactForm dl + dl {
    margin-top: 8.9vw;
  }
  .md-contactForm dl dt.required::before {
    font-size: 12px;
    width: -moz-max-content;
    width: max-content;
    top: 50%;
    right: -1.1em;
    transform: translate(100%, -50%);
  }
  .md-contactForm ._birth span:nth-child(2n) {
    margin-left: 0.5em;
    margin-right: 1em;
  }
  .md-contact_policyWrap {
    height: 72vw;
    padding: 3.6vw 1.3vw 3.6vw 5.1vw;
    font-size: var(--fontSize_sp12);
    font-weight: 400;
    color: #2E2E2E;
  }
  .md-contact_policyWrap ._scrollWrap {
    padding-right: 1em;
  }
  .md-contact_policyWrap ._scrollWrap::-webkit-scrollbar {
    width: 10px;
  }
  .md-contact_policyCheck {
    margin-top: 8.9vw;
    font-size: var(--fontSize_sp13);
    color: #2E2E2E;
    letter-spacing: 0.03em;
  }
  .md-contact_sendBtn.bl-linkBtn {
    margin-top: 10.3vw;
    color: #4D4D4D;
  }
  .md-contactForm._confirm {
    margin-top: 15.4vw;
  }
  .md-contactForm._confirm dl dd {
    padding-top: 0;
  }
  .md-contactForm._confirm #policy {
    margin-top: 8.9vw;
  }
}
/*===============================
         md-etyForm
===============================*/
.md-thx_btn {
  margin: 0 auto;
}

/*===============================
         md-news
===============================*/
.md-news_list ._imgWrap {
  aspect-ratio: 479/328;
}
.md-news_list ._imgWrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.md-news_list ._imgWrap._lower {
  border: 1px solid #707070;
}

.md-news_listTtlWrap {
  padding-top: 22px;
  display: grid;
  grid-template-columns: auto 1fr;
  -moz-column-gap: 1.2em;
       column-gap: 1.2em;
  row-gap: 1.1em;
}
.md-news_listTtlWrap ._date {
  font-family: futura, "hind", sans-serif;
  font-weight: 700;
}
.md-news_listTtlWrap ._cat {
  font-weight: 400;
  line-height: 1.5;
  padding: 0 0.8em;
  background-color: #F18D00;
  color: #fff;
  width: -moz-fit-content;
  width: fit-content;
}
.md-news_listTtlWrap ._ttl {
  font-size: var(--fontSize_pc20);
  font-weight: 500;
  letter-spacing: 0.03em;
  grid-column: 1/3;
  line-height: 1.5;
}

.md-news_catWrap ._cat {
  font-size: var(--fontSize_pc22);
  letter-spacing: 0.08em;
  font-family: futura, "hind", sans-serif;
  text-transform: uppercase;
}

.md-topNews_gridWrap._lower {
  margin-top: 5.7vw;
  row-gap: 6.25vw;
}

.md-news_page {
  padding-top: 10.5vw;
  font-size: var(--fontSize_pc22);
  font-family: futura, "hind", sans-serif;
  line-height: 2.5;
}
.md-news_page .wp-pagenavi {
  display: grid;
  grid-template-columns: repeat(3, 2.5em);
  gap: 1.2em;
  justify-content: center;
}
.md-news_page .wp-pagenavi .pages, .md-news_page .wp-pagenavi .extend {
  display: none;
}
.md-news_page span, .md-news_page a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 50%;
  border: 1px solid #000000;
  color: #000;
}
.md-news_page span._current, .md-news_page a._current {
  background-color: #F18D00;
  color: #fff;
  border: 1px solid #F18D00;
}
@media only screen and (min-width: 1025px) {
  .md-news_page a {
    transition: 0.2s;
  }
  .md-news_page a:hover {
    background-color: #F18D00;
    color: #fff;
    border: 1px solid #F18D00;
  }
}

@media only screen and (max-width: 1024px) {
  .md-news_listTtlWrap {
    display: grid;
    -moz-column-gap: 1.67em;
         column-gap: 1.67em;
  }
  .md-news_listTtlWrap ._date {
    font-size: var(--fontSize_sp12);
  }
  .md-news_listTtlWrap ._cat {
    line-height: 1.6;
  }
  .md-news_listTtlWrap ._ttl {
    font-size: var(--fontSize_sp14);
    font-weight: 700;
    letter-spacing: 0.05em;
  }
  .bl-linkBtn.md-topNews_link {
    margin-top: 10.2vw;
  }
  .md-news_catWrap ._cat {
    font-size: var(--fontSize_sp12);
    letter-spacing: 0;
  }
  .md-topNews_gridWrap._lower {
    margin-top: 10.25vw;
    row-gap: 15.4vw;
  }
  .md-news_page {
    padding-top: 25.6vw;
    font-size: var(--fontSize_sp17);
  }
}
/*===============================
         md-sgl
===============================*/
.md-sgl_contWrap {
  width: 45.3vw;
  min-width: 700px;
  margin: 0 auto;
}

.md-sgl_ttlWrap {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: repeat(2, auto);
  -moz-column-gap: 2vw;
       column-gap: 2vw;
  row-gap: 1.3vw;
  border-bottom: 1px solid #F18D00;
  padding-bottom: 1.5em;
}
.md-sgl_ttlWrap ._date {
  font-size: var(--fontSize_pc23);
  font-weight: 500;
  font-family: futura, "hind", sans-serif;
  color: #000000;
}
.md-sgl_ttlWrap ._cat {
  font-size: var(--fontSize_pc21);
  font-weight: 400;
  color: #fff;
  background-color: #F18D00;
  line-height: 1.6;
  padding: 0 1em;
  width: -moz-fit-content;
  width: fit-content;
}
.md-sgl_ttlWrap ._ttl {
  grid-column: 1/3;
  color: #000;
  font-size: var(--fontSize_pc35);
}

.md-sgl_txtWrap {
  margin-top: 3.2vw;
  font-size: var(--fontSize_pc22);
  font-weight: 400;
  line-height: 1.68;
}
.md-sgl_txtWrap p {
  margin-top: 1lh;
}
.md-sgl_txtWrap strong {
  font-weight: 700;
}

.md-news_link.bl-linkBtn {
  margin: 5.6vw auto 0 auto;
}

@media only screen and (max-width: 1024px) {
  .md-sgl_contWrap {
    width: 100%;
    max-width: 800px;
    min-width: unset;
  }
  .md-sgl_ttlWrap {
    padding-bottom: 0.6em;
  }
  .md-sgl_ttlWrap ._date {
    font-size: var(--fontSize_sp14);
  }
  .md-sgl_ttlWrap ._cat {
    font-size: var(--fontSize_sp14);
  }
  .md-sgl_ttlWrap ._ttl {
    font-size: var(--fontSize_sp18);
    letter-spacing: 0.05em;
    line-height: 1.56;
  }
  .md-sgl_txtWrap {
    margin-top: 7.7vw;
  }
  .md-sgl_txtWrap p {
    color: #000;
    margin-top: 7.7vw;
  }
  .md-news_link.bl-linkBtn {
    margin-top: 15.4vw;
  }
}
/*===============================
        lower ページリンク
===============================*/
@media only screen and (max-width: 1024px) {
  .md-abtTop_link, .md-jobsTop_link, .md-pplTop_link, .md-cltTop_link, .md-isTop_link, .md-etyTop_link {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(5, 1fr);
    grid-auto-flow: column;
    row-gap: 1em;
  }
  .md-isTop_link {
    grid-template-columns: 1fr;
  }
  .md-cltTop_link li:nth-child(5) {
    grid-row: 1/2;
    grid-column: 2/3;
  }
  .md-cltTop_link li:nth-child(6) {
    grid-row: 2/3;
    grid-column: 2/3;
  }
  .md-cltTop_link li:nth-child(7) {
    grid-row: 3/4;
    grid-column: 2/3;
  }
  .md-cltTop_link li:nth-child(8) {
    grid-row: 4/5;
    grid-column: 2/3;
  }
}
/*===============================
        共通設定
===============================*/
.l-inner {
  margin: 0 auto;
  width: 84.375%;
}

@media only screen and (max-width: 1280px) {
  .l-inner {
    width: 89%;
  }
}
/*===============================
        ヘッダー
===============================*/
.l-head {
  position: fixed;
  z-index: 99;
  top: 0;
  left: 0;
  width: 100%;
  height: clamp(80px, 5.7vw, 130px);
  backdrop-filter: blur(10px);
  background-color: rgba(255, 255, 255, 0.2);
}

@media only screen and (max-width: 1024px) {
  .l-head {
    height: 13.8vw;
    max-height: 80px;
  }
}
/*===============================
        SPハンバーガーメニュー
===============================*/
.l-spNav {
  position: fixed;
  z-index: 9;
  top: 0;
  left: 0;
  width: 100%;
  height: 100dvh;
  background-color: #fff;
  background-image: linear-gradient(to bottom, rgba(241, 141, 0, 0), rgba(241, 141, 0, 0.08));
  padding-top: 23vw;
  padding-bottom: 1.2vw;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.l-spNav.js-menu_open {
  opacity: 1;
  pointer-events: fill;
}

@media only screen and (min-width: 1025px) {
  .l-spNav {
    display: none;
  }
}
/*===============================
        トップページ
===============================*/
.l-topFv {
  position: relative;
  margin-top: clamp(80px, 5.7vw, 130px);
}
.l-topFv::before {
  position: absolute;
  content: "";
  display: block;
  height: 100%;
  width: 50.1vw;
  top: 0;
  left: 0;
  background-image: linear-gradient(to bottom, rgba(241, 141, 0, 0), rgba(241, 141, 0, 0.08));
}

.l-topAbt {
  position: relative;
  margin-top: 9.9vw;
  padding-right: 7.8vw;
}

.l-topJb {
  padding-top: 12.5vw;
}
.l-topJb._ctr {
  padding-top: 10.3vw;
}

.l-topPpl {
  padding-top: 9.3vw;
}

.l-topIs {
  padding-top: 13.2vw;
}

.l-topNews {
  padding-top: 12.4vw;
  padding-bottom: 16.4vw;
}

@media only screen and (max-width: 1024px) {
  .l-topFv {
    margin-top: clamp(30px, 13.8vw, 80px);
  }
  .l-topFv::before {
    width: 70%;
  }
  .l-topAbt {
    margin-top: 26.2vw;
    padding-right: 5.1vw;
  }
  .l-topPpl {
    padding-top: 20.5vw;
  }
  .l-topJb, .l-topJb._ctr {
    padding-top: 25.6vw;
  }
  .l-topIs {
    padding-top: 20.5vw;
  }
  .l-topNews {
    padding-top: 25.6vw;
    padding-bottom: 29.2vw;
  }
}
/*===============================
        l-foot
===============================*/
.l-footEntry {
  background-image: url(../images/random/footEntry.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding-bottom: 9.2vw;
  padding-top: 11.1vw;
}
.l-footEntry._top {
  padding-top: 19.2vw;
}

.l-foot {
  padding-top: 3.6vw;
  padding-bottom: 14px;
}

@media only screen and (max-width: 1024px) {
  .l-footEntry, .l-footEntry._top {
    background-image: url(../images/random/footEntry_sp.jpg);
    padding-top: 55.4vw;
    padding-bottom: 21.5vw;
  }
  .l-foot {
    padding-top: 20.5vw;
  }
}
/*===============================
        下層ページ共通
===============================*/
.l-lowerTop {
  position: relative;
  height: 25.625vw;
  min-height: 300px;
}

.l-lowerMsg {
  padding-top: 6vw;
}

@media only screen and (max-width: 1024px) {
  .l-lowerTop {
    height: 130vw;
    max-height: 800px;
    min-height: unset;
  }
  .l-lowerTop._narrow {
    height: 76.9vw;
    max-height: 500px;
  }
  .l-lowerMsg {
    padding-top: 12.8vw;
  }
}
/*===============================
        ABOUTページ
===============================*/
.l-abtMsg {
  padding-top: 11.4vw;
}

.l-abt1 {
  padding-top: 6.25vw;
}

.l-abt2 {
  padding-top: 4.9vw;
}

.l-abt3 {
  padding-top: 12.6vw;
}

.l-abt4 {
  padding-top: 10.8vw;
}

.l-abt5 {
  padding-top: 10.1vw;
}

.l-abt6 {
  padding-top: 12.8vw;
}

.l-abt7 {
  padding-top: 11.9vw;
  padding-bottom: 8vw;
}

.l-abt8 {
  padding-top: 10.4vw;
}

.l-abtOrg {
  padding-top: 8.6vw;
}

.l-abtFrom {
  position: relative;
  padding-top: 15.6vw;
  padding-bottom: 11.7vw;
}

.l-abtOl {
  position: relative;
  padding-bottom: 5.6vw;
}

@media only screen and (max-width: 1024px) {
  .l-abtMsg {
    padding-top: 34.6vw;
  }
  .l-abt1 {
    padding-top: 33.3vw;
  }
  .l-abt2 {
    padding-top: 62.8vw;
  }
  .l-abt3 {
    padding-top: 64.1vw;
  }
  .l-abt4 {
    padding-top: 20.5vw;
  }
  .l-abt5 {
    padding-top: 30.7vw;
  }
  .l-abt6 {
    padding-top: 25.6vw;
  }
  .l-abt7 {
    padding-top: 29.5vw;
    padding-bottom: 25.6vw;
  }
  .l-abt8 {
    padding-top: 20.5vw;
  }
  .l-abtOrg {
    padding-top: 20.5vw;
  }
  .l-abtFrom {
    padding-top: 29.5vw;
    padding-bottom: 25.6vw;
  }
  .l-abtOl {
    padding-bottom: 0;
  }
}
/*===============================
        JOBSページ
===============================*/
.l-jobsTop {
  padding-top: 7.9vw;
}

.l-jobs {
  padding-top: 9.8vw;
}
.l-jobs + .l-jobs {
  padding-top: 15.5vw;
}

.l-jobsBtb {
  padding-top: 6.7vw;
}

.l-jobsReq {
  position: relative;
}

@media only screen and (max-width: 1024px) {
  .l-jobsTop {
    padding-top: 26.9vw;
  }
  .l-jobs {
    padding-top: 30.7vw;
  }
  .l-jobs + .l-jobs {
    padding-top: 30.7vw;
  }
  .l-jobsReq {
    padding-top: 15.5vw;
  }
}
/*===============================
        PEOPLEページ
===============================*/
.l-pplItv {
  padding-top: 8.8vw;
}
.l-pplItv + .l-pplItv {
  padding-top: 6.25vw;
}
.l-pplItv._last {
  padding-bottom: 15.6vw;
}

.l-pplGlr {
  position: relative;
  padding-top: 11.8vw;
  padding-bottom: 11.8vw;
}

@media only screen and (max-width: 1024px) {
  .l-pplItv {
    padding-top: 30.7vw;
  }
  .l-pplItv + .l-pplItv {
    padding-top: 20vw;
  }
  .l-pplGlr {
    padding-top: 20.5vw;
    padding-bottom: 30.8vw;
  }
}
/*===============================
        ITERNSHIPページ
===============================*/
.l-isLn {
  padding-top: 9.3vw;
  padding-bottom: 8.8vw;
}

.l-isPr {
  padding-top: 12.8vw;
  padding-bottom: 10.8vw;
}

.l-isStr {
  padding-top: 8.2vw;
  padding-bottom: 16vw;
}

.l-isAbt {
  position: relative;
  margin-top: 7.2vw;
  margin-bottom: 15.5vw;
}

.l-isBtm {
  position: relative;
  padding-top: 8.3vw;
  padding-bottom: 10.2vw;
}

@media only screen and (max-width: 1024px) {
  .l-isLn {
    padding-top: 20.5vw;
    padding-bottom: 25.6vw;
  }
  .l-isPr {
    padding-top: 19.2vw;
    padding-bottom: 20.5vw;
    margin-bottom: 20.5vw;
    background-image: linear-gradient(to bottom, rgba(241, 141, 0, 0), rgba(241, 141, 0, 0.08));
  }
  .l-isAbt {
    margin-top: 0;
    margin-bottom: 0;
  }
  .l-isBtm {
    padding-top: 20.5vw;
    padding-bottom: 20.5vw;
  }
}
/*===============================
        CULTUREページ
===============================*/
.l-cltTr {
  position: relative;
  padding-top: 11.8vw;
  padding-bottom: 7.2vw;
}

.l-cltMnt {
  padding-top: 6.1vw;
  padding-bottom: 13.5vw;
}

.l-cltBnf {
  margin-top: 4.7vw;
}

.l-cltNew {
  padding-top: 12.1vw;
}

.l-cltGl {
  position: relative;
  padding-top: 6.8vw;
  padding-bottom: 7.8vw;
}

.l-cltDt {
  padding-top: 13.3vw;
  padding-bottom: 6.4vw;
  margin-bottom: 8.75vw;
  background-image: linear-gradient(to bottom, rgba(241, 141, 0, 0.02), rgba(241, 141, 0, 0.1));
}

@media only screen and (max-width: 1024px) {
  .l-cltTr {
    padding-bottom: 20.5vw;
  }
  .l-cltMnt {
    padding-top: 20.5vw;
    padding-bottom: 25.6vw;
  }
  .l-cltBnf {
    padding-top: 20.5vw;
    margin-top: 0;
    background-image: linear-gradient(to bottom, rgba(241, 141, 0, 0.02), rgba(241, 141, 0, 0.1));
  }
  .l-cltNew {
    padding-top: 26.6vw;
  }
  .l-cltDt {
    padding-top: 20vw;
    background-image: unset;
    margin-bottom: 0;
    padding-bottom: 0;
  }
  .l-cltGl {
    padding-top: 25.6vw;
    padding-bottom: 0;
  }
}
/*===============================
        ENTRYページ
===============================*/
.l-etyQa {
  padding-top: 8.6vw;
  padding-bottom: 12.5vw;
}

.l-etyForm {
  position: relative;
  padding-top: 9.7vw;
}

@media only screen and (max-width: 1024px) {
  .l-etyQa {
    padding-top: 15.4vw;
  }
  .l-etyForm {
    padding-top: 20.5vw;
    padding-bottom: 32vw;
  }
}
/*===============================
        送信完了ページ
===============================*/
.l-thx {
  position: relative;
  padding-top: 8.6vw;
  padding-bottom: 9.6vw;
}

@media only screen and (max-width: 1024px) {
  .l-thx {
    padding-top: 15.4vw;
    padding-bottom: 33.4vw;
  }
}
/*===============================
        お知らせページ
===============================*/
.l-news {
  position: relative;
  padding-top: 8.6vw;
  padding-bottom: 14.8vw;
}

.l-single {
  position: relative;
  padding-top: 10.7vw;
  padding-bottom: 16.8vw;
}

@media only screen and (max-width: 1024px) {
  .l-news {
    padding-top: 28.9vw;
    padding-bottom: 22vw;
  }
  .l-single {
    padding-top: 29.2vw;
    padding-bottom: 20vw;
  }
}
/*===============================
         js-
===============================*//*# sourceMappingURL=style.css.map */
