@charset "UTF-8";

/* CSS Document */
html {
  font-size: 62.5%;
  /* 16px * 62.5% = 10px */
  width: 100%;
  scroll-behavior: smooth;
}

:root {
  --yellow: #EFE106;
  --green: #025348;
  --en: "Oswald", sans-serif;
  --ja: "Noto Serif JP", serif;
}

body {
  color: #333333;
  /* RGB */
  background-color: #ffffff;
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  font-style: normal;
  font-size: clamp(1.4rem, 3.25vw, 1.6rem);
  letter-spacing: 0.04rem;
  line-height: 2;
  text-align: center;
}

.en {
  font-family: "Oswald", sans-serif;
  font-weight: 400;
  font-style: normal;
}

a {
  color: #333333;
}

a:hover {
  opacity: 0.7;
}

a.clarity:hover {
  opacity: 1;
}

*,
*:before,
*:after {
  box-sizing: border-box;
}

img {
  width: 100%;
  display: block;
}

.pc_none {
  display: block;
}

.sp_none {
  display: none;
}

.is-hide {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.white {
  color: #ffffff;
}

.yellow {
  color: var(--yellow);
}

.green {
  color: var(--green);
}

.red {
  color: #ff0000;
}

.left {
  text-align: justify;
}

.right {
  text-align: right;
}

.center {
  text-align: center;
}

.bold {
  font-weight: 700;
}

h2,
h3,
h4,
h5 {
  line-height: 1.5;
  font-weight: 400;
}

.fadeInUpTrigger,
.fadeInRightTrigger,
.fadeInleftTrigger {
  opacity: 0;
}

.flex {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.flex.row {
  flex-direction: row;
  justify-content: space-between;
}

header {
  width: 100%;
  height: 60px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  background-size: cover;
  z-index: 100;
}

.header_inner {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 4px 0 4px 2vw;
}

header .logo {
  max-width: 350px;
  width: 60%;
}

.ham_btn {
  position: absolute;
  cursor: pointer;
  width: 60px;
  height: 60px;
  z-index: 999;
  margin: 0;
  top: 0px;
  right: 0px;
  background: var(--green);
}

.ham_btn span {
  display: inline-block;
  transition: all .4s;
  position: absolute;
  left: 18px;
  height: 1px;
  background: #ffffff;
  width: 27px;
  top: 28px;
}

.ham_btn span:nth-of-type(1) {
  top: 12px;
}

.ham_btn span:nth-of-type(2) {
  top: 20px;
}

.ham_btn.active span:nth-of-type(1) {
  top: 15px;
  left: 15px;
  transform: translateY(6px) rotate(-45deg);
  width: 26px;
}

.ham_btn.active span:nth-of-type(2) {
  opacity: 0;
}

.ham_btn.active span:nth-of-type(3) {
  top: 27px;
  left: 16px;
  transform: translateY(-6px) rotate(45deg);
  width: 26px;
}

.ham_btn span:nth-of-type(3)::after {
  content: "Menu";
  position: absolute;
  top: 5px;
  left: -5px;
  color: #fff;
  font-size: 1.2rem;
  text-transform: uppercase;
}

.ham_btn.active span:nth-of-type(3)::after {
  content: "Close";
  transform: translateY(0) rotate(-45deg);
  top: 6px;
  left: 8px;
}

.nav_wrap {
  position: fixed;
  z-index: 100;
  top: 0;
  right: -120%;
  width: 100%;
  height: 100%;
  transition: all 0.6s;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--green);
  overflow-y: auto;
  padding: 5%;
}

.nav_wrap nav {
  height: 50%;
}

.nav_wrap ul {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-bottom: 20px;
}

.nav_wrap li {
  list-style: none;
  text-align: center;
  font-size: 1.6rem;
  line-height: 1;
  padding: 12px 0;
  margin-bottom: 8px;
}

.nav_wrap li a {
  color: #ffffff;
  text-decoration: none;
  padding: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-size: clamp(1.6rem, 3.7vw, 2.0rem);
}

.nav_wrap.show {
  right: 0;
}

.float_area.flex {
  gap: 0;
  position: fixed;
  top: 80px;
  right: -120%;
  transition: all 1s;
  width: min(8vw, 50px);
}

.float_area.flex.fixed {
  right: 0;
  transition: all 1s;
}

.tel a {
  display: inline-block;
}

.tel a p {
  position: relative;
  padding-left: 40px;
  font-size: min(9vw, 4.0rem);
  line-height: 1;
  font-weight: 700;
}

.tel a p::before {
  content: "";
  width: min(6.25vw, 30px);
  aspect-ratio: 1 / 1;
  background-image: url(../img/tel.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center bottom;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.more a {
  width: 80%;
  max-width: 270px;
  height: 66px;
  font-size: 1.6rem;
  font-weight: 700;
  margin: 40px auto;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  border-top: 1px solid #333333;
  border-bottom: 1px solid #333333;
  position: relative;
}

.more a p {
  position: relative;
  padding-right: 60px;
  z-index: 2;
}

.more a p::after {
  content: "";
  width: 40px;
  aspect-ratio: 23.63/3.22;
  background-image: url(../img/arrow.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center bottom;
  position: absolute;
  top: 50%;
  right: 0px;
  transform: translateY(-50%);
  z-index: 5;
}

.more.white a {
  color: #ffffff;
  border-top: 1px solid #ffffff;
  border-bottom: 1px solid #ffffff;
}

.more.white a p::after {
  background-image: url(../img/arrow_w.png);
}

/* MV */
.MV {
  position: relative;
}

.MV_slide {
  margin-inline: auto;
  overflow: hidden;
}

.slide img {
  width: 100%;
}

@keyframes zoomUp {
  0% {
    transform: scale(1.1);
  }

  100% {
    transform: scale(1);
  }
}

.add-animation {
  animation: zoomUp 10s linear 0s normal both;
}

.MV_text {
  width: 13%;
  max-width: 94px;
  position: absolute;
  right: 15%;
  top: calc(60px + 1vw);
}

.MV_text span {
  font-size: min(4.5vw, 5.0rem);
}

/* 共通 */
section {
  position: relative;
  padding: 40px 0;
}

.section_inner {
  width: 90%;
  margin: 0 auto;
}

#about .content.flex {
  align-items: flex-start;
}

#about .content_textWrap {
  padding: 0 0 0 5%;
  width: 80%;
  position: relative;
  z-index: 2;
}

#about h2 {
  font-size: clamp(3.0rem, 6.2vw, 4.3rem);
  text-align: left;
  margin-bottom: 3%;
}

#about .content_img {
  width: 70%;
  margin: 0 0 0 auto;
  position: relative;
  z-index: 2;
}

