@charset "UTF-8";
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  height: 1px;
}
header .h-logo {
  position: absolute;
  top: -100px;
  left: -245px;
  width: 566px;
  height: 380px;
}
header .h-logo a {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #fff;
  transition: background-color 0.3s ease;
  display: flex;
  flex-flow: column;
  align-items: flex-end;
  justify-content: center;
  padding-right: 54px;
  text-decoration: none;
  padding-top: 20px;
}
header .h-logo a img {
  width: 160px;
}
header .h-logo a p {
  margin-top: 16px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 3px;
  color: #5A5A5A;
}
header .h-nav {
  position: relative;
  display: flex;
  align-items: center;
  gap: 24px;
  max-width: 1350px;
  margin: 0 auto;
  justify-content: end;
  transition: padding-top 0.3s ease;
}
header .h-nav .nav-group {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 20px;
  border-radius: 10px;
  background-color: transparent;
  transition: background-color 0.3s ease;
}
header .h-nav .recruit-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background-color: #69CAE6;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  padding: 14px 24px;
  border-radius: 5px;
}
header .h-nav .tel img {
  width: 40px;
}
header .h-nav .hamburger {
  display: flex;
  flex-flow: column;
  gap: 9px;
  padding: 14px 12px;
  border-radius: 50%;
  height: 100px;
  width: 140px;
  background-color: transparent;
  transition: background-color 0.3s ease;
  border: none;
  cursor: pointer;
  justify-content: center;
  align-items: center;
}
header .h-nav .hamburger span {
  display: block;
  width: 40px;
  height: 2px;
  border-radius: 1px;
  background-color: #69CAE6;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
header .h-nav .hamburger span:nth-child(2) {
  background-color: rgba(255, 158, 66, 0.5294117647);
}
header .h-nav .hamburger span:last-child {
  background-color: #FF9E42;
}
header.scrolled .h-nav {
  padding-top: 20px;
}
header.scrolled .nav-group {
  background-color: #FFFCF4;
}
header.scrolled .hamburger {
  background-color: #FFFCF4;
}

.h-deco {
  position: absolute;
  top: -100px;
  left: -245px;
  width: 566px;
  height: 380px;
  z-index: 99;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.h-deco::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../images/h-blue.png") center/100% 100% no-repeat;
  transform: translate(28px, 28px);
}
.h-deco::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../images/h-orange.png") center/100% 100% no-repeat;
  transform: translate(20px, 35px) rotate(-10deg);
  z-index: -1;
}

