/* CSS Document */

@charset "UTF-8";
@import url("//cdn.jsdelivr.net/npm/bootstrap-icons@1.13.1/font/bootstrap-icons.min.css");
@import url('//fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&family=Noto+Sans+JP:wght@100..900&display=swap');
:root {
  --color_glass: #F5FFD8;
  --color_green: #51A478;
  --color_moss: #039346;
  --color_darkgreen: #068440;
  --color_steal: #356F7B;
  --color_yellow: #FFF943;
  --color_dark: #111111;
  --color_light: #d9d9d9;
  --gradient1: linear-gradient(90.16deg, #06A851 37.71%, #62CA08 61.33%);
  --gradient2: linear-gradient(77.69deg, #62CA08 18.15%, #06A851 80.35%);
  --gradient3: linear-gradient(143.52deg, #56B207 15.87%, #008C41 78.89%);
  --font_eng: 'Jost';
  --font_bi: 'bootstrap-icons';
  --transition: all .3s ease;
}
html {
  font-size: 100%;
  font-size: 10px;
  scroll-behavior: smooth;
}
html:focus-within {
  scroll-behavior: smooth;
}
body {
  font-family: "Noto Sans JP",sans-serif;
  color: var(--color_dark);
  font-size: 1.6rem;
  line-height: 1.8;
  letter-spacing: 0.05rem;
}
*,*:before,*:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box
}
body,h1,h2,h3,h4,p,figure,blockquote,dl,dd,ul,li {
  margin: 0
}
body, button, input, select, textarea {
  margin: 0;
  padding: 0;
  font-size: 16px;
  font-weight: 400;
  background-repeat: no-repeat;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.8;
}
ul,ol {
  list-style: none;
  padding: 0
}
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5
}
a:not([class]) {
  text-decoration-skip-ink: auto
}  
a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}
a.hover-translate:hover {
  transform: translate(1px, 1px);
}
a.text-link {
  color: var(--color_darkgreen);
  text-decoration: underline;
}
a.hover-opacity:hover {
  opacity: .5;
}
img,picture {
  max-width: 100%;
  display: block
}
@media (prefers-reduced-motion:reduce) {
  html:focus-within {
    scroll-behavior: auto
  }
  *,*:before,*:after {
    -webkit-animation-duration: .01ms !important;
    animation-duration: .01ms !important;
    -webkit-animation-iteration-count: 1 !important;
    animation-iteration-count: 1 !important;
    -webkit-transition-duration: .01ms !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important
  }
}