#about::before {
  content: "";
  width: 85%;
  height: 70%;
  background-color: #EFEFEF;
  position: absolute;
  top: 0;
  left: 0;
}

#service {
  background-image: url(../img/bg_01.png);
  background-size: cover;
  color: #ffffff;
}

.section_ttl {
  display: inline-flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: min(6vw, 60px);
  position: relative;
  z-index: 2;
}

.section_ttl .ttl {
  font-size: clamp(2.4rem, 6.2vw, 2.7rem);
  position: relative;
  padding: 0 3vw;
}

.section_ttl .ttl::before,
.section_ttl .ttl::after {
  content: "";
  width: min(10vw, 77px);
  height: 1px;
  background-color: #333333;
  position: absolute;
  top: 50%;
  right: 100%;
  transform: translateY(-50%);
}

.section_ttl.w .ttl::before,
.section_ttl.w .ttl::after {
  background-color: #ffffff;
}

.section_ttl .ttl::after {
  right: auto;
  left: 100%;
}

#service .content {
  padding-bottom: 40px;
}

#service .content_item {
  gap: 10px;
}

#service .content_item h3 {
  font-size: 2.0rem;
}

#service .content_item p {
  width: 94%;
  margin: 0 auto;
}

.bg {
  background-image: url(../img/bg_02.png);
  background-size: cover;
  background-repeat: no-repeat;
}

#case {
  padding: 60px 0;
}

#case .content {
  position: relative;
  z-index: 3;
}

#case::before {
  content: "";
  width: 90%;
  height: calc(100% - 80px);
  background-color: #ffffff;
  position: absolute;
  top: 30px;
  left: 5vw;
}