@media screen and (min-width: 768px) {
  header {
    z-index: 200;
  }
  .h-deco {
    z-index: 160;
  }
  .h-menu__head {
    visibility: hidden;
  }
  body.menu-open .hamburger span:first-child {
    transform: translateY(11px) rotate(25deg);
  }
  body.menu-open .hamburger span:nth-child(2) {
    opacity: 0;
  }
  body.menu-open .hamburger span:last-child {
    transform: translateY(-11px) rotate(-25deg);
  }
  body.menu-open .h-deco {
    opacity: 0;
  }
  body.menu-open .h-logo a {
    background-color: transparent;
  }
  body.menu-open header.scrolled .nav-group {
    background-color: transparent;
  }
  body.menu-open header.scrolled .hamburger {
    background-color: transparent;
  }
}
.h-menu {
  position: fixed;
  inset: 0;
  z-index: 150;
  background: url("../images/humberger-bg.png") center/cover no-repeat;
  padding: 48px 40px;
}
.h-menu__inner {
  max-width: 1116px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  min-height: 100%;
}
.h-menu {
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.h-menu.is-open {
  opacity: 1;
  visibility: visible;
}
.h-menu__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.h-menu__head .logo {
  display: flex;
  align-items: flex-start;
  gap: 48px;
}
.h-menu__head .logo a {
  text-decoration: none;
  text-align: center;
}
.h-menu__head .logo a img {
  width: 140px;
}
.h-menu__head .logo a .recruiting {
  margin-top: 14px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 3px;
  color: #5A5A5A;
}
.h-menu__head .logo .name {
  margin-top: 10px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.8;
  color: #5A5A5A;
}
.h-menu__head .btns {
  display: flex;
  align-items: center;
  gap: 14px;
}
.h-menu__head .btns .menu-recruit {
  display: flex;
  align-items: center;
  gap: 8px;
  background-color: #69CAE6;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  padding: 14px 24px;
  border-radius: 5px;
}
.h-menu__head .btns .menu-tel img {
  width: 40px;
  margin-right: 62px;
}
.h-menu__close {
  position: relative;
  width: 60px;
  height: 40px;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
}
.h-menu__close span {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
}
.h-menu__close span:first-child {
  background-color: #69CAE6;
  transform: rotate(25deg);
}
.h-menu__close span:last-child {
  background-color: #FF9E42;
  transform: rotate(-25deg);
}
.h-menu__nav {
  margin-top: 64px;
  margin-left: auto;
  margin-right: 10%;
  width: -moz-max-content;
  width: max-content;
  display: flex;
  flex-flow: column;
  gap: 36px;
}
.h-menu__nav .item {
  display: flex;
  align-items: start;
  gap: 20px;
}
.h-menu__nav .item .num {
  font-size: 16px;
  font-weight: 700;
  color: #FF9E42;
}
.h-menu__nav .item a {
  font-size: 24px;
  font-weight: 500;
  color: #5A5A5A;
  text-decoration: none;
}
.h-menu__nav .sub {
  display: flex;
  flex-flow: column;
  gap: 32px;
  padding-left: 66px;
}
.h-menu__nav .sub a {
  font-size: 24px;
  font-weight: 400;
  color: #5A5A5A;
  text-decoration: none;
}
.h-menu__sns {
  position: absolute;
  right: 0;
  bottom: 0;
}
.h-menu__sns .hp img {
  width: 150px;
}
.h-menu__sns .insta {
  margin-top: 12px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
}
.h-menu__sns .insta > div {
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: flex-end;
}
.h-menu__sns .insta > div p {
  font-size: 12px;
  font-weight: 400;
  text-align: center;
  color: #5A5A5A;
}
.h-menu__sns .insta > div a {
  margin-top: 8px;
}
.h-menu__sns .insta > div a img {
  width: 36px;
}

html {
  background-color: #FFFCF4;
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
}

body {
  font-family: "Zen Kaku Gothic New", sans-serif;
  color: #5A5A5A;
}

.sp-br {
  display: none;
}

.fade-up {
  opacity: 0;
}
.fade-up.is-visible {
  opacity: 1;
  animation: fade-up 0.8s ease backwards;
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.s-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 58px;
}
.s-btn a {
  color: #5A5A5A;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  position: relative;
}
.s-btn a::before {
  content: url("../images/rightallow.svg");
  position: relative;
  top: 12px;
  padding-right: 30px;
  display: inline-block;
  transition: transform 0.3s ease;
}
.s-btn a:hover::before {
  transform: translateX(10px);
}

.hero > div {
  max-width: 1350px;
  width: 100%;
  position: relative;
  display: flex;
  height: auto;
  margin: 0 auto;
  margin-top: 220px;
  display: flex;
  justify-content: center;
  height: 676px;
  align-items: end;
}
.hero > div > div:first-child {
  position: relative;
  width: 60%;
}
.hero > div > div:first-child > img {
  position: absolute;
  bottom: 0;
  z-index: 1;
  padding-bottom: 80px;
  padding-left: 30px;
  width: 90%;
}
.hero > div > div:first-child p {
  font-weight: 900;
  font-size: 32px;
  color: #fff;
  width: 100%;
  padding-left: 30px;
  padding-bottom: 100px;
}
.hero > div > div:first-child p span {
  font-size: 48px;
  display: block;
}
.hero > div .right {
  width: 40%;
  display: flex;
  flex-flow: column;
}
.hero > div .right > a img {
  max-width: 382px;
  width: 100%;
  position: relative;
  z-index: 1;
  left: 185px;
  bottom: 30px;
}
@media screen and (max-width: 1434px) {
  .hero > div .right > a img {
    left: 160px;
  }
}
.hero > div .right > a img:last-child {
  margin-top: 5px;
}
.hero > div .right .big {
  max-width: 390px;
}
.hero > div .hero-img {
  position: absolute;
  width: 100%;
  z-index: -1;
  opacity: 0;
  animation: hero-fade 12s infinite;
}
.hero > div .hero-img + .hero-img {
  animation-delay: 3s;
}
.hero > div .hero-img + .hero-img + .hero-img {
  animation-delay: 6s;
}
.hero > div .hero-img + .hero-img + .hero-img + .hero-img {
  animation-delay: 9s;
}

@keyframes hero-fade {
  0% {
    opacity: 0;
  }
  8.33% {
    opacity: 1;
  }
  25% {
    opacity: 1;
  }
  33.33% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
.about {
  position: relative;
  max-width: 946px;
  margin: 0 auto;
  margin-top: 60px;
}
.about::before {
  content: "";
  display: block;
  position: sticky;
  top: calc((100vh - min(930px, 100vh)) / 2);
  height: min(930px, 100vh);
  z-index: -1;
  background: url(../images/bg-top.png) center top/contain no-repeat;
}
.about > div {
  margin-top: calc(-1 * min(930px, 100vh));
}
.about > div h2 {
  padding-top: 306px;
  font-size: 40px;
  color: #5A5A5A;
  text-align: center;
}
.about > div h3 {
  font-size: 40px;
  font-weight: 500;
  margin-top: 508px;
  color: #5A5A5A;
  text-align: center;
}
.about > div > p {
  margin: 0 auto;
  margin-top: 42px;
  width: 621px;
  line-height: 35px;
  color: #5A5A5A;
  font-weight: 500;
}
.about > div h4 {
  font-size: 40px;
  font-weight: 900;
  margin-top: 451px;
  color: #5A5A5A;
  text-align: center;
  position: relative;
  right: 80px;
}
.about > div > img {
  margin-top: 14px;
  margin: 0 auto;
}
.about > div > div {
  display: flex;
  gap: 30px;
  align-items: center;
  justify-content: center;
  margin-top: 98px;
  padding-bottom: calc(min(930px, 100vh) + 200px);
}
.about > div > div > p {
  font-weight: 700;
  font-size: 16px;
}

.features {
  margin-top: calc(-1 * min(930px, 100vh));
  background-color: #FFFCF4;
  padding-top: 120px;
}
.features .s-ttl {
  text-align: center;
}
.features .s-ttl h2 {
  font-weight: 500;
  font-size: 40px;
  color: #5A5A5A;
}
.features .main-content {
  margin-top: 76px;
  width: 100%;
  position: relative;
}
.features .main-content .bg1 {
  position: absolute;
  right: 50px;
  top: -50px;
}
.features .main-content .bg2 {
  position: absolute;
  left: 0;
  bottom: -300px;
}
.features .main-content .item {
  display: flex;
  justify-content: space-between;
  margin-top: 100px;
}
.features .main-content .item .f-img {
  width: 55%;
  position: relative;
  left: 18%;
  z-index: 10;
  bottom: 50px;
}
.features .main-content .item .f-img img {
  max-width: 517px;
  width: 100%;
}
.features .main-content .item .f-txt {
  background: #FFE9D5;
  border-bottom-left-radius: 50px;
  width: 90%;
  padding: 41px 0 46px 0;
  padding-left: 20%;
  isolation: isolate;
}
.features .main-content .item .f-txt h3 {
  font-weight: 700;
  font-size: 20px;
  color: #5A5A5A;
}
.features .main-content .item .f-txt p {
  font-weight: 500;
  font-size: 16px;
  line-height: 35px;
  margin-top: 20px;
  color: #5A5A5A;
  padding-left: 20px;
}
.features .main-content .item .f-txt > div {
  background-color: #fff;
  padding: 24px 24px;
  max-width: 470px;
  width: 100%;
  margin-top: 10px;
  margin-left: 20px;
  border-radius: 10px;
  position: relative;
}
.features .main-content .item .f-txt > div::before {
  content: "";
  display: block;
  width: 470px;
  height: 103px;
  background-color: #FF9E42;
  position: absolute;
  left: 5px;
  top: 5px;
  border-radius: 10px;
  z-index: -1;
}
.features .main-content .item .f-txt > div > div div {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 8px;
}
.features .main-content .item .f-txt > div > div div > img {
  width: 16px;
  height: 16px;
}
.features .main-content .item .f-txt > div > div div > p {
  font-weight: 500;
  font-size: 16px;
  line-height: 35px;
  color: #5A5A5A;
  margin: 0;
  padding: 0;
  line-height: normal;
}
.features .main-content .item .f-txt > div > div div:first-child {
  margin-top: 0;
}
.features .main-content .reverse {
  flex-flow: row-reverse;
}
.features .main-content .reverse .f-img {
  width: 55%;
  position: relative;
  right: 9%;
  left: unset;
  z-index: 10;
  bottom: 50px;
}
.features .main-content .reverse .f-txt {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 50px;
}
.features .main-content .reverse .f-txt > div {
  display: flex;
  gap: 20px;
}
.features .main-content .last .f-txt > div {
  display: flex;
  gap: 20px;
}
.features .main-content .last .f-txt > div > div:last-child {
  width: 150px;
  display: flex;
  align-items: center;
  height: 24px;
  margin-top: 8px;
}
.features .main-content .last .f-txt > div > div:last-child > p {
  margin: 0;
}
.features .main-content .last .f-txt .margin-b {
  margin-top: 0 !important;
}

.works {
  margin: 0 auto;
  margin-top: 320px;
  max-width: 1100px;
  width: 100%;
}
.works .ttl h2 {
  font-weight: 700;
  font-size: 64px;
}
.works .ttl h2 .kuro {
  font-size: 16px;
  display: block;
  position: relative;
  top: 30px;
}
.works .ttl h2 .era {
  font-size: 40px;
  font-weight: 500;
}
.works .info {
  margin: 0 auto;
  margin-top: 71px;
  max-width: 1062px;
  width: 100%;
}
.works .info > p {
  text-align: center;
  font-size: 16px;
  font-weight: 700;
}
.works .info > p .size {
  font-size: 20px;
}
.works .info > p .color {
  color: #69CAE6;
}
.works .info > p .border {
  border-bottom: 2px solid #FF9E42;
}
.works .info > div {
  margin-top: 38px;
  box-shadow: 6px 6px 12px rgba(0, 0, 0, 0.3);
  border-radius: 50px;
}
.works .info > div a img {
  transition: filter 0.3s ease;
}
.works .info > div:has(a:hover) a:not(:hover) img {
  filter: brightness(0.5);
}
.works .info > div > div > a img {
  width: 100%;
}
.works .info > div > div > a picture {
  display: block;
}
.works .info .content {
  display: flex;
}
.works .info .content > div {
  width: 33%;
}
.works .info .content .txt {
  display: flex;
  align-items: center;
  justify-content: center;
}
.works .info .content .txt p {
  font-width: 500;
  font-size: 16px;
  max-width: 280px;
  line-height: 35px;
}

.banner {
  margin: 0 auto;
  margin-top: 190px;
  max-width: 1050px;
}
.banner div .pdf {
  text-decoration: none;
  font-size: 20px;
  color: #5A5A5A;
  font-weight: 500;
}
.banner div .pdf::after {
  content: url("../images/Group24.png");
  margin-left: 4px;
  position: relative;
  top: 2px;
}
.banner div img {
  width: 100%;
  margin-top: 30px;
}

.to-top {
  position: sticky;
  bottom: 40px;
  z-index: 100;
  display: flex;
  justify-content: flex-end;
  padding-right: 130px;
  margin-top: 360px;
  margin-bottom: -300px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.to-top a {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background-color: #69CAE6;
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
.to-top a img {
  width: 45px;
}
.to-top a span {
  margin-top: 4px;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
}

header.scrolled ~ main .to-top {
  opacity: 1;
  visibility: visible;
}

.why-hero {
  position: relative;
  overflow: hidden;
}
.why-hero .absolute {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding-left: 10%;
  z-index: 2;
}
.why-hero .absolute .page-ttl h1 {
  font-size: 24px;
  font-weight: 500;
}
.why-hero .absolute .page-ttl p {
  font-size: 16px;
  font-weight: 700;
  color: #69CAE6;
}
.why-hero .absolute .txt {
  margin-top: 94px;
}
.why-hero .absolute .txt img {
  width: auto;
}
.why-hero .absolute .txt p {
  font-weight: 500;
  margin-top: 20px;
  font-size: 24px;
}
.why-hero .absolute .name {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-top: 40px;
  padding-bottom: 80px;
}
.why-hero .page-img {
  width: 100%;
  position: relative;
}
.why-hero .page-img img {
  width: 100%;
}
.why-hero .page-img .shadow {
  width: 100%;
  bottom: -100px;
  position: absolute;
}

.ws-2 {
  width: 100%;
  margin-top: 60px;
}
.ws-2 > div {
  display: flex;
  flex-flow: column;
  align-items: end;
}
.ws-2 > div > div {
  background-color: #fff;
  border-right-radius: 30px;
  max-width: 939px;
  width: 100%;
  padding: 47px 90px;
  border-radius: 30px 0 0 30px;
}
.ws-2 > div > div h2 {
  font-weight: 700;
  font-size: 24px;
}
.ws-2 > div > div p {
  font-weight: 700;
  font-size: 16px;
  line-height: 30px;
  margin-top: 15px;
}
.ws-2 > div > div:last-child {
  margin-top: 20px;
}

.ws-3 {
  margin-top: 169px;
}
.ws-3 .s-ttl {
  text-align: center;
}
.ws-3 .s-ttl h2 {
  font-weight: 500;
  font-size: 40px;
}
.ws-3 .info {
  margin-top: 73px;
}
.ws-3 .info .img {
  max-width: 1143px;
  width: 100%;
  margin: 0 auto;
}
.ws-3 .info .txt {
  text-align: center;
  margin-top: 92px;
}
.ws-3 .info .txt p {
  font-size: 16px;
  font-weight: 400;
}
.ws-3 .info .point {
  max-width: 1039px;
  width: 100%;
  margin: 0 auto;
  margin-top: 21px;
}

.ws-4 {
  margin-top: 180px;
}
.ws-4 .s-ttl {
  max-width: 816px;
  width: 100%;
  background-color: #fff;
  border-radius: 0 30px 30px 0;
  padding: 29px 0;
  padding-right: 48px;
  display: flex;
  justify-content: end;
}
.ws-4 .s-ttl h2 {
  font-weight: 500;
  font-size: 40px;
  line-height: 60px;
}
.ws-4 .scroll {
  margin: 0 auto;
  margin-top: 31px;
  width: 27px;
}
.ws-4 .core {
  display: flex;
  max-width: 1250px;
  margin: 0 auto;
  margin-top: 100px;
  justify-content: center;
}
.ws-4 .core .img {
  max-width: 838px;
  width: 100%;
  position: relative;
  left: 80px;
  z-index: 2;
}
.ws-4 .core .img img {
  width: 100%;
}
.ws-4 .core .item {
  background-color: #FFF6E8;
  border-radius: 50%;
  max-width: 570px;
  height: 570px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column;
  position: relative;
  bottom: 90px;
  right: 50px;
}
.ws-4 .core .item p {
  width: 380px;
}
.ws-4 .core .item .blue {
  color: #69CAE6;
  font-weight: 700;
  font-size: 16px;
}
.ws-4 .core .item h3 {
  width: 380px;
  font-weight: 500;
  font-size: 32px;
}
.ws-4 .core .item .txt {
  margin-top: 31px;
  font-weight: 400;
  font-size: 16px;
  line-height: 30px;
  color: #000;
}
.ws-4 .txt {
  margin-top: 98px;
  text-align: center;
}
.ws-4 .txt h4 {
  font-weight: 500;
  font-size: 32px;
}
.ws-4 .glaph {
  margin-top: 58px;
  display: flex;
  justify-content: center;
  gap: 28px;
}
.ws-4 .glaph img {
  max-width: 554px;
  width: 100%;
}
.ws-4 .point {
  margin: 0 auto;
  margin-top: 80px;
  max-width: 1039px;
  width: 100%;
}
.ws-4 .point img {
  width: 100%;
}

.ws-5 {
  position: relative;
  margin-top: 280px;
}
.ws-5 .s-ttl {
  text-align: center;
}
.ws-5 .s-ttl h2 {
  font-weight: 500;
  font-size: 40px;
}
.ws-5 .main {
  margin: 0 auto;
  margin-top: 49px;
  background-color: #FFEED9;
  max-width: 1093px;
  width: 100%;
  border-radius: 50px;
  padding: 38px;
  position: relative;
  overflow: hidden;
}
.ws-5 .main .item-erea {
  display: flex;
  justify-content: space-between;
  z-index: 2;
  position: relative;
}
.ws-5 .main .item-erea .item .img {
  max-width: 328px;
  width: 100%;
}
.ws-5 .main .item-erea .item .info {
  max-width: 328px;
  width: 100%;
  background-color: #fff;
  border-radius: 30px;
  text-align: center;
  height: 234px;
  margin-top: 17px;
  padding-top: 21px;
}
.ws-5 .main .item-erea .item .info .midashi {
  margin: 0 auto;
  font-size: 16px;
  font-weight: 500;
  padding: 5px 25px;
  background-color: #FF9E42;
  max-width: 250px;
  width: 100%;
  color: #fff;
  border-radius: 50px;
}
.ws-5 .main .item-erea .item .info > div {
  height: 158px;
  display: flex;
  justify-content: center;
  flex-flow: column;
}
.ws-5 .main .item-erea .item .info > div p {
  font-size: 16px;
  font-weight: 400;
}
.ws-5 .main .item-erea .item .info > div p:nth-child(n+2) {
  margin-top: 16px;
}
.ws-5 .main .item-erea .item:nth-child(2) {
  margin-top: 118px;
}
.ws-5 .main .item-erea .item:nth-child(3) {
  margin-top: 80px;
}
.ws-5 .main .sub-t {
  text-align: center;
  margin-top: 96px;
  z-index: 2;
  position: relative;
}
.ws-5 .main .sub-t h3 {
  font-weight: 500;
  font-size: 24px;
  letter-spacing: 5%;
}
.ws-5 .main .sub-t h3 .orange {
  color: #fff;
  background-color: #FF9E42;
}
.ws-5 .main .sub-t h3 .border {
  border-left: 2px solid #FF9E42;
  border-top: 2px solid #FF9E42;
  border-bottom: 2px solid #FF9E42;
  font-size: 28px;
}
.ws-5 .main .sub-t h3 .border:last-child {
  border-right: 2px solid #FF9E42;
}
.ws-5 .main .txt {
  margin: 0 auto;
  margin-top: 40px;
  max-width: 874px;
  width: 100%;
  text-align: center;
  z-index: 2;
  position: relative;
}
.ws-5 .main .txt p {
  font-width: 400;
  font-size: 16px;
}
.ws-5 .main .btn {
  margin: 0 auto;
  margin-top: 96px;
  max-width: 615px;
  width: 100%;
  padding-bottom: 12px;
  z-index: 2;
  position: relative;
}
.ws-5 .main .bg-img {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.kyotsuu-header {
  max-width: 1136px;
  width: 100%;
  margin: 0 auto;
  margin-top: 150px;
  position: relative;
  overflow: hidden;
}
.kyotsuu-header .hero-img {
  width: 100%;
}
.kyotsuu-header .page-ttl {
  background-color: #FFFCF4;
  border-radius: 50%;
  position: absolute;
  bottom: -190px;
  left: 24%;
  width: 600px;
  height: 300px;
  text-align: center;
}
.kyotsuu-header .page-ttl p {
  margin-top: 31px;
  font-weight: 700;
  font-size: 16px;
  color: #69CAE6;
}
.kyotsuu-header .page-ttl h1 {
  font-size: 36px;
  font-weight: 500;
  margin-top: 7px;
}

#ui-turn, #career, #jutaku-hojo, #kekkon-iwaikin, #shataku-fuyo,
#kosodate-shien, #taishokukin, #rehabili-kaigo, #ict, #no-lifting {
  scroll-margin-top: 110px;
}

.f-1 {
  margin-top: 100px;
}
.f-1 .s-ttl {
  text-align: center;
}
.f-1 .s-ttl p:first-child {
  font-size: 20px;
  font-weight: 500;
}
.f-1 .s-ttl p:last-child {
  margin-top: 23px;
  font-weight: 500;
  font-size: 16px;
}
.f-1 .s-nav {
  max-width: 842px;
  background-color: #FFE9D5;
  margin: 0 auto;
  margin-top: 68px;
  border-radius: 20px;
  padding: 34px 0;
}
.f-1 .s-nav > div {
  display: flex;
  justify-content: space-between;
}
.f-1 .s-nav > div .nav-ttl {
  border-bottom: 1px solid #FF9E42;
  padding-left: 24px;
  height: 50px;
}
.f-1 .s-nav > div .nav-ttl p:first-child {
  font-size: 14px;
  font-weight: 300;
}
.f-1 .s-nav > div .nav-ttl p:last-child {
  font-size: 14px;
  font-weight: 500;
}
.f-1 .s-nav > div .menu {
  display: flex;
  flex-flow: column;
  gap: 4px;
}
.f-1 .s-nav > div .menu a {
  text-decoration: none;
  color: #5A5A5A;
  font-size: 14px;
  font-weight: 500;
}
.f-1 .s-nav > div .menu a:first-child:after {
  content: url(../images/arrow-down.svg);
  position: relative;
  top: 4px;
  left: 11px;
}
.f-1 .s-nav > div .last {
  padding-right: 35px;
}
.f-1 .s-nav > div .last a:first-child:after {
  content: url(../images/arrow-down.svg);
  position: relative;
  top: 4px;
  left: 50px;
}

.features-ttl {
  margin: 0 auto;
  margin-top: 165px;
  max-width: 1150px;
  width: 100%;
}
.features-ttl .s-ttl {
  display: flex;
  gap: 18px;
  align-items: center;
}
.features-ttl .s-ttl img {
  width: 70px;
}
.features-ttl .s-ttl h2 {
  font-size: 36px;
  font-weight: 500;
  position: relative;
  top: 6px;
}
.features-ttl .main {
  padding-left: 90px;
}
.features-ttl .main .txt {
  margin-top: 40px;
}
.features-ttl .main .txt p {
  font-size: 16px;
  font-weight: 500;
}

.fs-1 .main .sub-t {
  margin-top: 53px;
}
.fs-1 .main .sub-t h3 {
  font-weight: 700;
  font-size: 24px;
}
.fs-1 .main .margin {
  margin-top: 150px;
}
.fs-1 .main .info {
  margin-top: 18px;
}
.fs-1 .main .info p {
  font-weight: 500;
  font-size: 16px;
}
.fs-1 .main .g-ttl {
  margin-top: 24px;
  border-top: 2px solid #FF9E42;
  border-bottom: 2px solid #FF9E42;
  width: 287px;
  text-align: center;
  position: relative;
}
.fs-1 .main .g-ttl h4 {
  font-weight: 500;
  font-size: 16px;
  padding: 4px 0;
}
.fs-1 .main .g-ttl h4:before {
  content: "・";
  color: #FF9E42;
  font-size: 30px;
  position: absolute;
  left: 0;
  bottom: -6px;
}
.fs-1 .main .g-ttl h4:after {
  content: "・";
  color: #FF9E42;
  font-size: 30px;
  position: absolute;
  right: 0;
  bottom: -6px;
}
.fs-1 .main .graph {
  margin-top: 16px;
  text-align: end;
}
.fs-1 .main .graph > div {
  display: flex;
  gap: 27px;
}
.fs-1 .main .graph p {
  font-size: 12px;
  font-weight: 400;
  margin-top: 19px;
}
.fs-1 .main .torikumi {
  margin-top: 35px;
  background: #FFE9D5;
  border-radius: 30px;
  padding-top: 30px;
  padding-bottom: 30px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
.fs-1 .main .torikumi img {
  padding-left: 31px;
}
.fs-1 .main .torikumi p {
  padding-left: 65px;
  margin-top: 14px;
  font-size: 16px;
  font-weight: 500;
}
.fs-1 .main .banner-f {
  margin-top: 40px;
  display: flex;
  gap: 38px;
}
.fs-1 .main .banner-f > div p {
  font-size: 16px;
  font-weight: 500;
}
.fs-1 .main .banner-f > div p span {
  color: #FF9E42;
}
.fs-1 .main .banner-f > div p:after {
  content: url("../images/external-link.svg");
  margin-left: 8px;
}
.fs-1 .main .banner-f > div img {
  margin-top: 10px;
  max-width: 384px;
}
.fs-1 .main .carier {
  margin-top: 43px;
  background-color: #fff;
  padding: 33px 60px;
  border-radius: 30px;
}
.fs-1 .main .carier .ttl {
  display: flex;
  align-items: center;
  gap: 20px;
  border-bottom: 2px solid #FF9E42;
  padding-bottom: 20px;
}
.fs-1 .main .carier .ttl img {
  width: 55px;
}
.fs-1 .main .carier .ttl h4 {
  font-size: 32px;
  font-weight: 500;
}
.fs-1 .main .carier .info p {
  font-size: 16px;
  font-weight: 500;
  line-height: 30px;
}
.fs-1 .main .carier .info p span {
  font-weight: 700;
  color: #FF9E42;
}
.fs-1 .main .carier-margin {
  margin-top: 23px;
}

.fs-2 {
  margin-top: 270px;
}
.fs-2 .main .txt img {
  max-width: 860px;
  margin: 0 auto;
}
.fs-2 .main .table {
  margin: 0 auto;
  margin-top: 60px;
  max-width: 1027px;
  width: 100%;
  background-color: #fff;
  border-radius: 50px;
}
.fs-2 .main .table .top {
  display: flex;
  border-bottom: 3px solid #5A5A5A;
}
.fs-2 .main .table .top > div {
  padding: 22px 43px;
}
.fs-2 .main .table .top > div .ttl {
  text-align: center;
}
.fs-2 .main .table .top > div .ttl h3 {
  width: 238px;
  height: 48px;
  border-radius: 50px;
  border: 2px solid #5A5A5A;
  padding: 8px 60px;
  font-weight: 500;
  font-size: 16px;
}
.fs-2 .main .table .top > div .info {
  margin-top: 24px;
}
.fs-2 .main .table .top > div .info p {
  font-weight: 500;
  line-height: 30px;
}
.fs-2 .main .table .top > div .info p span {
  color: #FF9E42;
}
.fs-2 .main .table .top > div:nth-child(n+2) {
  border-left: 3px solid #5A5A5A;
}
.fs-2 .main .table .bottom {
  padding: 24px 46px 50px 46px;
}
.fs-2 .main .table .bottom .ttl {
  text-align: center;
  display: flex;
  justify-content: center;
}
.fs-2 .main .table .bottom .ttl h3 {
  width: 238px;
  height: 48px;
  border-radius: 50px;
  border: 2px solid #5A5A5A;
  padding: 8px 60px;
  font-weight: 500;
  font-size: 16px;
}
.fs-2 .main .table .bottom .info {
  margin-top: 24px;
  display: flex;
  gap: 20px;
  align-items: center;
}
.fs-2 .main .table .bottom .info .left {
  max-width: 448px;
  width: 100%;
}
.fs-2 .main .table .bottom .info .left p {
  font-weight: 500;
  font-size: 16px;
  line-height: 30px;
}
.fs-2 .main .table .bottom .info .left p .c-5a {
  color: #FF9E42;
}
.fs-2 .main .table .bottom .info .right {
  max-width: 467px;
  width: 100%;
  background-color: #E9F5F2;
  border-radius: 20px;
  display: flex;
  align-items: center;
  padding: 37px 50px;
}
.fs-2 .main .table .bottom .info .right p {
  font-size: 14px;
  font-weight: 500;
  line-height: 27px;
}
.fs-2 .main .table .bottom .info .right p span {
  color: #FF9E42;
}
.fs-2 .main .banner-f {
  margin-top: 70px;
}
.fs-2 .main .banner-f > div p {
  font-weight: 500;
  font-size: 16px;
}
.fs-2 .main .banner-f > div p a {
  text-decoration: none;
  color: #5A5A5A;
}
.fs-2 .main .banner-f > div p:after {
  content: url("../images/external-link.svg");
  margin-left: 8px;
}
.fs-2 .main .banner-f > div img {
  max-width: 420px;
  margin-top: 23px;
}

.fs-3 {
  margin-top: 390px;
}
.fs-3 .main .img {
  display: flex;
  justify-content: center;
}
.fs-3 .main .list > div > .ttl {
  width: 297px;
  background-color: #FF9E42;
  color: #fff;
  padding: 11px 88px;
  border-radius: 50px;
  text-align: center;
}
.fs-3 .main .list > div .item {
  display: flex;
  margin-top: 24px;
  gap: 39px;
}
.fs-3 .main .list > div .item .img {
  max-width: 454px;
  width: 100%;
}
.fs-3 .main .list > div .item .txt {
  max-width: 504px;
  width: 100%;
}
.fs-3 .main .list > div .item .txt > p {
  font-weight: 500;
  font-size: 16px;
}
.fs-3 .main .list > div .item .txt .bottom {
  display: flex;
  margin-top: 46px;
  justify-content: space-between;
}
.fs-3 .main .list > div .item .txt .bottom .center .ttl {
  text-align: center;
  max-width: 302px;
  width: 100%;
  position: relative;
  padding-top: 10px;
}
.fs-3 .main .list > div .item .txt .bottom .center .ttl p {
  font-weight: 700;
  font-size: 18px;
  color: #FF9E42;
}
.fs-3 .main .list > div .item .txt .bottom .center .ttl p:after {
  content: "";
  width: 48px;
  height: 2px;
  background-color: #FF9E42;
  display: block;
  position: absolute;
  left: 128px;
  bottom: -6px;
}
.fs-3 .main .list > div .item .txt .bottom .center .info {
  margin-top: 12px;
  text-align: center;
}
.fs-3 .main .list > div .item .txt .bottom .center .info > p {
  line-height: 30px;
}
.fs-3 .main .list > div:nth-child(n+2) {
  margin-top: 53px;
}
.fs-3 .main .list > div:last-child .ttl {
  padding: 11px 44px;
}

.staff-section {
  max-width: 1140px;
  width: 100%;
  margin: 0 auto;
}

.st-1 {
  margin-top: 100px;
}
.st-1 .txt {
  text-align: center;
}
.st-1 .txt p {
  font-weight: 500;
  font-size: 16px;
  line-height: 30px;
}
.st-1 .content {
  margin-top: 106px;
}
.st-1 .content .tap {
  display: flex;
  justify-content: center;
}
.st-1 .content .btn {
  margin-top: 33px;
  display: flex;
  gap: 33px;
}
.st-1 .content .btn > div {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  max-width: 357px;
  width: 100%;
  height: 165px;
  text-align: center;
}
.st-1 .content .btn > div img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.st-1 .content .btn > div a {
  text-decoration: none;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  position: relative;
  z-index: 2;
  padding: 68px 148px;
}
.st-1 .content .btn > div .padding {
  padding: 53px 85px;
}

.st-2 {
  margin-top: 169px;
  scroll-margin-top: 320px;
}
.st-2 .ttl h2 {
  font-size: 24px;
  font-weight: 700;
}
.st-2 .txt p {
  margin-top: 43px;
  font-size: 16px;
  font-weight: 400;
  line-height: 30px;
}
.st-2 .info {
  margin-top: 81px;
}
.st-2 .info .ttl {
  display: flex;
  align-items: center;
  gap: 20px;
  border-bottom: 3px solid #69CAE6;
  max-width: 448px;
  width: 100%;
}
.st-2 .info .ttl img {
  position: relative;
  top: 2px;
}
.st-2 .info .ttl h3 {
  font-weight: 500;
  font-size: 16px;
}
.st-2 .info > p {
  margin-top: 19px;
  font-weight: 500;
  font-size: 16px;
  line-height: 30px;
}

.st-3 {
  margin-top: 178px;
}
.st-3 .ttl h2 {
  font-size: 36px;
  font-weight: 500;
}
.st-3 .tap {
  margin-top: 41px;
  padding-left: 20px;
}
.st-3 .tap p {
  font-weight: 500;
  font-size: 16px;
}
.st-3 .img {
  margin-top: 20px;
  display: flex;
  justify-content: space-around;
  width: 100%;
}
.st-3 .img img {
  cursor: pointer;
}

.st-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
  background-color: rgba(90, 90, 90, 0.6);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.st-modal.is-open {
  opacity: 1;
  visibility: visible;
}
.st-modal .content {
  position: relative;
  background-color: #FFFCF4;
  border-radius: 40px;
  max-width: 1065px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 64px 130px;
}
.st-modal .content .close {
  position: absolute;
  top: 20px;
  right: 28px;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 28px;
  line-height: 1;
  color: #5A5A5A;
}
.st-modal .content > h3 {
  text-align: center;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0.1em;
}
.st-modal .content .profile {
  display: flex;
  gap: 40px;
  margin-top: 48px;
}
.st-modal .content .profile .photo {
  max-width: 279px;
  width: 100%;
  flex-shrink: 0;
}
.st-modal .content .profile .photo img {
  width: 100%;
}
.st-modal .content .profile .txt {
  font-size: 14px;
  max-width: 491px;
  width: 100%;
}
.st-modal .content .profile .txt p {
  margin-top: 14px;
  font-weight: 500;
  font-size: 16px;
}
.st-modal .content .profile .txt p:first-child {
  margin-top: 0;
}
.st-modal .content .profile .txt .desc {
  margin-top: 14px;
  letter-spacing: 5%;
}
.st-modal .content .photos {
  display: flex;
  justify-content: space-between;
  margin-top: 48px;
}
.st-modal .content .photos img {
  max-width: 258px;
  width: 100%;
  aspect-ratio: 4/3;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px;
}

.recruit-tab {
  max-width: 1136px;
  width: 100%;
  margin: 0 auto;
  margin-top: 100px;
}
.recruit-tab__btns {
  display: flex;
  background-color: #CEEEF7;
  border-radius: 15px;
}
.recruit-tab__btn {
  flex: 1;
  padding: 18px 0;
  border: none;
  background: none;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  color: #5A5A5A;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.recruit-tab__btn.is-active {
  background-color: #69CAE6;
  color: #fff;
  font-weight: 700;
}
.recruit-tab__btn:nth-child(2) {
  border-right: 2px solid #fff;
  border-left: 2px solid #fff;
  border-radius: none;
}
.recruit-tab__btn:nth-child(1) {
  border-radius: 15px 0 0 15px;
}
.recruit-tab__btn:nth-child(3) {
  border-radius: 0 15px 15px 0;
}
.recruit-tab__panel {
  display: none;
  margin-top: 88px;
}
.recruit-tab__panel.is-active {
  display: block;
}
.recruit-tab__panel .cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 24px;
}
.recruit-tab__panel .card {
  position: relative;
  display: block;
  background-color: #fff;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  padding: 26px 46px 13px 46px;
  text-decoration: none;
  color: #5A5A5A;
}
.recruit-tab__panel .card .date {
  font-size: 12px;
  font-weight: 500;
}
.recruit-tab__panel .card .ttl {
  margin-top: 10px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.8;
  height: 46px;
}
.recruit-tab__panel .card img {
  width: 90px;
  margin: 24px auto 0;
}
.recruit-tab__panel .card .tag {
  margin-top: 30px;
  background-color: #69CAE6;
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  padding: 4px 18px;
  border-radius: 20px;
  width: 101px;
  display: flex;
  justify-content: center;
}
.recruit-tab__panel .card .kaigo {
  width: 200px;
}
.recruit-tab .no-jobs {
  text-align: center;
  padding: 60px 0;
  font-size: 14px;
  font-weight: 500;
}
.recruit-tab .alert {
  margin-top: 60px;
}
.recruit-tab .alert p {
  font-weight: 500;
  font-size: 12px;
}

.recruit-table {
  margin-top: 100px;
}
.recruit-table .ttl {
  text-align: center;
}
.recruit-table .ttl h2 {
  font-weight: 500;
  font-size: 24px;
}
.recruit-table table {
  margin: 0 auto;
  margin-top: 65px;
  max-width: 1136px;
  width: 100%;
}
.recruit-table table tbody {
  display: flex;
  flex-flow: column;
}
.recruit-table table tbody tr {
  display: flex;
  align-items: center;
}
.recruit-table table tbody tr th {
  width: 100%;
  max-width: 291px;
  font-weight: 500;
  font-size: 16px;
  padding: 33px 0px;
  background-color: #E9F5F2;
}
.recruit-table table tbody tr td {
  width: 100%;
  max-width: 845px;
  font-weight: 500;
  font-size: 16px;
  padding: 33px 112px;
}
.recruit-table table tbody tr:nth-child(n+2) {
  border-right: #5A5A5A solid 1px;
  border-left: #5A5A5A solid 1px;
  border-bottom: #5A5A5A solid 1px;
  border-bottom: #5A5A5A solid 1px;
}
.recruit-table table tbody tr:first-child {
  border-right: #5A5A5A solid 1px;
  border-left: #5A5A5A solid 1px;
  border-bottom: #5A5A5A solid 1px;
  border-top: #5A5A5A solid 1px;
}
.recruit-table .btn {
  margin-top: 255px;
  display: flex;
  flex-flow: column;
  gap: 17px;
  align-items: center;
}
.recruit-table .btn a {
  max-width: 328px;
  width: 100%;
  text-align: center;
  height: 67px;
  padding: 22px 0;
  background-color: #69CAE6;
  border-radius: 50px;
  text-decoration: none;
  color: #fff;
}
.recruit-table .btn .icon::before {
  content: url("../images/left-allow.svg");
  position: relative;
  right: 10px;
}

.privacy {
  margin: 0 auto;
  margin-top: 100px;
  max-width: 1081px;
  width: 100%;
}
.privacy p {
  font-size: 16px;
  font-weight: 400;
}
.privacy p a {
  color: #5A5A5A;
}
.privacy h2 {
  font-size: 16px;
  font-weight: 400;
  margin-top: 20px;
}

footer {
  margin-top: 360px;
  background-color: #FFA954;
  color: #fff;
}
footer .scroll-img {
  overflow: hidden;
  position: relative;
}
footer .scroll-img .scroll-track {
  display: flex;
  width: -moz-max-content;
  width: max-content;
  animation: footer-scroll 40s linear infinite;
}
footer .scroll-img .scroll-track img {
  display: block;
}
footer .scroll-img .scroll-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-flow: column;
}
footer .scroll-img .scroll-content .btn {
  display: flex;
  gap: 24px;
  margin-top: 31px;
}
footer .scroll-img .scroll-content .btn a {
  background-color: #69CAE6;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 71px;
  width: 260px;
  color: #fff;
  border-radius: 20px;
}
footer .main .item {
  margin-top: 29px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}
footer .main .item > div:first-child {
  grid-column: 2;
  display: flex;
  justify-content: center;
}
footer .main .item > div:last-child {
  grid-column: 3;
  display: flex;
  justify-content: center;
}
footer .main .item .info {
  display: flex;
  position: relative;
}
footer .main .item .info .txt {
  flex-flow: column;
  align-items: center;
  display: flex;
}
footer .main .item .info .txt > a {
  display: block;
  margin-top: 10px;
  text-decoration: none;
  color: #fff;
}
footer .main .item .info .img {
  display: flex;
  position: absolute;
  left: calc(100% + 20px);
  top: 50%;
  transform: translateY(-50%);
  width: -moz-max-content;
  width: max-content;
  gap: 10px;
}
footer .main .item .info .img img {
  height: 50px;
}
footer .main .item .out {
  gap: 10px;
  position: relative;
  bottom: 20px;
}
footer .main .item .out div {
  display: flex;
  flex-flow: column;
  text-align: center;
}
footer .main .item .out div p {
  font-size: 12px;
  font-weight: 400;
  height: 30px;
}
footer .main .item .out div a {
  margin-top: 10px;
}
footer .main .f-nav {
  max-width: 1083px;
  margin: 0 auto;
  margin-top: 56px;
  border-top: 1px solid #fff;
  display: flex;
}
footer .main .f-nav div {
  margin: 0 auto;
  margin-top: 20px;
  display: flex;
  max-width: 600px;
  width: 100%;
  flex-wrap: wrap;
}
footer .main .f-nav div a {
  text-decoration: none;
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  padding: 10px 0;
}
footer .main .f-nav div a:nth-child(n+1) {
  margin-left: 47px;
}
footer .main .f-nav div a:last-child {
  margin-top: 4px;
}
footer .main .f-nav div .recruit {
  background-color: #69CAE6;
  padding: 10px 36px;
  border-radius: 5px;
}
footer .main .copy {
  text-align: center;
  margin-top: 86px;
  padding-bottom: 28px;
}

@keyframes footer-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@media screen and (max-width: 1024px) {
  header .h-logo {
    top: -120px;
    left: -170px;
    width: 420px;
    height: 280px;
  }
  header .h-logo a {
    padding-right: 40px;
  }
  header .h-logo a img {
    width: 120px;
  }
  header .h-logo a p {
    font-size: 12px;
    margin-top: 10px;
  }
  header .h-nav {
    padding-right: 20px;
  }
  .h-deco {
    top: -120px;
    left: -170px;
    width: 420px;
    height: 280px;
  }
}
@media screen and (max-width: 767px) {
  header .h-logo {
    top: -100px;
    left: -130px;
    width: 300px;
    height: 210px;
  }
  header .h-logo a {
    padding-right: 50px;
    padding-top: 90px;
  }
  header .h-logo a img {
    width: 100px;
  }
  header .h-logo a p {
    font-size: 9px;
    margin-top: 6px;
    letter-spacing: 2px;
  }
  header .h-nav {
    gap: 8px;
    padding-top: 10px;
    padding-right: 10px;
  }
  header .h-nav .nav-group {
    display: none;
  }
  header .h-nav .hamburger {
    width: 64px;
    height: 64px;
    gap: 6px;
    padding: 10px;
  }
  header .h-nav .hamburger span {
    width: 28px;
  }
  .h-deco {
    top: -100px;
    left: -130px;
    width: 300px;
    height: 210px;
  }
  .h-menu {
    padding: 32px 20px;
  }
  .h-menu__head {
    display: block;
  }
  .h-menu__head .logo {
    gap: 12px;
    align-items: center;
    padding-right: 52px;
  }
  .h-menu__head .logo a img {
    width: 72px;
  }
  .h-menu__head .logo .name {
    font-size: 13px;
    line-height: 1.6;
    margin-top: 0;
  }
  .h-menu__head .btns {
    margin-top: 40px;
    gap: 12px;
    justify-content: center;
  }
  .h-menu__head .btns .menu-recruit {
    flex: 1;
    max-width: 240px;
    justify-content: center;
    font-size: 14px;
    padding: 12px 16px;
  }
  .h-menu__head .btns .menu-tel img {
    width: 40px;
    margin-right: 0;
  }
  .h-menu__close {
    position: absolute;
    top: 0;
    right: 0;
    width: 44px;
    height: 36px;
  }
  .h-menu__nav {
    margin-top: 40px;
    margin-right: auto;
    gap: 24px;
  }
  .h-menu__nav .item {
    gap: 12px;
  }
  .h-menu__nav .item .num {
    font-size: 13px;
  }
  .h-menu__nav .item a {
    font-size: 18px;
  }
  .h-menu__nav .sub {
    gap: 20px;
    padding-left: 40px;
  }
  .h-menu__nav .sub a {
    font-size: 16px;
  }
  .h-menu__sns {
    position: static;
    margin-top: 48px;
    padding-bottom: 24px;
    width: -moz-max-content;
    width: max-content;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }
  .h-menu__sns .hp img {
    width: 130px;
  }
  .h-menu__sns .insta {
    justify-content: center;
  }
}
@media screen and (max-width: 1024px) {
  .hero > div {
    height: 560px;
    padding: 0 20px;
  }
  .hero > div > div:first-child p {
    font-size: 26px;
  }
  .hero > div > div:first-child p span {
    font-size: 38px;
  }
  .hero > div .right > a img {
    left: 30px;
  }
  .works {
    padding: 0 20px;
  }
  .banner {
    padding: 0 20px;
  }
}
@media screen and (max-width: 767px) {
  body {
    overflow-x: hidden;
  }
  .sp-br {
    display: block;
  }
  .s-btn {
    margin-top: 32px;
  }
  .s-btn a {
    font-size: 14px;
  }
  .hero > div {
    margin-top: 90px;
    height: auto;
    flex-flow: column;
    align-items: stretch;
    padding: 0;
  }
  .hero > div > div:first-child {
    width: 100%;
    height: 420px;
    display: flex;
    flex-flow: column;
    justify-content: flex-end;
  }
  .hero > div > div:first-child > img {
    width: 80%;
    padding-left: 16px;
    padding-bottom: 50px;
  }
  .hero > div > div:first-child p {
    font-size: 40px;
    padding-left: 16px;
    padding-bottom: 24px;
  }
  .hero > div > div:first-child p span {
    font-size: 26px;
  }
  .hero > div .right {
    width: 100%;
    flex-flow: row;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-top: 60px;
    padding: 0 16px;
    flex-flow: column;
  }
  .hero > div .right > a {
    width: 90%;
  }
  .hero > div .right > a img {
    position: static;
    max-width: 98%;
  }
  .hero > div .right > a img:last-child {
    margin-top: 0;
  }
  .hero > div .right .big {
    max-width: 100%;
  }
  .hero > div .hero-img {
    height: 420px;
    -o-object-fit: cover;
       object-fit: cover;
    top: 0;
  }
  .about {
    padding: 0 20px;
  }
  .about::before {
    background-position: center 80px;
  }
  .about > div h2 {
    padding-top: 130px;
    font-size: 24px;
  }
  .about > div h3 {
    margin-top: 220px;
    font-size: 22px;
  }
  .about > div > p {
    width: 100%;
    margin-top: 24px;
    font-size: 14px;
    line-height: 2;
  }
  .about > div h4 {
    margin-top: 180px;
    font-size: 22px;
    right: 0;
  }
  .about > div > img {
    width: 60%;
  }
  .about > div > div {
    flex-flow: column;
    gap: 16px;
    margin-top: 48px;
  }
  .about > div > div > p {
    font-size: 14px;
  }
  .features {
    padding-top: 60px;
  }
  .features .s-ttl h2 {
    font-size: 24px;
  }
  .features .s-ttl h2 .sp-br {
    display: block;
  }
  .features .main-content {
    margin-top: 40px;
  }
  .features .main-content .bg1 {
    width: 120px;
    right: 10px;
    top: -20px;
  }
  .features .main-content .bg2 {
    width: 140px;
    bottom: -120px;
  }
  .features .main-content .item {
    flex-flow: column;
    margin-top: 60px;
  }
  .features .main-content .item .f-img {
    width: 80%;
    left: 0;
    bottom: 0;
    margin: 0 auto;
  }
  .features .main-content .item .f-txt {
    width: 100%;
    border-bottom-left-radius: 0;
    padding: 24px 20px 32px 20px;
    margin-top: 20px;
  }
  .features .main-content .item .f-txt h3 {
    font-size: 18px;
  }
  .features .main-content .item .f-txt p {
    font-size: 14px;
    line-height: 1.9;
    padding-left: 0;
    margin-top: 12px;
  }
  .features .main-content .item .f-txt > div {
    margin-left: 0;
    max-width: 100%;
    padding: 16px;
  }
  .features .main-content .item .f-txt > div::before {
    width: 100%;
    height: 100%;
  }
  .features .main-content .reverse {
    flex-flow: column;
  }
  .features .main-content .reverse .f-img {
    width: 80%;
    right: 0;
    bottom: 0;
  }
  .features .main-content .reverse .f-txt > div {
    flex-flow: column;
    gap: 8px;
  }
  .features .main-content .reverse .f-txt > div::before {
    height: 100%;
  }
  .features .main-content .last .f-txt > div {
    flex-flow: column;
    gap: 8px;
  }
  .features .main-content .last .f-txt > div > div:last-child {
    width: auto;
    height: auto;
    margin-top: 0;
  }
  .works {
    margin-top: 120px;
    padding: 0 20px;
  }
  .works .ttl h2 {
    font-size: 32px;
  }
  .works .ttl h2 .kuro {
    font-size: 12px;
    top: 6px;
  }
  .works .ttl h2 .era {
    font-size: 22px;
  }
  .works .info {
    margin-top: 40px;
  }
  .works .info > p {
    font-size: 14px;
  }
  .works .info > p .size {
    font-size: 16px;
  }
  .works .info > div {
    margin-top: 24px;
    border-radius: 0px;
    overflow: hidden;
    box-shadow: unset;
  }
  .works .info > div a {
    display: block;
  }
  .works .info > div a img {
    display: block;
    width: 100%;
    border-radius: 60px;
  }
  .works .info .content {
    flex-flow: column;
    margin-top: 32px;
    gap: 32px;
  }
  .works .info .content > div {
    width: 100%;
  }
  .works .info .content .txt {
    padding: 28px 0 32px 0;
    text-align: center;
  }
  .works .info .content .txt p {
    max-width: 100%;
    padding: 0 20px;
    font-size: 14px;
    line-height: 2;
  }
  .banner {
    margin-top: 80px;
    padding: 0 20px;
  }
  .banner div a {
    font-size: 16px;
  }
  .to-top {
    padding-right: 20px;
    bottom: 20px;
    margin-top: 120px;
    margin-bottom: -40px;
  }
  .to-top a {
    width: 64px;
    height: 64px;
  }
  .to-top a img {
    width: 28px;
  }
  .to-top a span {
    font-size: 11px;
  }
}
@media screen and (max-width: 1024px) {
  .ws-4 .core {
    padding: 0 20px;
  }
  .ws-4 .core .img {
    left: 40px;
  }
  .ws-4 .core .item {
    right: 20px;
    bottom: 40px;
  }
  .ws-5 {
    padding: 0 20px;
  }
}
@media screen and (max-width: 767px) {
  .why-hero {
    display: flex;
    flex-flow: column;
    padding-bottom: 24px;
  }
  .why-hero .page-img {
    order: 1;
    margin-top: 90px;
  }
  .why-hero .page-img .shadow {
    display: none;
  }
  .why-hero .absolute {
    order: 2;
    position: relative;
    z-index: 2;
    width: auto;
    margin: -48px 16px 0 16px;
    padding: 32px 20px 28px 20px;
    background-color: #FFFCF4;
    border-radius: 30px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
  }
  .why-hero .absolute .page-ttl {
    display: flex;
    flex-flow: column-reverse;
    align-items: center;
    text-align: center;
  }
  .why-hero .absolute .page-ttl h1 {
    font-size: 22px;
    position: relative;
    padding-bottom: 14px;
  }
  .why-hero .absolute .page-ttl h1::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 48px;
    height: 3px;
    border-radius: 2px;
    background: linear-gradient(90deg, #69CAE6 50%, #FF9E42 50%);
  }
  .why-hero .absolute .page-ttl p {
    font-size: 13px;
    letter-spacing: 2px;
  }
  .why-hero .absolute .txt {
    margin-top: 28px;
    text-align: center;
  }
  .why-hero .absolute .txt img {
    width: 100%;
    max-width: 300px;
  }
  .why-hero .absolute .txt p {
    font-size: 14px;
    line-height: 2;
    margin-top: 16px;
  }
  .why-hero .absolute .name {
    margin-top: 20px;
    padding-bottom: 0;
    justify-content: flex-end;
  }
  .why-hero .absolute .name img {
    width: 150px;
  }
  .ws-2 {
    margin-top: 40px;
  }
  .ws-2 > div > div {
    padding: 24px 20px;
    border-radius: 20px 0 0 20px;
  }
  .ws-2 > div > div h2 {
    font-size: 18px;
  }
  .ws-2 > div > div p {
    font-size: 14px;
    line-height: 1.9;
  }
  .ws-3 {
    margin-top: 80px;
  }
  .ws-3 .s-ttl h2 {
    font-size: 24px;
  }
  .ws-3 .info {
    margin-top: 40px;
    padding: 0 20px;
  }
  .ws-3 .info::before {
    content: "※ グラフは横にスクロールできます";
    display: block;
    font-size: 12px;
    color: #999;
    text-align: right;
    margin-bottom: 8px;
  }
  .ws-3 .info .img {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .ws-3 .info .img img {
    width: 700px;
    max-width: none;
    display: block;
    padding-bottom: 30px;
  }
  .ws-3 .info .txt {
    margin-top: 40px;
    text-align: left;
  }
  .ws-3 .info .txt p {
    font-size: 14px;
    line-height: 1.9;
  }
  .ws-3 .info .point img {
    width: 100%;
    max-width: 460px;
    display: block;
    margin: 0 auto;
  }
  .ws-4 {
    margin-top: 90px;
  }
  .ws-4 .s-ttl {
    padding: 20px;
  }
  .ws-4 .s-ttl h2 {
    font-size: 22px;
    line-height: 1.6;
  }
  .ws-4 .core {
    flex-flow: column;
    align-items: center;
    margin-top: 40px;
    padding: 0 20px;
  }
  .ws-4 .core .img {
    left: 0;
  }
  .ws-4 .core .item {
    bottom: 0;
    right: 0;
    height: auto;
    border-radius: 30px;
    margin-top: 24px;
    padding: 32px 0;
  }
  .ws-4 .core .item p {
    width: 85%;
  }
  .ws-4 .core .item h3 {
    width: 85%;
    font-size: 22px;
  }
  .ws-4 .core .item .txt {
    margin-top: 16px;
    font-size: 14px;
    line-height: 1.9;
  }
  .ws-4 .txt {
    margin-top: 60px;
    padding: 0 20px;
    text-align: unset;
  }
  .ws-4 .txt h4 {
    font-size: 22px;
  }
  .ws-4 .glaph {
    flex-flow: column;
    align-items: center;
    gap: 16px;
    margin-top: 32px;
    padding: 0 20px;
  }
  .ws-4 .point {
    margin-top: 48px;
    padding: 0 20px;
  }
  .ws-4 .point img {
    width: 100%;
    max-width: 460px;
    display: block;
    margin: 0 auto;
  }
  .ws-5 {
    margin-top: 120px;
    padding: 0 20px;
  }
  .ws-5 .s-ttl h2 {
    font-size: 24px;
  }
  .ws-5 .main {
    padding: 24px 20px;
    border-radius: 30px;
  }
  .ws-5 .main .item-erea {
    flex-flow: column;
    align-items: center;
    gap: 32px;
  }
  .ws-5 .main .item-erea .item:nth-child(2) {
    margin-top: 0;
  }
  .ws-5 .main .item-erea .item:nth-child(3) {
    margin-top: 0;
  }
  .ws-5 .main .item-erea .item .info {
    height: auto;
    padding-bottom: 21px;
  }
  .ws-5 .main .item-erea .item .info > div {
    height: auto;
    padding: 16px 12px 0 12px;
  }
  .ws-5 .main .sub-t {
    margin-top: 56px;
  }
  .ws-5 .main .sub-t h3 {
    font-size: 18px;
  }
  .ws-5 .main .sub-t h3 .border {
    font-size: 20px;
  }
  .ws-5 .main .txt {
    margin-top: 24px;
    text-align: left;
  }
  .ws-5 .main .txt p {
    font-size: 14px;
    line-height: 1.9;
  }
  .ws-5 .main .btn {
    margin-top: 48px;
  }
}
@media screen and (max-width: 1024px) {
  .features-ttl {
    padding: 0 20px;
  }
  .features-ttl .main {
    padding-left: 40px;
  }
  .fs-2 .main .table {
    margin-left: 20px;
    margin-right: 20px;
    width: auto;
  }
  .fs-3 .main {
    padding: 0 20px;
  }
}
@media screen and (max-width: 767px) {
  .kyotsuu-header {
    margin-top: 110px;
    padding-bottom: 24px;
  }
  .kyotsuu-header .hero-img img {
    width: 100%;
    display: block;
  }
  .kyotsuu-header .page-ttl {
    position: relative;
    bottom: -20px;
    left: 0;
    z-index: 2;
    width: auto;
    height: auto;
    margin: -44px 24px 0 24px;
    padding: 24px 20px 22px 20px;
    border-radius: 24px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
  }
  .kyotsuu-header .page-ttl p {
    margin-top: 0;
    font-size: 13px;
    letter-spacing: 2px;
  }
  .kyotsuu-header .page-ttl h1 {
    font-size: 22px;
    margin-top: 6px;
    display: inline-block;
    position: relative;
    padding-bottom: 14px;
  }
  .kyotsuu-header .page-ttl h1::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 48px;
    height: 3px;
    border-radius: 2px;
    background: linear-gradient(90deg, #69CAE6 50%, #FF9E42 50%);
  }
  .f-1 {
    margin-top: 60px;
    padding: 0 20px;
  }
  .f-1 .s-ttl p:first-child {
    font-size: 18px;
  }
  .f-1 .s-ttl p:last-child {
    margin-top: 16px;
    font-size: 14px;
    text-align: left;
    line-height: 1.9;
  }
  .f-1 .s-nav {
    margin-top: 40px;
    padding: 24px 20px;
  }
  .f-1 .s-nav > div {
    flex-flow: column;
    gap: 24px;
  }
  .f-1 .s-nav > div .nav-ttl {
    padding-left: 0;
    height: auto;
    padding-bottom: 8px;
  }
  .f-1 .s-nav > div .last {
    padding-right: 0;
  }
  .features-ttl {
    margin-top: 90px;
    padding: 0 20px;
  }
  .features-ttl .s-ttl {
    gap: 12px;
  }
  .features-ttl .s-ttl img {
    width: 48px;
  }
  .features-ttl .s-ttl h2 {
    font-size: 22px;
  }
  .features-ttl .main {
    padding-left: 0;
  }
  .features-ttl .main .txt {
    margin-top: 24px;
  }
  .features-ttl .main .txt p {
    font-size: 14px;
    line-height: 1.9;
  }
  .fs-1 .main .sub-t {
    margin-top: 40px;
  }
  .fs-1 .main .sub-t h3 {
    font-size: 18px;
  }
  .fs-1 .main .margin {
    margin-top: 80px;
  }
  .fs-1 .main .info p {
    font-size: 14px;
    line-height: 1.9;
  }
  .fs-1 .main .g-ttl {
    margin: 0 auto;
    margin-top: 24px;
  }
  .fs-1 .main .graph > div {
    flex-flow: column;
    gap: 16px;
  }
  .fs-1 .main .graph p {
    text-align: left;
  }
  .fs-1 .main .torikumi img {
    padding-left: 20px;
    max-width: calc(100% - 20px);
  }
  .fs-1 .main .torikumi p {
    padding-left: 20px;
    padding-right: 20px;
    font-size: 14px;
  }
  .fs-1 .main .banner-f {
    flex-flow: column;
    gap: 24px;
    text-align: center;
  }
  .fs-1 .main .banner-f > div p {
    font-size: 14px;
  }
  .fs-1 .main .banner-f > div img {
    max-width: 100%;
  }
  .fs-1 .main .carier {
    padding: 24px 20px;
    border-radius: 20px;
  }
  .fs-1 .main .carier .ttl {
    gap: 12px;
    padding-bottom: 12px;
  }
  .fs-1 .main .carier .ttl img {
    width: 40px;
  }
  .fs-1 .main .carier .ttl h4 {
    font-size: 20px;
  }
  .fs-1 .main .carier .info p {
    font-size: 14px;
    line-height: 1.9;
  }
  .fs-2 {
    margin-top: 120px;
  }
  .fs-2 .main .txt img {
    max-width: 100%;
  }
  .fs-2 .main .table {
    margin-top: 32px;
    margin-left: 20px;
    margin-right: 20px;
    width: auto;
    border-radius: 20px;
  }
  .fs-2 .main .table .top {
    flex-flow: column;
  }
  .fs-2 .main .table .top > div {
    padding: 20px;
  }
  .fs-2 .main .table .top > div .ttl h3 {
    width: auto;
    max-width: 238px;
    margin: 0 auto;
    padding: 8px 24px;
  }
  .fs-2 .main .table .top > div .info {
    margin-top: 16px;
    font-size: 14px;
  }
  .fs-2 .main .table .top > div:nth-child(n+2) {
    border-left: none;
    border-top: 3px solid #5A5A5A;
  }
  .fs-2 .main .table .bottom {
    padding: 20px 20px 32px 20px;
  }
  .fs-2 .main .table .bottom .ttl h3 {
    width: auto;
    max-width: 238px;
    padding: 8px 24px;
  }
  .fs-2 .main .table .bottom .info {
    flex-flow: column;
  }
  .fs-2 .main .table .bottom .info .left p {
    font-size: 14px;
  }
  .fs-2 .main .table .bottom .info .right {
    padding: 20px;
  }
  .fs-2 .main .banner-f {
    margin-top: 40px;
    padding: 0 20px;
  }
  .fs-2 .main .banner-f > div p {
    font-size: 14px;
  }
  .fs-2 .main .banner-f > div img {
    max-width: 100%;
  }
  .fs-3 {
    margin-top: 120px;
  }
  .fs-3 .main {
    padding: 0 20px;
  }
  .fs-3 .main .img img {
    max-width: 100%;
  }
  .fs-3 .main .list > div > .ttl {
    width: auto;
    max-width: 297px;
    padding: 11px 0;
  }
  .fs-3 .main .list > div .item {
    flex-flow: column;
    gap: 20px;
  }
  .fs-3 .main .list > div .item .txt {
    max-width: 100%;
  }
  .fs-3 .main .list > div .item .txt > p {
    font-size: 14px;
    line-height: 1.9;
  }
  .fs-3 .main .list > div .item .txt .bottom {
    align-items: center;
    gap: 10px;
    margin-top: 24px;
  }
  .fs-3 .main .list > div .item .txt .bottom .center .ttl > p:after {
    left: 110px;
  }
  .fs-3 .main .list > div:nth-child(n+2) {
    margin-top: 64px;
  }
}
@media screen and (max-width: 1024px) {
  .staff-section {
    padding: 0 20px;
  }
}
@media screen and (max-width: 767px) {
  .staff-section {
    padding: 0 20px;
  }
  .pc-br {
    display: none;
  }
  .st-1 {
    margin-top: 60px;
  }
  .st-1 .txt {
    text-align: left;
  }
  .st-1 .txt p {
    font-size: 14px;
    line-height: 1.9;
  }
  .st-1 .content {
    margin-top: 60px;
  }
  .st-1 .content .btn {
    flex-flow: column;
    align-items: center;
    gap: 20px;
  }
  .st-1 .content .btn > div a {
    padding: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
  }
  .st-1 .content .btn > div .padding {
    padding: 0;
  }
  .st-2 {
    margin-top: 90px;
  }
  .st-2 .ttl h2 {
    font-size: 20px;
  }
  .st-2 .txt p {
    margin-top: 24px;
    font-size: 14px;
    line-height: 1.9;
  }
  .st-2 .info {
    margin-top: 48px;
  }
  .st-2 .info > p {
    font-size: 14px;
    line-height: 1.9;
  }
  .st-3 {
    margin-top: 90px;
  }
  .st-3 .ttl h2 {
    font-size: 24px;
  }
  .st-3 .img {
    margin-top: 48px;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
  }
  .st-3 .img img {
    width: 44%;
  }
  .st-modal {
    padding: 24px 16px;
  }
  .st-modal .content {
    padding: 48px 20px 32px 20px;
    border-radius: 24px;
  }
  .st-modal .content .close {
    top: 12px;
    right: 16px;
  }
  .st-modal .content > h3 {
    font-size: 20px;
  }
  .st-modal .content .profile {
    flex-flow: column;
    align-items: center;
    gap: 24px;
    margin-top: 24px;
  }
  .st-modal .content .profile .txt {
    max-width: 100%;
  }
  .st-modal .content .profile .txt p {
    font-size: 14px;
  }
  .st-modal .content .photos {
    flex-flow: column;
    align-items: center;
    gap: 16px;
    margin-top: 24px;
  }
  .st-modal .content .photos img {
    max-width: 100%;
  }
}
@media screen and (max-width: 1024px) {
  .recruit-tab {
    padding: 0 20px;
  }
  .recruit-tab__panel .cards {
    grid-template-columns: repeat(2, 1fr);
  }
  .recruit-table table {
    margin-left: 20px;
    margin-right: 20px;
    width: auto;
  }
}
@media screen and (max-width: 767px) {
  .recruit-tab {
    margin-top: 60px;
    padding: 0 20px;
  }
  .recruit-tab__btns {
    border-radius: 10px;
  }
  .recruit-tab__btn {
    font-size: 12px;
    padding: 12px 0;
  }
  .recruit-tab__btn:nth-child(1) {
    border-radius: 10px 0 0 10px;
  }
  .recruit-tab__btn:nth-child(3) {
    border-radius: 0 10px 10px 0;
  }
  .recruit-tab__panel {
    margin-top: 48px;
  }
  .recruit-tab__panel .cards {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .recruit-tab__panel .card {
    padding: 20px 24px 13px 24px;
  }
  .recruit-tab__panel .card .ttl {
    height: auto;
  }
  .recruit-tab .alert {
    margin-top: 32px;
  }
  .recruit-table {
    margin-top: 60px;
  }
  .recruit-table .ttl h2 {
    font-size: 20px;
  }
  .recruit-table table {
    margin: 0 auto;
    margin-top: 32px;
    width: 95%;
  }
  .recruit-table table tbody tr {
    flex-flow: column;
    align-items: stretch;
  }
  .recruit-table table tbody tr th {
    max-width: 100%;
    padding: 12px 16px;
    text-align: left;
    font-size: 14px;
  }
  .recruit-table table tbody tr td {
    max-width: 100%;
    padding: 16px;
    font-size: 14px;
  }
  .recruit-table .btn {
    margin-top: 100px;
    padding: 0 20px;
  }
}
@media screen and (max-width: 1024px) {
  .privacy {
    padding: 0 20px;
  }
}
@media screen and (max-width: 767px) {
  .privacy {
    margin-top: 60px;
    padding: 0 20px;
  }
  .privacy p {
    font-size: 14px;
    line-height: 1.9;
  }
  .privacy h2 {
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  footer {
    margin-top: 80px;
  }
  footer .scroll-img .scroll-track img {
    height: 240px;
    width: auto;
  }
  footer .scroll-img .scroll-content {
    padding: 0 20px;
  }
  footer .scroll-img .scroll-content > img {
    max-width: 80%;
  }
  footer .scroll-img .scroll-content .btn {
    flex-flow: column;
    gap: 12px;
    margin-top: 16px;
  }
  footer .scroll-img .scroll-content .btn a {
    width: 220px;
    height: 48px;
    font-size: 14px;
    border-radius: 12px;
  }
  footer .main .item {
    display: flex;
    flex-flow: column;
    align-items: center;
    gap: 32px;
    margin-top: 40px;
    padding: 0 20px;
  }
  footer .main .item .info {
    flex-flow: column;
    align-items: center;
  }
  footer .main .item .info .img {
    position: static;
    transform: none;
    justify-content: center;
    margin-top: 16px;
  }
  footer .main .item .out {
    bottom: 0;
  }
  footer .main .f-nav {
    margin-top: 40px;
    padding: 0 20px;
  }
  footer .main .f-nav div {
    flex-flow: column;
    align-items: center;
    max-width: 100%;
  }
  footer .main .f-nav div a {
    margin-left: 0;
    font-size: 14px;
    padding: 8px 0;
  }
  footer .main .f-nav div a:nth-child(n+1) {
    margin-left: 0;
  }
  footer .main .f-nav div a:last-child {
    margin-top: 8px;
  }
  footer .main .f-nav div .recruit {
    padding: 10px 36px;
  }
  footer .main .copy {
    margin-top: 40px;
    padding-bottom: 20px;
    font-size: 12px;
    padding-left: 20px;
    padding-right: 20px;
  }
}/*# sourceMappingURL=style.css.map */