.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 5rem;
  max-width: 120rem;
  background-color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 9;
}
.header nav {
  padding: min(2vw, 2rem) min(3vw, 2rem);
  width: calc(100% - 5rem - min(2.5vw, 2.5rem));
}
.header nav ul, 
.header nav ul li {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header nav ul li {
  gap: min(3vw, 2.5rem);
}
.header nav .logo {
  padding-right: min(2vw, 2rem);
  position: relative;
}
.header nav .logo::after {
  content:'';
  width: 1px;
  height: min(5.3vw, 5.3rem);
  background-color: var(--color_light);
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
.header nav .logo img {
  aspect-ratio: 175/60;
  max-height: min(9vw,6rem);
  transform: translateY(-4%);
}
.header nav .logo-tokyo img {
  aspect-ratio: 108/28;
  max-height: min(4.5vw,2.8rem);
}
.header nav .logo-tokyoshigotocenter img {
  aspect-ratio: 162/34;
  max-height: min(5.5vw,3.4rem);
}
.header nav .link {
  padding-left: min(2.1vw, 2.1rem);
  background-image: url("/company/assets/images/icon-recruit.svg");
  background-size: min(2.1vw,2.1rem);
  background-position: left center;
  background-repeat: no-repeat;
  font-weight: 500;
}

.header_drawer {
  position: relative;
  top: 0;
  left: 0;
  z-index: 9;
  width: 100vw;
}
.header_drawer__content {
  width: 100%;
  max-width: 120rem;
  margin: 0 auto;
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 999;
}
.header_drawer__btn {
  position: fixed;
  top: 0;
  right: 0;
  width: 5rem;
  height: 5rem;
  aspect-ratio: 1 / 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: min(1.6vw, .8rem);
  background: #07941D;
  border-radius: min(1vw, 1rem);
  cursor: pointer;
  transition: var(--transition);
}
.header_drawer__btn:hover {
  background: var(--gradient3);
}
.header_drawer__btn span {
  display: block;
  width: min(5vw, 2.8rem);
  height: min(.5vw,.3rem);
  background-color: white;
  transition: var(--transition);
}
.header_drawer__btn.--close span:first-child {
  transform: rotate(45deg) translate(min(.8vw,.4rem), min(.8vw,.4rem));
}
.header_drawer__btn.--close span:nth-child(2) {
  display: none;
}
.header_drawer__btn.--close span:last-child {
  transform: rotate(-45deg) translate(min(.8vw,.4rem), max(-0.8vw,-0.4rem));
}
.header_drawer__btn.--close {
  background: transparent;
}
.header_drawer__container {
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  position: fixed;
  top: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #141414F2;
  padding: min(2vw, 2rem);
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  z-index: 99;
}
.header_drawer__container.js-open {
  -webkit-transform: translateX(0%);
  transform: translateX(0%);
}

.drawer_menu nav {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  max-width: 80rem;
  column-gap: 1.5rem;
  margin: 0 auto;
}
.drawer_menu nav a {
  display: flex;
  padding: min(4vw, 3rem) min(3vw, 3rem);
  padding-right: min(1vw,1rem);
  margin: 0 1rem;
  font-size: min(3.6vw,1.8rem);
  font-weight: 500;
  position: relative;
}
.drawer_menu nav .inner:not(:last-of-type) a {
  border-bottom: 1px solid transparent;
}
.drawer_menu nav .inner {
  width: 100%;
}
.drawer_menu nav .inner .bi {
  margin-left: auto;
  stroke-width: 1px;
  -webkit-text-stroke: 1px;
}
.drawer_menu nav .sp-only {
  text-align: center;
}
.drawer_menu nav .sp-only a {
  padding-left: min(5vw, 3rem);
  background-image: url(/company/assets/images/icon-recruit.svg);
  background-size: min(4vw, 3rem);
  background-position: left center;
  background-repeat: no-repeat;
  font-weight: 500;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin: 0 auto;
}
.drawer_menu .cta-wrap {
  margin-top: min(10vw,6rem);
}
.drawer_menu .cta-wrap .btn {
  position: relative;
  width: min(100%,60rem);
}
.drawer_menu .cta-wrap a {
  padding: min(2vw, 1.6rem) min(3vw, 3rem) !important;
  min-height: 6.2rem;
}
.drawer_menu .cta-wrap a span {
  text-align: center;
}

@media screen and (max-width:991px) {
  .header_drawer__container.js-open {
    align-items: flex-start;
  }
  .header_drawer__btn.--close {
    width: 7rem;
    height: 7rem;
  }
  .header_drawer__btn.--close span {
    background-color: var(--color_dark);
  }
  .drawer_menu nav {
    background-color: white;
    border-radius: 2rem;
    padding: 2rem 3rem 1rem;
  }
  .drawer_menu nav .inner:not(:last-of-type) a {
    border-bottom-color: #A6A6A64D;
  }
  .drawer_menu nav .inner .bi {
    color: #0F681D;
  }
}
@media screen and (min-width:992px) {
  .header {
    top: min(2vw, 2rem);
    left: 50%;
    width: calc(100% - 2rem);
    transform: translateX(-50%);
    border-radius: 1rem;
    height: min(10vw, 10rem);
  }
  .header nav {
    width: calc(100% - min(10vw, 10rem));
  }
  .header_drawer__content {
    top: min(2vw, 2rem);
    width: calc(100% - 2rem);
  }
  .header_drawer__btn {
    width: min(10vw, 10rem);
    height: min(10vw, 10rem);
  }
  .drawer_menu nav .inner:not(:last-of-type) a {
    color: white;
    border-bottom-color: #FFFFFF4D;
  }
  .drawer_menu nav .inner {
    width: calc((100% - 1.5rem) / 2);
  }
}

.section-inner {
  width: 100%;
  max-width: 120rem;
  margin: 0 auto;
}
.section-inner.mini {
  max-width: 90rem;
}

.cta {
  background: var(--gradient2);
  padding: min(12vw, 6rem) min(5vw, 5rem);
}
.cta .section-inner {
  background-color: white;
  border-radius: min(4vw, 2rem);
  border: 5px solid var(--color_green);
  padding: min(5vw, 5rem);
  box-shadow: 0px 0px 14px #00000033;
  text-align: center;
}
.cta-title {
  background: var(--gradient1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: min(7vw, 4rem);
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
}
.cta-sub {
  text-align: center;
  margin-top: 1rem;
}
.cta-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: min(3vw, 1rem);
  margin: min(2vw, 2rem) auto min(8vw,4rem);
}
.cta-wrap .btn {
  min-width: min(100%, 33rem);
}
.cta-tel-title {
  font-size: min(4.8vw, 2.4rem);
  font-weight: 700;
  line-height: 1;
}
.cta-tel .phone {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-family: var(--font_eng);
  font-size: min(7.4vw,3.7rem);
  line-height: 1;
  font-weight: 600;
  margin: 1rem auto .5rem;
}
.cta-tel .phone i {
  color: white;
  background: var(--gradient3);
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 1.2rem;
  width: min(6vw, 3rem);
  height: min(6vw, 3rem);
  border-radius: 6rem;
  margin-right: .5rem;
}
.cta-tel-text {
  line-height: 1.8;
}

.btn {
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0px min(1vw, 1rem) min(2vw, 2rem) #0000001A;
  border-radius: min(10vw,6rem);
  line-height: 1.3;
  font-weight: 700;
  transition: var(--transition);
  gap: 1rem;
  cursor: pointer;
}
.btn:hover {
  transform: translate(2px, 2px);
  box-shadow: 0px 0 min(1vw, 1rem) #0000001A;
}
.btn span, 
.btn .bi {
  margin-left: auto;
}
.btn .bi {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 1rem;
  stroke-width: 2px;
  -webkit-text-stroke: 2px;
}
.btn.yellow {
  border: 3px solid white;
  padding: min(3vw, 1.6rem) min(3vw, 3rem);
  background: linear-gradient(180deg, #FFF702 8.65%, #FFD93F 88.46%);
}
.btn.orange {
  color: white;
  border: 3px solid white;
  padding: min(3vw, 1.6rem) min(3vw, 3rem);
  background: linear-gradient(180deg, #DB9D16 8.65%, #EA5D06 88.46%);
}
.btn.green a {
  width: 100%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  border-radius: min(10vw,6rem);
  padding: min(3vw, 1.6rem) min(3vw, 3rem);
  position: relative;
  background: linear-gradient(180deg, #FFFFFF 0%, #EBEBEB 100%);
}
.btn.green a::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 3px solid transparent;
  border-radius: min(10vw,6rem);
  border-color: transparent;
  background-image: var(--gradient2);  /* グラデーション背景 */
  background-origin: border-box;  /* 背景の基準位置はボーダーも含める */
  background-clip: border-box;  /* 背景の適用範囲はボーダーも含める */
  -webkit-mask-image: linear-gradient(#fff 0 0), linear-gradient(#fff 0 0); /* 2つのマスクレイヤー */
  -webkit-mask-clip: padding-box, border-box; /* レイヤーごとの描画領域の範囲 */
  -webkit-mask-composite: destination-out; /* レイヤーが重なっていない領域を描画対象 */
  mask-image: linear-gradient(#fff 0 0), linear-gradient(#fff 0 0);
  mask-clip: padding-box, border-box;
  mask-composite: exclude;
}
.btn.white {
  padding: min(3vw, 1.5rem) min(6vw, 4rem);
}
.btn.submit, 
.btn.clear {
  color: white;
  min-width: 24rem;
  padding: min(4vw, 2rem) min(6vw, 4rem);
}
.btn.submit {
  background: linear-gradient(87.6deg, #07941D 5.03%, #10710C 94.76%);
}
.btn.clear {
  background-color: #C6C6C6;
}
.btn.submit .bi {
  font-size: min(4vw, 2rem);
  stroke-width: .5px;
  -webkit-text-stroke: .5px;
}
.btn.clear span {
  margin-right: auto;
}

.underline {
  position: relative;
  display: inline-block;
  line-height: 1.4;
  background: linear-gradient(transparent 60%, #FFF10E 61%);
}

.footer {
  border-top: 1px solid #D4DFB5;
}
.footer .section-inner {
  padding: min(10vw, 10rem) min(5vw, 5rem);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  row-gap: 2rem;
}
.footer_left .logo {
  display: block;
  width: 17.5rem;
  height: 6rem;
}
.footer_left .links {
  margin: 2rem auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  gap: 1.5rem;
}
.footer_left .logo-tokyo {
  width: 10.8rem;
  height: 2.8rem;
}
.footer_left .logo-tokyoshigotocenter {
  width: 16.2rem;
  height: 3.4rem;
}
.footer_left p {
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 1.6;
  margin-bottom: .5rem;
}
.footer_left p b {
  color: #009143;
  font-weight: 700;
  font-size: min(4.2vw,1.8rem);
  line-height: 1.6;
  display: block;
  margin-bottom: 1rem;
}
.footer_left p small {
  font-size: 1.2rem;
  line-height: 1.6;
}
.footer_right {
  display: flex;
  flex-wrap: wrap;
  column-gap: 5rem;
}
.footer_right ul li {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
}
.footer_right ul li:not(.link) a {
  padding: 1rem;
  font-weight: 700;
}
.footer_right ul li .bi {
  color: #009143;
  font-size: 1rem;
  stroke-width: 1px;
  -webkit-text-stroke: 1px;
}
.footer_right .link {
  margin-top: 1rem;
}
.footer_right .link .btn {
  background-image: url(/company/assets/images/icon-recruit.svg);
  background-size: min(4vw, 2rem);
  background-position: 2rem center;
  background-repeat: no-repeat;
  padding-left: 5rem;
  padding-right: 2rem;
  box-shadow: 0px min(0vw, 0rem) min(1vw, 1rem) #00000014;
}
.footer_copyright {
  width: 100%;
  text-align: center;
  padding: min(4vw, 2rem) min(2vw, 2rem);
  background-color: #E9F7C1;
  font-family: var(--font_eng);
  font-size: 1.2rem;
  font-weight: 600;
}

.footer_floating {
  background-color: var(--color_yellow);
  position: fixed;
  width: 100%;
  left: 0;
  bottom: 0;
  z-index: 8;
}
.footer_floating .section-inner {
  padding: 1rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  column-gap: 2rem;
  row-gap: 1rem;
}
.floating-item {
  position: relative;
  min-width: min(100%, 33rem);
}
.floating-item .btn {
  min-width: 100%;
  text-align: center;
}
.floating-item a {
  padding: min(2vw, 2rem) min(3vw, 3rem) !important;
  font-size: min(3.5vw,2rem);
}
.drawer_menu .cta-wrap .orange::before,
.floating-item.apply::before {
  content: '採用の新しい選択肢を。まずは無料説明会でご紹介します！';
  padding: 5px 1rem;
  background-color: white;
  color: #E86407;
  font-size: min(1.4vw,1.4rem);
  font-weight: 700;
  border-radius: .5rem;
  text-align: center;
  position: absolute;
  top: 0;
  left: 50%;
  width: 100%;
  width: max-content;
  transform: translateX(-50%)translateY(-110%);
  box-shadow: 0px 0px 30px #0033084D;
}
.drawer_menu .cta-wrap .orange::after,
.floating-item.apply::after {
  content:'';
  border-top: 1.4rem solid white;
  border-left: 1.4rem solid transparent;
  border-right: 1.4rem solid transparent;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%)translateY(-.5rem);
}
.floating-tel {
  background-color: white;
  border-radius: 5rem;
  padding: 0 min(4vw, 2rem) min(2vw, 1rem);
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.floating-tel .sp-only {
  font-size: min(2.6vw, 1.3rem);
  line-height: 1.4;
}
.floating-tel .phone {
  font-family: var(--font_eng);
  font-weight: 600;
  font-size: min(7vw, 3.7rem);
  line-height: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: min(2vw, 1rem);
}
.floating-tel .phone i {
  color: white;
  background: var(--gradient3);
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 1.2rem;
  width: min(6vw, 3rem);
  height: min(6vw, 3rem);
  border-radius: 6rem;
  margin-right: 1rem;
}
.floating-tel .phone b {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: left;
}
.floating-tel span {
  width: 100%;
  font-size: min(2vw,1.2rem);
  font-weight: 700;
  line-height: 1.4;
  display: block;
  text-align: center;
  padding: 0 min(.5vw, .5rem);
}

@media screen and (max-width:991px) {
  .pc-only {
    display: none !important;
  }
  .floating-item a {
    font-size: min(3.5vw,1.8rem);
  }
  .drawer_menu .cta-wrap .orange::before, 
  .floating-item.apply::before {
    font-size: min(2.8vw,1.4rem);
  }
  .drawer_menu .cta-wrap .orange::before, 
  .drawer_menu .cta-wrap .orange::after {
    top: -.5rem;
  }
}
@media screen and (min-width:992px) {
  .sp-only {
    display: none !important;
  }
  .floating-tel {
    padding: min(2vw, .5rem) min(4vw, 2rem);
    flex-direction: row;
    border-radius: min(4vw,2rem);
    gap: 1.5rem;
  }
  .floating-tel span {
    width: auto;
    text-align: left;
  }
}