#case::after {
  content: "";
  width: calc(90% - 10px);
  height: calc(100% - 90px);
  border: 1px solid;
  position: absolute;
  top: 35px;
  left: calc(5vw + 5px);
  z-index: 0;
}

.top_slide {
  position: relative;
  z-index: 2;
  margin: 40px 0;
}

.slide {
  margin-left: 1vw;
  width: 30vw;
}

#recruit .content {
  gap: 0;
}

#recruit .content_textWrap {
  width: 90%;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

#recruit::before {
  content: "";
  width: 100%;
  height: 75%;
  background-color: #F4F3F1;
  position: absolute;
  top: 0;
  left: 0;
}

#recruit .content_img {
  width: 80%;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

#top_contact .content {
  width: 90%;
  margin: 0 auto;
  background-image: url(../img/contact_bg.png);
  background-size: cover;
  border: 1px solid #B7B7B7;
  padding: 5%;
  gap: 20px;
}

#top_contact .section_ttl {
  margin: 0 auto;
}

#top_contact .content>p {
  word-break: keep-all;
  font-size: clamp(1.6rem, 3.7vw, 2.0rem);
}

#company {
  padding-top: 120px;
  overflow: hidden;
}

#company .content {
  width: 90%;
  margin: 0 auto;
}

dl {
  width: 100%;
  margin: 0 auto;
  font-size: clamp(1.6rem, 3.7vw, 2.0rem);
  font-weight: 500;
  line-height: 1.5;
}

dl a {
  color: #333333;
}

.description-item {
  padding: 8px 0;
}

dt {
  font-size: clamp(1.4rem, 3.2vw, 1.8rem);
}

footer {
  background-color: var(--green);
  color: #ffffff;
  display: flex;
  flex-direction: column-reverse;
}

.footer_info {
  width: 90%;
  max-width: 480px;
  margin: 0 auto;
  padding-top: 40px;
}

footer .logo {
  width: 80%;
  max-width: 270px;
  margin: 0 auto 10px;
}

footer .tel {
  display: flex;
  flex-direction: column;
  align-items: center;
}

footer .tel a p {
  padding: 0;
}

footer .tel a p::before {
  display: none;
}

footer .tel span {
  font-size: clamp(1.4rem, 3.7vw, 2.0rem);
}

footer .map {
  height: min(80vw, 450px);
  width: 100%;
}

footer iframe {
  height: 100%;
  width: 100%;
  display: block;
}

#go_top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 40px;
  z-index: 50;
}

.cr {
  padding: 10px;
  background-color: var(--blue);
  font-weight: 700;
  color: #ffffff;
}

/* pcスタイル */
@media screen and (min-width: 960px) {
  .sp_none {
    display: block;
  }

  .pc_none {
    display: none;
  }

  header {
    position: fixed;
    height: 5vw;
    line-height: 1.2;
    background-color: rgba(0, 0, 0, 0.4);
    box-shadow: 0px 1px 6px rgba(0, 0, 0, 0.1);
  }

  .header_inner {
    gap: 20px;
    position: relative;
    align-items: center;
    z-index: 5;
    padding: 4px 5vw 0 2vw;
  }

  header .logo {
    width: 30%;
    max-width: 311px;
  }

  .float_area.flex {
    flex-direction: column;
    width: 50px;
    top: 5vw;
  }

  .pc_nav {
    width: calc(100% - 200px);
    max-width: 600px;
  }

  .pc_nav ul {
    width: 100%;
    font-size: 18px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
  }

  .pc_nav ul li a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    height: 100%;
    color: #ffffff;
    line-height: 1;
    position: relative;
  }

  .pc_nav ul li a::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #00E2C3;
    position: absolute;
    top: 140%;
    left: 50%;
    transform: translateX(-50%);
    transition: all 0.8s;
    opacity: 0;
  }

  .pc_nav ul li a:hover {
    opacity: 1;
  }

  .pc_nav ul li a:hover:before {
    opacity: 1;
  }

  .MV_text {
    width: 9%;
    right: 10%;
    top: 8vw;
  }

  .flex {
    flex-direction: row;
    justify-content: space-between;
  }

  .flex.reverse {
    flex-direction: row-reverse;
  }

  .flex.column {
    flex-direction: column;
    justify-content: flex-start;
  }

  section {
    padding: 100px 0 120px;
    overflow: hidden;
  }

  .section_inner {
    max-width: 1050px;
  }

  #about {
    padding-top: 60px;
  }

  #about .content.flex {
    align-items: flex-end;
    max-width: 1280px;
    margin: 0 auto;
    gap: min(5vw, 80px);
  }

  #about .content_textWrap {
    padding-bottom: min(12vw, 180px);
    width: 50%;
  }

  #about .content_img {
    width: 45%;
  }

  #service .content_item {
    width: calc((100% - 80px)/ 3);
    gap: 20px;
  }

  #service .content_item p {
    text-align: justify;
  }

  #case {
    padding: 140px 0 100px;
  }

  #case::before {
    content: "";
    width: 90%;
    height: calc(100% - 140px);
    background-color: #ffffff;
    position: absolute;
    top: 80px;
    left: 5vw;
  }

  #case::after {
    content: "";
    width: calc(90% - 40px);
    height: calc(100% - 180px);
    border: 1px solid;
    position: absolute;
    top: 100px;
    left: calc(5vw + 20px);
    z-index: 0;
  }

  .top_slide {
    margin: 80px 0 40px;
  }

  .slide {
    margin-left: 1vw;
    width: 25vw;
  }

  #case .more {
    margin: 80px auto 40px;
  }

  #recruit .content.flex {
    align-items: flex-end;
    max-width: 1280px;
    margin: 0 auto;
    gap: min(5vw, 80px);
  }

  #recruit {
    padding-bottom: 40px;
  }

  #recruit::before {
    width: 70%;
  }

  #recruit .content_textWrap {
    padding: 0 5% min(12vw, 180px);
    width: 50%;
  }

  #recruit .content_textWrap p {
    word-break: keep-all;
  }

  #recruit .content_textWrap .more a {
    margin: 80px auto 40px;
  }

  #recruit .content_img {
    width: 45%;
  }

  #top_contact {
    padding-top: 40px;
  }

  #top_contact .content {
    max-width: 870px;
  }

  #top_contact .content_itemWrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 653px;
    margin: 40px auto 0;
  }

  #top_contact .content_itemWrap .more a {
    margin: 0;
    width: 100%;
    width: 270px;
  }

  #company .content {
    max-width: 1100px;
    align-items: center;
  }

  #company .description-item {
    display: flex;
  }

  #company dt {
    width: 100px;
    font-size: 20px;
  }

  footer {
    flex-direction: row;
  }

  .footer_info.flex.column {
    width: 50%;
    justify-content: space-between;
  }

  footer .map {
    width: 50%;
  }

  footer ul {
    width: 90%;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
  }

  footer ul li a {
    color: #ffffff;
  }
}

.u_mv .MV_ttl {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #ffffff;
  font-size: clamp(2.5rem, 3.9vw, 4.0rem);
  display: flex;
  flex-direction: column;
}

.u_mv .MV_ttl span {
  font-size: clamp(1.7rem, 1.8vw, 2.4rem);
}

#service_01 {
  background-image: url(../img/bg_02.png);
  background-size: cover;
  padding-bottom: 100px;
}

#service_01 .section_inner {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

#service_01 .content {
  gap: 20px;
}

#service_01 .content_textWrap {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

#service_01 h3 {
  font-size: clamp(40px, 11vw, 6.6rem);
  display: flex;
  flex-direction: column;
  text-align: left;
  line-height: 1.2;
}

#service_01 h3 span {
  font-size: clamp(2.0rem, 5.1vw, 3.1rem);
}

#service_01 .content_textWrap p {
  text-align: left;
  font-size: clamp(1.5rem, 3.4vw, 2.0rem);
}

#service_01 .content.reverse h3 {
  text-align: right;
}

/* pcスタイル */
@media screen and (min-width: 960px) {
  #service_01 {
    padding: 120px 0 200px;
  }

  #service_01 .section_inner {
    max-width: 1280px;
    gap: 80px;
  }

  #service_01 .content {}

  #service_01 .content_img {
    width: 50%;
  }

  #service_01 .content_textWrap {
    width: 50%;
    gap: 40px;
  }

  #service_01 .content_textWrap p {
    max-width: 510px;
  }

  #service_01 .reverse .content {
    align-items: flex-end;
  }

  #service_01 .reverse .content_textWrap p {
    margin: 0 0 0 auto;
  }
}

#case_01 .section_inner {
  max-width: 1050px;
}

#case_01 .content_itemWrap {
  margin: 40px 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: min(3vw, 20px);
  position: relative;
}

#case_01 .content_itemWrap::before {
  content: "";
  width: 100vw;
  height: 80%;
  background-color: #EFEFEF;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}

/* モーダル */
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(255, 255, 255, 0.7);
}

.modal-content {
  position: relative;
  margin: 15% auto;
  width: 80%;
}

.modal-close {
  position: absolute;
  top: 5px;
  right: 5px;
  width: 26px;
  height: 26px;
  background-image: url(../img/modal_close.png);
  background-size: contain;
  cursor: pointer;
}

/* pcスタイル */
@media screen and (min-width: 960px) {
  #case_01 {
    padding: 80px 0;
  }

  #case_01 .content_itemWrap {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }

  #case_01 .content_item {
    width: calc((100% - 60px)/ 4);
  }

  .modal-close {
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
  }
}

#recruit_01 {
  padding-top: 0;
  background-color: #F4F3F1;
}

.recruit_01-head {
  background-image: url(../img/bg_05.png);
  background-size: cover;
  color: #ffffff;
  padding: 40px 5%;
  display: flex;
  flex-direction: column;
  gap: min(6vw, 60px);
}

.recruit_01-head>* {
  margin: 0 auto;
}

.corner-border {
  position: relative;
  padding: 20px;
  font-size: clamp(1.8rem, 4.1vw, 2.3rem);
  display: inline-block;
  width: 100%;
  max-width: 325px;
  margin: 0 auto;
}

.corner-border::before,
.corner-border::after,
.corner-border> :first-child::before,
.corner-border> :first-child::after {
  content: '';
  position: absolute;
  width: 10px;
  height: 10px;
  border-color: #ffffff;
  border-style: solid;
}

.corner-border::before {
  top: 0;
  left: 0;
  border-width: 2px 0 0 2px;
}

.corner-border::after {
  top: 0;
  right: 0;
  border-width: 2px 2px 0 0;
}

.corner-border> :first-child::before {
  bottom: 0;
  left: 0;
  border-width: 0 0 2px 2px;
}

.corner-border> :first-child::after {
  bottom: 0;
  right: 0;
  border-width: 0 2px 2px 0;
}

#recruit_01 .section_inner {
  padding: 40px 0;
  width: 96%;
  max-width: 1050px;
}

#recruit_01 .section_inner h3 {
  font-size: clamp(2.0rem, 5.3vw, 4.9rem);
  margin-bottom: min(6vw, 60px);
}

#recruit_01 .staff_anchorWrap {
  flex-direction: row;
  flex-wrap: nowrap;
}

#recruit_01 .staff_anchor a {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: clamp(1.6rem, 4.8vw, 2.7rem);
  line-height: 1.2;
}

#recruit_01 .staff_anchor a span {
  display: block;
  font-size: 16px;
}

#recruit_01 .content_wrap {
  margin: 40px 0;
}

#recruit_01 .content {
  background-color: #ffffff;
  padding: 5vw 3vw;
}

#recruit_01 .content_img {
  width: 100%;
  aspect-ratio: 370/277;
  background-image: url(../img/sp_staff_01.png);
  background-size: cover;
  background-position: center top;
}

#recruit_01 .content:nth-of-type(2) .content_img {

  background-image: url(../img/sp_staff_02.png);
}

#recruit_01 .content:nth-of-type(3) .content_img {
  background-image: url(../img/sp_staff_03.png);
}

#recruit_01 .content {
  background-color: #ffffff;
  padding: 5vw;
  gap: 20px;
  margin-bottom: 30px;
}

#recruit_01 .content_textWrap h4 {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: clamp(2.8rem, 8.3vw, 5.0rem);
  line-height: 1.2;
  font-weight: 700;
  width: 80%;
}

#recruit_01 .content_textWrap h4 span {
  display: block;
  font-size: 16px;
}

#recruit_01 .content_textWrap .corner-border::before,
#recruit_01 .content_textWrap .corner-border::after,
#recruit_01 .content_textWrap .corner-border> :first-child::before,
#recruit_01 .content_textWrap .corner-border> :first-child::after {
  border-color: #333333;
  border-style: solid;
}

#recruit_01 .content_textWrap dl {
  margin: 40px 0;
}

#recruit_01 .content_textWrap dt {
  font-size: clamp(1.6rem, 4.6vw, 2.2rem);
  position: relative;
  padding-left: 16px;
  word-break: keep-all;
  display: inline-block;
  margin-bottom: 10px;
}

#recruit_01 .content_textWrap dt::before {
  content: "";
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background-color: #EFE106;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

#recruit_01 .content_textWrap dd {
  padding-bottom: 30px;
  text-align: justify;
}

#recruit_02 {
  background-image: url(../img/bg_05.png);
  background-size: cover;
  color: #ffffff;
}

#recruit_02 h3 {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: min(6vw, 60px);
  position: relative;
  z-index: 2;
  font-size: clamp(2.4rem, 7.4vw, 5.0rem);
}

#recruit_02 h3 span {
  font-size: clamp(1.4rem, 3.25vw, 1.6rem);
}

.table01 {
  width: 100%;
  max-width: 500px;
  text-align: left;
  font-size: 1.8rem;
  margin: 0 auto 40px;
}

.table01 tr {
  width: 100%;
}

.table01 th {
  width: 120px;
  font-weight: 400;
}

.table01 td {
  padding-bottom: 20px;
  font-weight: 400;
}

/* pcスタイル */
@media screen and (min-width: 960px) {
  .recruit_01-head {
    padding: 80px 5%;
  }

  .corner-border {
    padding: 30px;
  }

  #recruit_01 .staff_anchor a {
    display: flex;
    flex-direction: row;
    align-items: center;
    text-align: left;
    gap: 10px;

  }

  #recruit_01 .content {
    padding: 0;
    width: 100%;
  }

  #recruit_01 .content>* {
    width: 50%;
  }

  #recruit_01 .content_textWrap {
    padding: 60px 2vw;
  }

  #recruit_01 .content_textWrap h4 {
    padding: 10px;
  }

  #recruit_01 .content_textWrap dl {
    text-align: justify;
  }

  #recruit_01 .content_img {
    aspect-ratio: auto;
    background-image: url(../img/staff_01.png);
    background-size: cover;
    background-position: center top;
  }

  #recruit_01 .content:nth-of-type(2) .content_img {

    background-image: url(../img/staff_02.png);
  }

  #recruit_01 .content:nth-of-type(3) .content_img {
    background-image: url(../img/staff_03.png);
  }

  #recruit_02 {
    padding-bottom: 40px;
  }

  #recruit_02 .content {
    align-items: center;
    margin-bottom: 80px;
  }

  #recruit_02 .table01 {
    margin-bottom: 0;
  }

  #recruit_02 th {
    width: 150px;
  }
}

#company_01 {
  background-image: url(../img/bg_06.png);
  background-size: cover;
  background-position: center;
  padding-bottom: 120px;
}

.company_01-head {
  padding: 40px 5% 60px;
  color: #ffffff;
  font-size: clamp(1.8rem, 4.1vw, 2.3rem);
}

#company_01 .content {
  background-color: #E6E6E6;
  padding: 40px 0;
}

#company_01 .table02 tr {
  display: flex;
  flex-direction: column;
  text-align: left;
}

#company_01 .table02 th {
  padding: 4px 10px;
  background-color: #4D4D4D;
  color: #ffffff;
  width: 100px;
  text-align: center;
}

#company_01 .table02 td {
  padding: 4px 0 20px;
}

#contact {
  background-image: url(../img/contact_bg.png);
  background-size: cover;
}

#contact h3 {
  font-size: clamp(3.0rem, 9.3vw, 4.3rem);
  margin-bottom: 3%;
}

#contact .content {
  background-color: #ffffff;
  padding: 60px 0 20px;
  margin-top: 40px;
  position: relative;
}

form {
  font-size: 1.8rem;
  width: 90%;
  margin: 0 auto;
  text-align: left;
}

.must {
  background-color: #E80000;
  padding: 1px 10px;
  color: #ffffff;
  margin-left: 20px;
  font-size: 1.2rem;
}

.form_item--input.radio {
  display: flex;
  flex-direction: column;
  line-height: 2;
  padding-left: 12px;
  margin: 0 0 20px 0;
}

.form_item--ttl {

  margin: 0 0 20px 0;
  line-height: 1;
}

.form_item--input {
  border-bottom: 0.5px solid #DCDCDC;
  padding: 0 4px 20px;
  margin: 0 0 20px;
}

.form_item:nth-of-type(6) .form_item--input {
  border-bottom: none;
  margin: 0 0 40px 0;
}

input[type="text"],
input[type="tel"],
input[type="email"],
input[type="number"],
textarea {
  display: block;
  height: 48px;
  width: 100%;
  font-size: 2.0rem;
  padding: 6px;
  background-color: #f4f3f3;
  border-radius: 3px;
  border: 1px solid #757575;
}

input[type="radio"] {
  margin: 0 3px 2px 5px;
}

input[type="number"] {
  max-width: 120px;
}

textarea {
  height: 252px;
  resize: vertical;
  background-color: #f4f3f3;
  border-radius: 9px;
}

.form_submit button {
  width: 100%;
  max-width: 294px;
  background-color: var(--green);
  padding: 16px;
  margin: 20px auto;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
  transition: 0.3s;
}

.form_submit button:hover {
  opacity: 0.7;
}

.form_submit button p {
  font-size: 2.2rem;
  color: #ffffff;
  text-align: left;
  font-weight: 400;
  letter-spacing: 0.1rem;
  font-family: var(--ja);
}

#contact .content .tel a {
  position: absolute;
  background-color: #4D4D4D;
  width: 90%;
  max-width: 334px;
  height: 53px;
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: center;
  color: #ffffff;
  top: -26px;
  left: 50%;
  transform: translateX(-50%);
}

#contact .content .tel a p {
  font-size: clamp(1.8rem, 5.2vw, 2.3rem);
  padding-left: 25px;
}

#contact .content .tel a p::before {
  content: "";
  width: min(5vw, 20px);
  aspect-ratio: 1 / 1;
  background-image: url(../img/tel_w.png);

}

@media screen and (min-width: 960px) {
  #company_01 {
    padding-top: 0;
  }

  .company_01-head {
    padding: 80px 5%;

  }

  .table02 {
    width: 100%;
    max-width: 780px;
    margin: 0 auto;
  }

  #company_01 .table02 tr {
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    border-bottom: 0.5px solid #F3F3F3;
  }

  #company_01 .table02 th {
    height: 100%;
    padding: 14px 0;
    width: 30%;
  }

  #company_01 .table02 td {
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 0 0 5%;
    line-height: 1.2;
  }

  #contact .section_inner {
    max-width: 1050px;
  }

  #contact .content {
    margin-top: 80px;
  }

  .form_item {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 800px;
    margin: 0 auto;
  }

  .form_item:first-of-type .form_item--input {
    margin-bottom: 0;
    padding: 0 0 0 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .form_item--ttl {
    padding: 30px 10px;
    width: 30%;

    margin: 0;
    height: 80px;
    line-height: 1;
    border-bottom: 1px solid #757575;
  }

  .form_item--input {
    width: 60%;
    margin: 0;
    padding: 20px 60px 20px 30px;

    border-bottom: 1px solid #757575;
    height: 80px;
  }

  .form_item--input label {
    line-height: 1;
  }

  .form_item:nth-of-type(6) .form_item--ttl {
    border-bottom: none;
    margin: 0 0 auto;
  }

  .form_item:nth-of-type(6) .form_item--input {
    height: 300px;
    border-bottom: none;
  }

  #tab02_content .form_item:nth-of-type(8) .form_item--ttl {
    border-bottom: none;
  }

  #tab02_content .form_item:nth-of-type(8) .form_item--input {
    border-bottom: none;
  }

  .form_item--input.big {
    padding: 16px 60px 15px 30px;
  }
}