@charset "UTF-8";
/* -----------------------------------------------
* Plugins エントリーポイント
-------------------------------------------------- */
/*------------------------------------------------------------------------------
  reset
------------------------------------------------------------------------------*/
html,
input,
textarea,
select,
button {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
}

html {
  color: #131313;
  background: #FFFFFF;
  font-size: 16px;
  line-height: 1.8;
  overflow-wrap: break-word;
}

body {
  background: #fff;
  margin: 0;
  margin-top: 88px;
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

img {
  border: 0;
  margin: 0;
  vertical-align: top;
  max-width: 100%;
  height: auto;
}

figure {
  margin: 0;
}

p {
  margin: 0;
  padding: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

input,
select,
textarea,
button {
  color: inherit;
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

select::-ms-expand {
  display: none;
}

textarea {
  resize: vertical;
}

::-webkit-input-placeholder {
  color: #ccc;
}

:-ms-input-placeholder {
  color: #ccc;
}

::-ms-input-placeholder {
  color: #ccc;
}

::-moz-placeholder {
  color: #ccc;
}

::placeholder {
  color: #ccc;
}

button {
  border: none;
  cursor: pointer;
}

label {
  cursor: pointer;
}

table {
  border-collapse: collapse;
}

ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 14px;
  font-weight: bold;
  margin: 0;
  padding: 0;
}

main {
  display: block;
}

#wrapper {
  position: relative;
}

.inner-block {
  margin: 0 auto;
  position: relative;
}
.inner-block.wi-1000 {
  max-width: 1080px;
}

dl, dt, dd {
  padding: 0;
  margin: 0;
}

.ib {
  display: inline-block;
}

.c-svg {
  display: inline-block;
  fill: currentColor;
  vertical-align: top;
}

/* -----------------------------------------------
* Modules エントリーポイント
-------------------------------------------------- */
/* --------------------------------
c-header
----------------------------------- */
.c-header {
  width: 100%;
  top: 0;
  left: 0;
  position: fixed;
  z-index: 999;
}
.c-header .inner-block {
  background: #FFE100;
  padding-left: 30px;
  max-width: inherit;
  padding-right: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.c-header .inner-block .logo {
  padding: 15px 0 15px;
  display: block;
}
.c-header .inner-block .logo > a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.c-header .inner-block .logo > a .img {
  aspect-ratio: 65.733/58;
  height: 58px;
}
.c-header .inner-block .logo > a .img > img {
  width: 100%;
  height: 100%;
}
.c-header .inner-block .logo > a .txt-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5px;
  font-weight: bold;
  line-height: 1;
}
.c-header .inner-block .logo > a .txt-wrap .small {
  font-size: 14px;
}
.c-header .inner-block .logo > a .txt-wrap .big {
  font-size: 24px;
}
.c-header .inner-block .nav-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.c-header .inner-block .nav-wrap .nav {
  width: clamp(100px, 144px, min(144px, 7.5vw));
  height: 100%;
  display: block;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
.c-header .inner-block .nav-wrap .nav::before {
  content: "";
  position: absolute;
  background: #131313;
  display: block;
  width: 100px;
  height: 5px;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
}
.c-header .inner-block .nav-wrap .nav .txt {
  font-weight: 500;
}
.c-header .inner-block .nav-wrap .nav.recruit-btn, .c-header .inner-block .nav-wrap .nav.contact-btn {
  width: clamp(180px, 240px, min(240px, 12.5vw));
}
.c-header .inner-block .nav-wrap .nav.recruit-btn {
  background: #FFFFFF;
}
.c-header .inner-block .nav-wrap .nav.recruit-btn::before {
  width: 100%;
  height: 100%;
  background: #FFFFFF;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.c-header .inner-block .nav-wrap .nav.recruit-btn .txt {
  position: relative;
  z-index: 2;
}
.c-header .inner-block .nav-wrap .nav.contact-btn {
  background: #131313;
}
.c-header .inner-block .nav-wrap .nav.contact-btn::before {
  content: none;
}
.c-header .inner-block .nav-wrap .nav.contact-btn .txt {
  color: #FFFFFF;
  padding-left: 30px;
  position: relative;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.c-header .inner-block .nav-wrap .nav.contact-btn .txt::before {
  content: "";
  position: absolute;
  background: #FFFFFF;
  -webkit-mask-image: url("../img/common/mail.svg");
          mask-image: url("../img/common/mail.svg");
  -webkit-mask-position: center center;
          mask-position: center center;
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat no-repeat;
          mask-repeat: no-repeat no-repeat;
  width: 20px;
  height: 16px;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.c-header .inner-block .nav-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding-right: clamp(10px, 62px, min(62px, 3.2291666667vw));
}
.c-header .inner-block .nav-list > li {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.c-header .inner-block .btn-menu {
  pointer-events: all;
  width: 30px;
  height: 20px;
  position: relative;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto 30px auto auto;
}
.c-header .inner-block .btn-menu .inn {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  width: 100%;
  height: 100%;
}
.c-header .inner-block .btn-menu .inn .line {
  width: 100%;
  background: #131313;
  height: 2px;
  display: block;
  position: absolute;
  right: 0;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.c-header .inner-block .btn-menu .inn .line:nth-of-type(1) {
  top: 0;
  -webkit-transition-delay: 0.25s, 0.15s;
          transition-delay: 0.25s, 0.15s;
  -webkit-transition-property: background-color, -webkit-transform;
  transition-property: background-color, -webkit-transform;
  transition-property: transform, background-color;
  transition-property: transform, background-color, -webkit-transform;
}
.c-header .inner-block .btn-menu .inn .line:nth-of-type(2) {
  top: 9px;
  background: transparent;
}
.c-header .inner-block .btn-menu .inn .line:nth-of-type(2)::before, .c-header .inner-block .btn-menu .inn .line:nth-of-type(2)::after {
  content: "";
  position: absolute;
  background: #131313;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
}
.c-header .inner-block .btn-menu .inn .line:nth-of-type(3) {
  bottom: 0;
  -webkit-transition-delay: 0.25s, 0.15s;
          transition-delay: 0.25s, 0.15s;
  -webkit-transition-property: background-color, -webkit-transform;
  transition-property: background-color, -webkit-transform;
  transition-property: transform, background-color;
  transition-property: transform, background-color, -webkit-transform;
}
.c-header .inner-block .btn-menu.is-open .line:nth-of-type(1) {
  -webkit-transform: translateY(9px);
          transform: translateY(9px);
  background-color: transparent;
  -webkit-transition-delay: 0s, 0.15s;
          transition-delay: 0s, 0.15s;
}
.c-header .inner-block .btn-menu.is-open .line:nth-of-type(2)::before {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}
.c-header .inner-block .btn-menu.is-open .line:nth-of-type(2)::after {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}
.c-header .inner-block .btn-menu.is-open .line:nth-of-type(3) {
  -webkit-transform: translateY(-9px);
          transform: translateY(-9px);
  background-color: transparent;
  -webkit-transition-delay: 0s, 0.15s;
          transition-delay: 0s, 0.15s;
}

.bg {
  width: 100%;
  height: 100vh;
  z-index: 900;
  background: rgba(0, 0, 0, 0.4);
  display: block;
  opacity: 0;
  visibility: hidden;
  position: fixed;
  pointer-events: none;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  top: 0;
}
.bg.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.c-footer {
  background: #131313;
  position: relative;
  z-index: 10;
}
.c-footer .inner-block {
  padding: 100px 40px;
  max-width: 1600px;
}
.c-footer .footer-top {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 34px;
}
.c-footer .footer-top .logo > a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 14px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.c-footer .footer-top .logo > a .img {
  aspect-ratio: 17/15;
  height: 84px;
}
.c-footer .footer-top .logo > a .img > img {
  width: 100%;
  height: 100%;
}
.c-footer .footer-top .logo > a .txt-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  color: #FFFFFF;
}
.c-footer .footer-top .logo > a .txt-wrap .big {
  font-weight: bold;
  font-size: 24px;
  line-height: normal;
}
.c-footer .footer-top .logo > a .txt-wrap .small {
  font-size: 14px;
}
.c-footer .footer-top .address {
  margin-top: 47px;
  color: #FFFFFF;
}
.c-footer .footer-top .nav-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.c-footer .footer-top .nav-wrap .nav-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: clamp(20px, 80px, min(80px, 4.1666666667vw));
  padding-right: clamp(20px, 80px, min(80px, 4.1666666667vw));
}
.c-footer .footer-top .nav-wrap .nav-list > li {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.c-footer .footer-top .nav-wrap .nav-list > li .nav {
  color: #FFFFFF;
  line-height: 1;
  padding: 5px 0;
}
.c-footer .footer-top .nav-wrap .box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: clamp(10px, 30px, min(30px, 1.5625vw));
}
.c-footer .footer-top .nav-wrap .box .nav {
  width: clamp(180px, 240px, min(240px, 12.5vw));
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 27px;
}
.c-footer .footer-top .nav-wrap .box .nav .txt {
  font-weight: bold;
  line-height: 1;
}
.c-footer .footer-top .nav-wrap .box .nav.recruit-btn {
  background: #FFFFFF;
  position: relative;
}
.c-footer .footer-top .nav-wrap .box .nav.recruit-btn .txt {
  position: relative;
  z-index: 2;
}
.c-footer .footer-top .nav-wrap .box .nav.recruit-btn::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #FFE100;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.c-footer .footer-top .nav-wrap .box .nav.contact-btn {
  background: #FFFFFF;
}
.c-footer .footer-top .nav-wrap .box .nav.contact-btn .txt {
  padding-left: 30px;
  position: relative;
}
.c-footer .footer-top .nav-wrap .box .nav.contact-btn .txt::before {
  content: "";
  position: absolute;
  background: #131313;
  -webkit-mask-image: url("../img/common/mail.svg");
          mask-image: url("../img/common/mail.svg");
  -webkit-mask-position: center center;
          mask-position: center center;
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat no-repeat;
          mask-repeat: no-repeat no-repeat;
  display: block;
  width: 20px;
  height: 16px;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
}
.c-footer .footer-top .sns-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 50px;
  gap: 24px;
  -webkit-box-pack: end;
  -webkit-justify-content: end;
      -ms-flex-pack: end;
          justify-content: end;
}
.c-footer .footer-top .sns-list > li {
  display: block;
}
.c-footer .footer-top .sns-list > li .link {
  display: block;
  width: 30px;
  height: 30px;
  background: url("../img/common/instagram.svg") no-repeat no-repeat center center/contain;
}
.c-footer .footer-top .sns-list > li .link.tiktok {
  background-image: url("../img/common/tiktok.svg");
}
.c-footer .footer-top .sns-list > li .link.facebook {
  background-image: url("../img/common/facebook.svg");
}
.c-footer .footer-top .sns-list > li .link.youtube {
  background-image: url("../img/common/youtube.svg");
}
.c-footer .footer-bottom {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding-top: 32px;
  border-top: 1px solid #E3E3E3;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.c-footer .footer-bottom .copyright {
  color: #FFFFFF;
  font-size: 14px;
}
.c-footer .footer-bottom .link {
  font-size: 14px;
  color: #FFFFFF;
}

.sns-area {
  position: absolute;
  right: 0;
  top: 200px;
  z-index: 50;
}
.sns-area::before {
  content: "";
  position: absolute;
  background: #E3E3E3;
  display: block;
  width: 60px;
  height: 100%;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
}
.sns-area .sns-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 1px;
}
.sns-area .sns-list > .link {
  display: block;
  padding: 20px;
  background: #131313;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  overflow: hidden;
  position: relative;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.sns-area .sns-list > .link .ico {
  -webkit-mask-image: url("../img/common/instagram.svg");
          mask-image: url("../img/common/instagram.svg");
  -webkit-mask-position: center center;
          mask-position: center center;
  -webkit-mask-size: contain contain;
          mask-size: contain contain;
  -webkit-mask-repeat: no-repeat no-repeat;
          mask-repeat: no-repeat no-repeat;
  background: #FFFFFF;
  width: 20px;
  height: 20px;
  display: block;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.sns-area .sns-list > .link .txt {
  font-size: 14px;
  line-height: 1;
  display: block;
  text-align: center;
  max-width: 51px;
  width: 100%;
  color: #131313;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto 0 auto 10px;
  right: -61px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.sns-area .sns-list > .link:nth-child(2) .ico {
  -webkit-mask-image: url("../img/common/facebook.svg");
          mask-image: url("../img/common/facebook.svg");
}
.sns-area .sns-list > .link:nth-child(3) .ico {
  -webkit-mask-image: none;
          mask-image: none;
  background-color: transparent;
  background-image: url("../img/common/youtube.svg");
}
.sns-area .sns-list > .link:nth-child(4) .ico {
  -webkit-mask-image: url("../img/common/tiktok.svg");
          mask-image: url("../img/common/tiktok.svg");
}

.c-ttl01 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  line-height: 1.4;
  gap: 5px;
  margin-bottom: 50px;
}
.c-ttl01 .en {
  padding-left: 38px;
  position: relative;
  font-size: 20px;
  font-weight: 400;
}
.c-ttl01 .en::before {
  content: "";
  position: absolute;
  background: url("../img/common/ttl-ico.svg") no-repeat no-repeat center center/contain;
  display: block;
  width: 32.704px;
  height: 12px;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
}
.c-ttl01 .ja {
  font-size: clamp(36px, 50px, min(50px, 2.6041666667vw));
}
.c-ttl01.white {
  color: #fff;
}
.c-ttl01.white .en::before {
  background: none;
  background-color: #fff;
  -webkit-mask: url("../img/common/ttl-ico.svg") no-repeat center/contain;
          mask: url("../img/common/ttl-ico.svg") no-repeat center/contain;
}

.c-ttl02 {
  font-size: 36px;
  line-height: 1.4;
  padding-top: 17px;
  position: relative;
  margin-bottom: 50px;
}
.c-ttl02::before {
  content: "";
  position: absolute;
  background: url("../img/common/ttl-ico.svg") no-repeat no-repeat center center/contain;
  display: block;
  width: 32.704px;
  height: 12px;
  top: 0;
  left: 0;
}

.c-ttl03 {
  font-size: 20px;
  line-height: normal;
  padding-left: 37px;
  position: relative;
}
.c-ttl03::before {
  content: "";
  position: absolute;
  background: url("../img/news/detail/ttl-ico.svg") no-repeat no-repeat center center/contain;
  display: block;
  width: 27px;
  height: 22px;
  top: 3px;
  left: 0;
}

.c-ttl04 {
  font-weight: bold;
  font-size: 30px;
  border-bottom: solid 1px #131313;
}

.fo {
  font-family: "Oswald", sans-serif;
}

.bg-gray {
  background: url("../img/common/bg.jpg.webp") repeat repeat top left;
}

.bg-yellow {
  background: #FFE100;
}

.bg-gray02 {
  background: #F0F0EE;
}

.c-section {
  padding-block: 100px;
}

.c-tag-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}
.c-tag-list > li {
  border-bottom: 1px solid #E3E3E3;
}
.c-tag-list > li > a {
  padding-block: 10px;
  display: block;
}
.c-tag-list > li > a .txt {
  font-weight: 500;
  line-height: 1;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.c-tag-list > li > a.current {
  pointer-events: none;
}

.c-news-list > li > a {
  display: grid;
  border-bottom: 1px solid #E3E3E3;
  padding: 20px;
  gap: clamp(20px, 40px, min(40px, 2.0833333333vw));
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  grid-template-columns: auto 1fr;
}
.c-news-list > li > a .img {
  aspect-ratio: 71/50;
  width: 142px;
}
.c-news-list > li > a .img > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.c-news-list > li > a .txt-wrap {
  padding-right: 20px;
  position: relative;
}
.c-news-list > li > a .txt-wrap::before {
  content: "";
  position: absolute;
  background: #E3E3E3;
  -webkit-mask-image: url("../img/common/arrow.svg");
          mask-image: url("../img/common/arrow.svg");
  -webkit-mask-position: center center;
          mask-position: center center;
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat no-repeat;
          mask-repeat: no-repeat no-repeat;
  display: block;
  width: 17px;
  height: 18px;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
}
.c-news-list > li > a .txt-wrap .tag-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 5px 17px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 15px;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
.c-news-list > li > a .txt-wrap .tag-wrap .date {
  color: #aaa;
  font-size: 14px;
  line-height: normal;
}
.c-news-list > li > a .txt-wrap .tag-wrap .tag {
  border: 1px solid #131313;
  padding: 4px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.c-news-list > li > a .txt-wrap .tag-wrap .tag .txt {
  font-size: 12px;
}
.c-news-list > li > a .txt-wrap .txt {
  line-height: normal;
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  font-size: 16px;
  font-weight: 400;
}

.c-breadcrumb-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
.c-breadcrumb-list > li {
  font-size: 14px;
  font-weight: bold;
  line-height: normal;
}
.c-breadcrumb-list > li > a {
  position: relative;
}
.c-breadcrumb-list > li > a::before {
  content: "";
  position: absolute;
  background: #131313;
  display: block;
  width: 100%;
  height: 1px;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
}
.c-breadcrumb-list > li:not(:first-child) {
  padding-left: 18px;
  position: relative;
}
.c-breadcrumb-list > li:not(:first-child)::before {
  content: "";
  position: absolute;
  background: url("../img/common/bread-ico.svg") no-repeat no-repeat center center/contain;
  display: block;
  width: 8px;
  height: 12px;
  top: 5px;
  left: 6px;
}
.c-breadcrumb-list.white {
  color: #fff;
}
.c-breadcrumb-list.white > li:not(:first-child)::before {
  background: none;
  background-color: #fff;
  -webkit-mask: url("../img/common/bread-ico.svg") no-repeat center/contain;
          mask: url("../img/common/bread-ico.svg") no-repeat center/contain;
}

.c-mv {
  background: #E3E3E3;
  position: relative;
  overflow: hidden;
}
.c-mv::before {
  content: "";
  position: absolute;
  background: url("../img/common/section-bg.png.webp") no-repeat no-repeat center center/contain;
  display: block;
  width: clamp(600px, 800px, min(800px, 41.6666666667vw));
  aspect-ratio: 800/711;
  top: 0;
  bottom: 0;
  right: min(150px, 7.8125vw);
  margin: auto;
  overflow: hidden;
}
.c-mv .inner-block {
  max-width: 1280px;
  width: 100%;
  padding-top: 110px;
  padding-bottom: 116px;
  position: relative;
  z-index: 10;
}
.c-mv .anchor-wrap {
  padding-top: 50px;
}
.c-mv .anchor-wrap .anchor-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 10px;
}
.c-mv .anchor-wrap .anchor-list > li {
  width: calc((100% - 75px) / 4);
}
.c-mv .anchor-wrap .anchor-list > li .c-btn01 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin: auto;
  padding: 0 19px;
  line-height: 1.3;
}
.c-mv .anchor-wrap .anchor-list > li .c-btn01 .txt {
  text-align: center;
}
.c-mv .anchor-wrap .anchor-list > li .c-btn01 .txt::before {
  rotate: 90deg;
}

.c-btn01 {
  padding: 18px 20px;
  background: #FFFFFF;
  display: block;
  max-width: 280px;
  width: 100%;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.c-btn01 .txt {
  position: relative;
  padding-right: 20px;
  font-weight: bold;
  display: block;
  width: 100%;
}
.c-btn01 .txt::before {
  content: "";
  position: absolute;
  background: url("../img/common/arrow.svg") no-repeat no-repeat center center/contain;
  display: block;
  width: 15.84px;
  height: 15.84px;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
}
.c-btn01.yellow-btn {
  background: #FFE100;
  padding: 17px 19px;
  border: 1px solid #FFE100;
  text-decoration: none;
}
.c-btn01.ico-down .txt::before {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.c-btn01.ico-download .txt::before {
  background-image: url(../img/common/download.svg);
  width: 24px;
  height: 24px;
}

/* -----------------------------------------------
* Page エントリーポイント
-------------------------------------------------- */
/* -----------------------------------------------
* home Module
* homeページ用
-------------------------------------------------- */
.home .c-ttl01 {
  position: relative;
  z-index: 10;
}
.home .mv-section {
  position: relative;
  z-index: 10;
}
.home .mv-section .video {
  height: calc(100vh - 88px);
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 0;
  position: relative;
  -webkit-transform: translateZ(1px);
          transform: translateZ(1px);
  z-index: 1;
}
.home .mv-section .mv-ttl {
  position: absolute;
  top: 50px;
  left: 40px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  z-index: 2;
}
.home .mv-section .mv-ttl .inn {
  color: #FFFFFF;
  font-size: clamp(50px, 4.5833333333vw, 88px);
  line-height: 1.2;
  text-shadow: 0px 0px 2px rgb(0, 0, 0);
}
.home .mv-section .mv-ttl .inn .big {
  font-size: clamp(70px, 5.4166666667vw, 104px);
}
.home .mv-section .movie-wrap {
  position: absolute;
  bottom: 26px;
  left: 30px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  z-index: 2;
}
.home .mv-section .movie-wrap .black {
  background: #131313;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 5px;
  padding-bottom: 10px;
}
.home .mv-section .movie-wrap .black .txt {
  color: #FFFFFF;
  font-weight: bold;
  font-size: clamp(16px, 1.25vw, 24px);
}
.home .mv-section .movie-wrap .white {
  background: #FFFFFF;
  padding-inline: clamp(15px, 1.0416666667vw, 20px);
  padding-block: 10px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.home .mv-section .movie-wrap .white .movie {
  width: clamp(200px, 20.1041666667vw, 386px);
  aspect-ratio: 386/220;
  display: grid;
  place-items: center;
}
.home .mv-section .movie-wrap .white .movie iframe {
  width: 100%;
  height: 100%;
}
.home .wrap {
  position: relative;
  height: calc(100% + 370px);
  width: 100%;
  margin-top: -200px;
  padding-top: 370px;
}
.home .sticky-box {
  position: absolute;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: 100%;
  right: 0;
  top: 48px;
  z-index: 5;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}
.home .sticky-box > .img {
  position: -webkit-sticky;
  position: sticky;
  aspect-ratio: 79/70;
  height: clamp(500px, 882px, min(882px, 45.9375vw));
  top: 88px;
}
.home .sticky-box > .img > img {
  width: 100%;
  height: 100%;
}
.home > .wrap > .inn {
  position: relative;
}
.home > .wrap > .inn::after {
  content: "";
  position: absolute;
  display: block;
  margin: auto;
}
.home > .wrap > .inn::after {
  background: url("../img/home/line.svg") no-repeat no-repeat center center/contain;
  width: 100%;
  left: 0;
  right: 0;
  top: 0;
  bottom: 200px;
  z-index: 5;
}
.home .about-section {
  padding-bottom: 150px;
}
.home .about-section .inner-block {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: clamp(20px, 80px, min(80px, 4.1666666667vw));
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.home .about-section .inner-block .txt-area .txt-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 33px;
  position: relative;
  z-index: 10;
}
.home .about-section .inner-block .txt-area .txt-wrap .txt {
  line-height: 2;
  font-weight: 500;
}
.home .about-section .inner-block .txt-area .txt-wrap .txt .black {
  display: inline-block;
  background: #131313;
  color: #FFFFFF;
  padding-inline: 3px;
}
.home .about-section .inner-block .img {
  width: clamp(450px, 618px, min(618px, 32.1875vw));
  aspect-ratio: 618/409;
  position: relative;
  z-index: 10;
}
.home .about-section .inner-block .img > img {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 10;
}
.home .business-section {
  position: relative;
  z-index: 10;
  padding-bottom: 100px;
}
.home .business-section::after {
  content: "";
  position: absolute;
  background: #FFE100;
  display: block;
  width: 100%;
  height: 300px;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
}
.home .business-section .business-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 30px;
  counter-reset: business-counter;
  position: relative;
  z-index: 10;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.home .business-section .business-list > li {
  width: calc((100% - 60px) / 3);
  min-width: 300px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
}
.home .business-section .business-list > li::before {
  counter-increment: business-counter;
  content: "" counter(business-counter, decimal-leading-zero) "";
  position: absolute;
  font-family: "Oswald", sans-serif;
  background: #FFE100;
  display: block;
  font-weight: bold;
  line-height: 1;
  top: 0;
  left: 0;
  font-size: 60px;
  padding: 20px;
  width: 104px;
  text-align: center;
  pointer-events: none;
}
.home .business-section .business-list > li .c-btn01 {
  max-width: 300px;
  position: absolute;
  bottom: 0;
}
.home .business-section .business-list > li .c-btn01 .txt {
  font-size: 20px;
}
.home .business-section .business-list > li > a {
  width: 100%;
  height: 100%;
  display: block;
}
.home .news-section {
  position: relative;
  overflow: hidden;
  background: #FFFFFF;
  z-index: 10;
}
.home .news-section .inner-block {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(50px, 200px, min(200px, 10.4166666667vw));
  position: relative;
  z-index: 30;
}
.home .news-section .left-wrap {
  width: 240px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 50px;
}
.home .news-section .left-wrap .c-ttl01 {
  margin-bottom: 0;
}
.home .news-section .left-wrap .c-btn01 {
  background: #FFE100;
  padding: 17px 19px;
  border: 1px solid #FFE100;
}
.home .news-section .line {
  position: absolute;
  width: 250px;
  height: 480px;
  z-index: 5;
}
.home .news-section .line.left {
  top: -75px;
  left: -137px;
  rotate: 25deg;
}
.home .news-section .line.right {
  bottom: -90px;
  right: -169px;
  rotate: 25deg;
}
.home .news-section .line.right .yellow {
  right: 35px;
}
.home .news-section .line.right .white {
  right: 0;
}
.home .news-section .line .white,
.home .news-section .line .yellow {
  position: absolute;
  display: block;
  background: #FFFFFF;
  top: 0;
  width: 100%;
  height: 100%;
  right: 35px;
}
.home .news-section .line .white {
  z-index: 10;
}
.home .news-section .line .yellow {
  background: #FFE100;
  right: 0;
  width: 100%;
  height: 100%;
}
.home .company-section .inn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 30px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  z-index: 10;
}
.home .company-section .inn .link {
  width: calc((100% - 30px) / 2);
  min-width: 400px;
  position: relative;
}
.home .company-section .inn .link .c-btn01 {
  position: absolute;
  bottom: 0;
  left: 0;
  max-width: 300px;
}
.home .company-section .inn .link .c-btn01 .txt {
  font-size: 20px;
}
.home .recruit-section {
  position: relative;
  z-index: 10;
}
.home .recruit-section .inner-block {
  max-width: none;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: clamp(50px, 100px, min(100px, 5.2083333333vw));
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.home .recruit-section .txt-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 50px;
}
.home .recruit-section .txt-wrap .c-ttl01 {
  margin-bottom: 0;
}
.home .recruit-section .txt-wrap > .txt {
  font-size: 20px;
  line-height: 1.8;
}
.home .recruit-section .txt-wrap > .txt .white {
  display: inline-block;
  background: #FFFFFF;
  padding-inline: 2px;
}
.home .recruit-section .txt-wrap .recruit-list > li > a {
  display: block;
  width: 100%;
  padding: 6px 20px;
}
.home .recruit-section .txt-wrap .recruit-list > li > a .txt {
  display: block;
  font-weight: bold;
  line-height: normal;
  padding: 9px 0 10px 60px;
  position: relative;
}
.home .recruit-section .txt-wrap .recruit-list > li > a .txt::before {
  content: "";
  position: absolute;
  background: url("../img/home/recruit-ico01.svg") no-repeat no-repeat center center/contain;
  display: block;
  width: 40px;
  height: 40px;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
}
.home .recruit-section .txt-wrap .recruit-list > li + li {
  border-top: 1px solid #131313;
}
.home .recruit-section .txt-wrap .recruit-list > li:nth-child(2) > a .txt::before {
  background-image: url("../img/home/recruit-ico02.svg");
}
.home .recruit-section .txt-wrap .recruit-list > li:nth-child(1) > a .txt::before {
  background-image: url("../img/home/recruit-ico03.svg");
}
.home .recruit-section .txt-wrap .recruit-list > li:nth-child(3) > a .txt::before {
  background-image: url("../img/home/recruit-ico04.svg");
}
.home .recruit-section .img {
  width: clamp(800px, 1197px, min(1197px, 62.34375vw));
  aspect-ratio: 1197/499;
}
.home .recruit-section .img > img {
  width: 100%;
  height: 100%;
}
.home .banner-section .inn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  position: relative;
  z-index: 10;
}
.home .banner-section .inn .banner-link {
  width: calc((100% - 30px) / 2);
  display: block;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
.home .banner-section .inn .banner-link > img {
  width: 100%;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.p-business .c-ttl01 {
  position: relative;
  z-index: 10;
}
.p-business .c-ttl04 {
  margin-top: 50px;
}
.p-business .mv-section {
  position: relative;
  z-index: 10;
}
.p-business .mv-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../img/business/mv.jpg.webp") center bottom/cover no-repeat;
}
.p-business .c-mv::before {
  content: none;
}
.p-business .c-mv .inner-block {
  padding-block: 60px;
}
.p-business .c-mv .anchor-list .br01 {
  display: none;
}
.p-business .p-ttl01 {
  margin-top: 12px;
  font-size: 24px;
  font-weight: bold;
}
.p-business .p-vehicle-wrap .vehicle-block {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: min(50px, 2.6041666667vw);
}
.p-business .p-vehicle-wrap .vehicle {
  padding: 20px 20px 19px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 20px;
  line-height: 1;
  background-color: #fff;
  border-bottom: solid 1px #E3E3E3;
}
.p-business .p-vehicle-wrap .vehicle .name {
  margin-right: 10px;
  display: inline-block;
  width: 150px;
  font-weight: bold;
}
.p-business .c-btn01 {
  text-align: left;
}
.p-business .case-section {
  padding-bottom: 0;
}
.p-business .case-section .case-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
.p-business .case-section .case-wrap .img-wrap {
  max-width: 576px;
}
.p-business .case-section .case-wrap .img-wrap > img {
  width: 100%;
  height: auto;
}
.p-business .case-section .case-wrap .txt {
  margin-top: 12px;
}
.p-business .case-section .case-wrap .list {
  margin-top: 8px;
}
.p-business .case-section .case-wrap .list > li {
  position: relative;
  padding-left: 15px;
  line-height: 1.4;
}
.p-business .case-section .case-wrap .list > li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 20px;
  background-color: #131313;
}
.p-business .case-section .case-wrap .list > li + li {
  margin-top: 8px;
}
.p-business .work-section .work-wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: min(42px, 2.1875vw) min(40px, 2.0833333333vw);
}
.p-business .work-section .report-wrap .report-block {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: min(48px, 2.5vw);
}
.p-business .work-section .report-wrap .report {
  padding-block: 20px;
  background-color: #fff;
}
.p-business .work-section .report-wrap .report .top-area {
  padding: 0 20px 8px;
  border-bottom: solid 2px #131313;
}
.p-business .work-section .report-wrap .report .img-wrap {
  margin: 0 auto;
  overflow: hidden;
  max-width: 328px;
  max-height: 220px;
}
.p-business .work-section .report-wrap .report .ttl {
  margin-top: 10px;
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 20px;
  font-weight: bold;
  line-height: 1.2;
}
.p-business .work-section .report-wrap .report .info-area {
  padding: 10px 20px 0;
}
.p-business .work-section .report-wrap .report .info-area > li {
  position: relative;
  padding-left: 34px;
  font-size: 18px;
}
.p-business .work-section .report-wrap .report .info-area > li::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 0;
  width: 24px;
  height: 24px;
}
.p-business .work-section .report-wrap .report .info-area > li + li {
  margin-top: 6px;
}
.p-business .work-section .report-wrap .report .info-area > li.date::before {
  background: url(../img/business/ico-date.svg) center/contain no-repeat;
}
.p-business .work-section .report-wrap .report .info-area > li.work-type::before {
  background: url(../img/business/ico-work-type.svg) center/contain no-repeat;
}
.p-business .work-section .report-wrap .report .info-area > li.place::before {
  background: url(../img/business/ico-place.svg) center/contain no-repeat;
}
.p-business .work-section .report-wrap .report .info-area > li.build-type::before {
  background: url(../img/business/ico-build-type.svg) center/contain no-repeat;
}
.p-business .work-section .report-wrap .c-btn01 {
  font-size: 16px;
  max-width: 240px;
  margin: 38px auto 0;
}
.p-business .work-section .yearly-wrap {
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: 40px;
}
.p-business .work-section .yearly-wrap .table-wrap {
  margin-top: 40px;
  overflow-x: auto;
}
.p-business .work-section .yearly-wrap .table-wrap table {
  width: 100%;
  min-width: 790px;
  text-align: left;
  font-size: 18px;
  table-layout: fixed;
}
.p-business .work-section .yearly-wrap .table-wrap table > caption {
  display: none;
}
.p-business .work-section .yearly-wrap .table-wrap thead tr {
  border-bottom: solid 2px #131313;
}
.p-business .work-section .yearly-wrap .table-wrap thead tr th {
  background-color: #FFE100;
}
.p-business .work-section .yearly-wrap .table-wrap tbody tr {
  border-bottom: solid 1px #E3E3E3;
}
.p-business .work-section .yearly-wrap .table-wrap tbody tr:last-child {
  border-bottom: none;
}
.p-business .work-section .yearly-wrap .table-wrap th, .p-business .work-section .yearly-wrap .table-wrap td {
  line-height: 1.2;
  padding: 20px;
  background-color: #fff;
}
.p-business .collection-section {
  background-color: #fff;
}
.p-business .collection-section .license-list {
  margin-top: 40px;
}
.p-business .collection-section .license-list > li {
  padding: 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: solid 1px #E3E3E3;
}
.p-business .collection-section .license-list > li .license {
  font-size: 20px;
}
.p-business .collection-section .license-list > li .c-btn01 {
  max-width: 240px;
}
.p-business .resource-section .product-wrap .product-block {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: min(40px, 2.0833333333vw);
  margin-top: 40px;
}
.p-business .resource-section .product-wrap .ttl {
  margin-top: 10px;
  font-weight: bold;
  font-size: 18px;
  line-height: 1.4;
}
.p-business .resource-section .address-wrap .address-block {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: min(50px, 2.6041666667vw);
}
.p-business .resource-section .address-wrap .address-list > li {
  padding: 18px 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 20px;
  border-bottom: solid 1px #131313;
}
.p-business .resource-section .address-wrap .address-list .ttl {
  display: inline-block;
  min-width: 160px;
  font-weight: bold;
  line-height: 1.4;
}
.p-business .resource-section .address-wrap .address-list .txt {
  line-height: 1.4;
}
.p-business .map {
  display: block;
  width: 100%;
  height: 320px;
}

.p-company {
  overflow-x: hidden;
}
.p-company .br02 {
  display: none;
}
.p-company .br03 {
  display: none;
}
.p-company .p-info-table {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.p-company .p-info-table dt, .p-company .p-info-table dd {
  padding: 18px 20px 20px;
  font-size: 18px;
}
.p-company .p-info-table dt {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: bold;
  line-height: 1.2;
  background-color: #FFF6B1;
  border-bottom: solid 2px #131313;
}
.p-company .p-info-table dd {
  padding: 18px 13px 20px 20px;
  background-color: #fff;
  border-bottom: solid 1px #E3E3E3;
}
.p-company .p-info-table .bold {
  display: block;
  font-weight: bold;
}
.p-company .p-info-table .bold.mt {
  margin-top: 8px;
}
.p-company .p-info-table .business-list > li {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.p-company .p-info-table .license-list > li {
  position: relative;
  padding-left: 15px;
}
.p-company .p-info-table .license-list > li::before {
  content: "";
  position: absolute;
  top: 14px;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 20px;
  background-color: #131313;
}
.p-company .c-ttl01 {
  position: relative;
  z-index: 10;
}
.p-company .mv-section {
  position: relative;
  z-index: 10;
}
.p-company .mv-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../img/company/mv.jpg.webp") center bottom/cover no-repeat;
}
.p-company .c-mv::before {
  background: none;
}
.p-company .c-mv .inner-block {
  padding-block: 60px;
}
.p-company .c-mv .anchor-list .br01 {
  display: none;
}
.p-company .message-section {
  background: url("../img/company/bg-message.jpg.webp") center/cover no-repeat;
}
.p-company .message-section .txt-wrap {
  max-width: 677px;
  font-size: 18px;
}
.p-company .message-section .txt-wrap .message-txt + .message-txt {
  margin-top: 28px;
}
.p-company .message-section .txt-wrap .sign-area {
  margin-top: 30px;
  font-size: 20px;
  font-weight: bold;
}
.p-company .message-section .txt-wrap .sign-area .ceo {
  margin-top: 6px;
}
.p-company .message-section .txt-wrap .sign-area .ceo .name {
  margin-left: 22px;
  font-size: 28px;
}
.p-company .com-section .com-table-block {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: min(50px, 2.6041666667vw);
}
.p-company .com-section .com-table-01 {
  width: 42%;
  grid-template-columns: 30% 70%;
}
.p-company .com-section .com-table-02 {
  width: 54%;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  grid-template-columns: 23% 77%;
}
.p-company .com-section .lisence-vehicle-wrap {
  margin-top: 42px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4%;
}
.p-company .com-section .lisence-vehicle-wrap .c-ttl04 {
  margin-bottom: 54px;
}
.p-company .history-section .c-ttl02 {
  margin-bottom: 32px;
}
.p-company .history-section .history-swiper {
  width: 100%;
  position: relative;
  overflow: visible;
}
.p-company .history-section .swiper-wrapper {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
.p-company .history-section .swiper-slide {
  padding-top: 20px;
  padding-right: 80px;
  position: relative;
  width: 400px;
}
.p-company .history-section .swiper-slide::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #131313;
}
.p-company .history-section .swiper-slide::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 15px;
  height: 15px;
  background-color: #fff;
}
.p-company .history-section .swiper-slide .year {
  font-size: 24px;
  font-weight: bold;
}
.p-company .history-section .swiper-slide .month {
  font-size: 20px;
  font-weight: bold;
}
.p-company .history-section .swiper-slide .desc {
  margin-top: 30px;
}
.p-company .history-section .swiper-scrollbar {
  margin-top: 35px;
  position: relative;
}
.p-company .history-section .swiper-scrollbar::before {
  background: #fff;
  content: "";
  height: 1px;
  width: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}
.p-company .history-section .swiper-scrollbar-drag {
  height: 10px;
  background: #131313;
}
.p-company .access-section .c-ttl02 {
  margin-bottom: 45px;
}
.p-company .access-section .ttl {
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: bold;
}
.p-company .access-section .address-txt {
  margin-top: 6px;
}
.p-company .access-section .map-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas: "office office" "yard01 yard02";
  gap: 36px 20px;
}
.p-company .access-section .map-wrap .office {
  grid-area: office;
}
.p-company .access-section .map-wrap .yard-01 {
  grid-area: yard01;
}
.p-company .access-section .map-wrap .yard-02 {
  grid-area: yard02;
}
.p-company .access-section .office-map {
  width: 100%;
  height: 310px;
}
.p-company .access-section .yard-map {
  width: 100%;
  height: 210px;
}

.news .c-ttl01 {
  position: relative;
  z-index: 10;
}
.news .mv-section {
  position: relative;
  z-index: 10;
}
.news .news-section .inner-block {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(50px, 200px, min(200px, 10.4166666667vw));
  position: relative;
  z-index: 30;
}
.news .news-section .left-wrap {
  width: 240px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 50px;
}
.news .news-section .left-wrap .c-tag-list > li {
  border: none;
}
.news .news-section .left-wrap .c-tag-list > li > a {
  border-bottom: 1px solid #E3E3E3;
}
.news .news-section .left-wrap .c-tag-list > li > a.current {
  border-color: #131313;
}
.news .news-section .left-wrap .c-tag-list > li > a.current .txt {
  font-weight: bold;
}
.news .news-section .left-wrap .c-btn01 {
  background: #FFE100;
  padding: 17px 19px;
  border: 1px solid #FFE100;
}
.news .news-section .right-wrap {
  width: 100%;
}
.news .news-section .c-news-list {
  background: #FFFFFF;
}
.news .news-section .c-news-list .tag-wrap .tag .txt {
  font-weight: bold;
}
.news .paging-area {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin: 100px auto 0;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
}
.news .paging-area .page-numbers {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 40px;
  max-height: 40px;
  width: 100%;
  height: 100px;
  background: #E3E3E3;
}
.news .paging-area .page-numbers.current {
  background: #FFFFFF;
}
.news .paging-area .page-numbers.prev, .news .paging-area .page-numbers.next {
  background: #FFE100;
  position: relative;
}
.news .paging-area .page-numbers.prev::before, .news .paging-area .page-numbers.next::before {
  content: "";
  position: absolute;
  background: url("../img/news/paging-ico.svg") no-repeat no-repeat center center/contain;
  display: block;
  width: 6px;
  height: 10px;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
}
.news .paging-area .page-numbers.next::before {
  rotate: 180deg;
}
.news .paging-area .page-numbers.next {
  margin-left: 15px;
}
.news .paging-area .page-numbers.prev {
  margin-right: 15px;
}

.detail .c-ttl01 {
  position: relative;
  z-index: 10;
}
.detail .mv-section {
  position: relative;
  z-index: 10;
}
.detail .detail-section .cont {
  background: #FFFFFF;
  padding-block: clamp(30px, 80px, min(80px, 5.5555555556vw));
}
.detail .detail-section .cont > .box {
  padding-inline: 40px;
  max-width: 880px;
  margin: auto;
}
.detail .detail-section .cont .ttl-wrap {
  border-bottom: 1px solid #E3E3E3;
  padding-bottom: 16px;
  margin-bottom: 50px;
}
.detail .detail-section .cont .ttl-wrap .ttl {
  font-size: 32px;
  letter-spacing: 0.03em;
  line-height: normal;
  margin-bottom: 16px;
}
.detail .detail-section .cont .ttl-wrap .tag {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.detail .detail-section .cont .ttl-wrap .tag .date {
  font-size: 12px;
  font-family: "Roboto", sans-serif;
  font-weight: bold;
}
.detail .detail-section .cont .ttl-wrap .tag .cat {
  font-size: 12px;
  font-family: "Roboto", sans-serif;
  font-weight: bold;
  background: #FFE100;
  padding: 2px 10px 3px;
  line-height: normal;
}
.detail .detail-section .cont .inn * + * {
  margin-top: 30px;
}
.detail .detail-section .cont .inn > img {
  display: block;
  width: 100%;
  border: 3px solid #E3E3E3;
}
.detail .detail-section .cont .inn h2 {
  font-size: 24px;
  font-weight: bold;
  letter-spacing: 0.03em;
}
.detail .detail-section .cont .inn p {
  letter-spacing: 0.03em;
}
.detail .detail-section .cont .inn h3 {
  font-size: 20px;
  letter-spacing: 0.03em;
  padding-left: 37px;
  position: relative;
}
.detail .detail-section .cont .inn h3::before {
  content: "";
  position: absolute;
  background: url("../img/news/detail/ttl-ico.svg") no-repeat no-repeat center center/contain;
  display: block;
  width: 27px;
  height: 22px;
  top: 7px;
  left: 0;
}
.detail .detail-section .cont .inn ul > li {
  padding-left: 16px;
  position: relative;
}
.detail .detail-section .cont .inn ul > li::before {
  content: "";
  position: absolute;
  background: #131313;
  display: block;
  width: 6px;
  height: 6px;
  top: 11.5px;
  left: 0;
  border-radius: 50%;
}
.detail .detail-section .cont .inn ul > li + li {
  margin-top: 0;
}
.detail .detail-section .cont .inn ol {
  counter-reset: detail-count 0;
}
.detail .detail-section .cont .inn ol > li {
  padding-left: 19px;
  position: relative;
}
.detail .detail-section .cont .inn ol > li::before {
  counter-increment: detail-count 1;
  content: counter(detail-count) " ";
  position: absolute;
  display: block;
  top: 4px;
  left: 0;
  font-size: 14px;
  line-height: 1.71;
  font-weight: bold;
  color: #131313;
  font-family: "Roboto", sans-serif;
}
.detail .detail-section .cont .inn ol > li + li {
  margin-top: 0;
}
.detail .detail-section .cont .inn h4 {
  font-size: 18px;
  line-height: 1.33;
  font-weight: 500;
  background: #FFE100;
  padding: 10px 20px;
  letter-spacing: 0.1em;
}
.detail .detail-section .cont .inn .yellow {
  background: rgba(255, 225, 0, 0.5);
  font-weight: bold;
}
.detail .detail-section .cont .inn a {
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.detail .detail-section .cont .inn .column-table {
  width: 100%;
  display: block;
  overflow-x: auto;
}
.detail .detail-section .cont .inn .column-table > tbody {
  table-layout: fixed;
  display: table;
  min-width: 800px;
}
.detail .detail-section .cont .inn .column-table > tbody th,
.detail .detail-section .cont .inn .column-table > tbody td {
  min-width: 159px;
  padding: 13px 20px;
  border: 1px solid #E3E3E3;
  text-align: center;
}
.detail .detail-section .cont .inn .column-table > tbody th {
  background: #F0F0EE;
}
.detail .detail-section .cont .inn .row-table {
  width: 100%;
  display: block;
  overflow-x: auto;
}
.detail .detail-section .cont .inn .row-table > tbody {
  table-layout: fixed;
  display: table;
  min-width: 800px;
}
.detail .detail-section .cont .inn .row-table > tbody th,
.detail .detail-section .cont .inn .row-table > tbody td {
  min-width: 159px;
  padding: 13px 20px;
  border: 1px solid #E3E3E3;
  text-align: center;
}
.detail .detail-section .cont .inn .row-table > tbody th {
  background: #F0F0EE;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  left: 0;
  min-width: 160px;
}
.detail .detail-section .cont .inn .wp-block-columns.is-layout-flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}
.detail .detail-section .cont .inn .wp-block-columns.is-layout-flex * + * {
  margin-top: 0;
}
.detail .detail-section .cont .inn .wp-block-image {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}
.detail .detail-section .cont .inn .wp-block-image > img {
  border: 3px solid #E3E3E3;
  width: 100%;
}
.detail .detail-section .cont .inn .wp-block-image .cap {
  font-size: 14px;
  line-height: 1.2;
}
.detail .detail-section .cont .inn .c-btn01 {
  text-decoration: none;
  min-width: 280px;
  max-width: 100%;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.detail .detail-section .btn-wrap {
  margin-top: 100px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.detail .detail-section .btn-wrap .c-btn01 .txt {
  padding-right: 0;
  text-align: center;
}
.detail .detail-section .btn-wrap .c-btn01 .txt::before {
  background-image: url("../img/news/detail/back-ico.svg");
  right: inherit;
  left: 2px;
}

.privacy .c-ttl01 {
  position: relative;
  z-index: 10;
}
.privacy .mv-section {
  position: relative;
  z-index: 10;
}
.privacy .privacy-section .inn {
  background: #FFFFFF;
  padding-block: clamp(30px, 80px, min(80px, 5.5555555556vw));
}
.privacy .privacy-section .inn > .box {
  padding-inline: 40px;
  max-width: 880px;
  margin: auto;
}
.privacy .privacy-section .inn .txt {
  line-height: 1.4;
}
.privacy .privacy-section .inn .txt + .txt {
  margin-top: 10px;
}
.privacy .privacy-section .inn .link-txt {
  text-decoration: underline;
  -webkit-text-decoration-color: transparent;
          text-decoration-color: transparent;
}
.privacy .privacy-section .inn .privacy-num-list {
  counter-reset: privacy-count 0;
}
.privacy .privacy-section .inn .privacy-num-list > li {
  margin-top: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #E3E3E3;
}
.privacy .privacy-section .inn .privacy-num-list > li .ttl {
  font-size: 24px;
  font-weight: bold;
  letter-spacing: 0.03em;
  position: relative;
  padding-left: 40px;
  margin-bottom: 10px;
  line-height: 1.5;
}
.privacy .privacy-section .inn .privacy-num-list > li .ttl::before {
  counter-increment: privacy-count 1;
  content: counter(privacy-count) ".";
  position: absolute;
  left: 0;
  top: 0;
  line-height: 1.5;
  font-size: 24px;
  font-weight: bold;
  font-family: "Oswald", sans-serif;
}
.privacy .privacy-section .inn .privacy-num-list > li .txt {
  padding-left: 40px;
}
.privacy .privacy-section .inn .privacy-list {
  margin-top: 20px;
  padding-left: 40px;
}
.privacy .privacy-section .inn .privacy-list > li {
  line-height: 1.4;
  position: relative;
  padding-left: 16px;
}
.privacy .privacy-section .inn .privacy-list > li::before {
  content: "";
  position: absolute;
  background: #FFE100;
  display: block;
  width: 6px;
  height: 6px;
  top: 8px;
  left: 0;
  border-radius: 50%;
}
.privacy .privacy-section .inn .privacy-list > li + li {
  margin-top: 5px;
}

.contact .c-ttl01 {
  position: relative;
  z-index: 10;
}
.contact .mv-section {
  position: relative;
  z-index: 10;
}
.contact .contact-section .inn {
  background: #FFFFFF;
  padding-block: 50px;
}
.contact .contact-section .inn.pt80 {
  padding-block: clamp(30px, 80px, min(80px, 5.5555555556vw));
  margin-top: 100px;
}
.contact .contact-section .inn.pt50 .flex-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.contact .contact-section .inn.pt50 .box {
  max-width: 600px;
  width: 50%;
  padding-inline: clamp(30px, 50px, min(50px, 3.4722222222vw));
}
.contact .contact-section .inn.pt50 .box .yellow {
  background: #FFE100;
  padding-block: 2px 4px;
  line-height: normal;
  font-weight: bold;
  font-size: 24px;
  text-align: center;
  margin-bottom: 20px;
}
.contact .contact-section .inn.pt50 .box .num {
  font-size: 50px;
  font-weight: bold;
  line-height: 1;
  text-align: center;
}
.contact .contact-section .inn.pt50 .box .note {
  margin-top: 3px;
  font-weight: bold;
  text-align: center;
}
.contact .contact-section .inn.pt50 .box .txt {
  font-size: 14px;
  line-height: 1.4;
  margin-top: 15px;
}
.contact .contact-section .inn.pt50 .box:last-child {
  border-left: 1px solid #E3E3E3;
}
.contact .contact-section .inn > .box {
  padding-inline: 40px;
  max-width: 880px;
  margin: auto;
}
.contact .contact-section .inn > .box .txt-wrap {
  margin-bottom: 30px;
}
.contact .contact-section .inn > .box .txt-wrap .ttl {
  font-size: 32px;
  text-align: center;
  letter-spacing: 0.03em;
  line-height: normal;
  margin-bottom: 26px;
}
.contact .contact-section .inn > .box .txt-wrap .txt {
  line-height: 1.4;
}

.contact-section .q-wrap {
  padding: 16px 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
  border-bottom: 1px solid #E3E3E3;
}
.contact-section .q-wrap:first-child {
  border-top: 1px solid #E3E3E3;
}
.contact-section .q-wrap.top {
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.contact-section .q-wrap.top .label-area {
  padding-top: 8px;
}
.contact-section .q-wrap.privacy-wrap {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0;
  padding: 30px 0 20px;
  border-bottom: none;
}
.contact-section .q-wrap.privacy-wrap .error-txt {
  text-align: center;
  margin-top: 5px;
}
.contact-section .label-area {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 220px;
  position: relative;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
.contact-section .input-area {
  width: calc(100% - 260px);
}
.contact-section .contact-label {
  font-weight: bold;
}
.contact-section .required-txt {
  padding: 3px 10px 4px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  font-size: 14px;
  background: #FFE100;
  position: absolute;
  right: 0;
  font-weight: bold;
  margin: auto;
  line-height: 1.4;
}
.contact-section .error-txt {
  margin-top: 4px;
  color: #D71C1C;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
}
.contact-section input[type=text],
.contact-section input[type=tel],
.contact-section input[type=email],
.contact-section textarea,
.contact-section select {
  padding: 15px 20px;
  width: 100%;
  line-height: 1;
  font-size: 16px !important;
  border: 1px solid #F0F0EE;
}
.contact-section input[type=text].errored,
.contact-section input[type=tel].errored,
.contact-section input[type=email].errored,
.contact-section textarea.errored,
.contact-section select.errored {
  border: 1px solid #D71C1C;
}
.contact-section .checkbox-group .txt {
  text-align: center;
  margin-top: 30px;
}
.contact-section .checkbox-group .wpcf7-checkbox {
  margin: auto;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.contact-section .checkbox-group label {
  position: relative;
  padding-left: 30px;
  line-height: 1;
}
.contact-section .checkbox-group label::before, .contact-section .checkbox-group label::after {
  content: "";
  position: absolute;
}
.contact-section .checkbox-group label::before {
  top: 0px;
  left: 0;
  width: 24px;
  height: 24px;
  border: 1px solid #E3E3E3;
  border-radius: 15px;
  background: #FFFFFF;
  -webkit-transition: 0.1s ease-in-out;
  transition: 0.1s ease-in-out;
}
.contact-section .checkbox-group label::after {
  top: 4px;
  left: 4px;
  width: 16px;
  height: 16px;
  opacity: 0;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}
.contact-section .checkbox-group label:has(input:checked)::after {
  opacity: 1;
}
.contact-section .checkbox-group label:has(input:checked)::before {
  background: #FFE100;
  border-radius: 5px;
  border-color: #FFE100;
}
.contact-section .checkbox-group + .error-txt {
  margin-top: 8px;
}
.contact-section .wpcf7-form-control-wrap[data-name=acceptance-585] {
  margin: 20px auto 0;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.contact-section .checkbox-group label::before {
  border-radius: 0;
}
.contact-section .checkbox-group label::after {
  top: 3px;
  width: 8px;
  height: 14px;
  background: transparent;
  border-right: 3px solid #131313;
  border-bottom: 3px solid #131313;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  left: 8px;
  border-radius: 0;
}
.contact-section .checkbox-group label .link-txt {
  text-decoration: underline;
  text-underline-offset: 2px;
}
.contact-section .select-wrap {
  position: relative;
}
.contact-section .select-wrap select {
  cursor: pointer;
}
.contact-section .select-wrap::before {
  z-index: 1;
  content: "";
  border: solid rgb(179, 29, 35);
  border-width: 0 3px 3px 0;
  display: inline-block;
  width: 12px;
  height: 12px;
  position: absolute;
  top: -3px;
  right: 20px;
  bottom: 0;
  margin: auto;
  -webkit-transform: rotate(45deg) translate3d(0, 0, 0);
          transform: rotate(45deg) translate3d(0, 0, 0);
  pointer-events: none;
}
.contact-section.thanks .inn {
  margin-top: 0;
}
.contact-section.thanks .inn > .box .txt-wrap .txt {
  text-align: center;
}
.contact-section.thanks .inn > .box .txt-wrap .txt + .txt {
  margin-top: 10px;
}
.contact-section .btn-wrap {
  margin: 0 auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 40px;
}
.contact-section .btn-wrap.confirm-btn {
  margin-top: 20px;
}
.contact-section .c-btn01 {
  background: #FFE100;
  border: 1px solid #FFE100;
}
.contact-section .c-btn01 .txt {
  font-size: 16px;
}
.contact-section .c-btn01.back-btn .txt {
  padding-left: 20px;
  padding-right: 0;
}
.contact-section .c-btn01.back-btn .txt::before {
  left: 0;
  right: inherit;
  background: url("../img/news/detail/back-ico.svg") no-repeat no-repeat center center/contain;
}

.wpcf7-response-output {
  display: none !important;
}

.wpcf7-not-valid-tip {
  display: none !important;
}

.recruit {
  overflow: hidden;
}
.recruit .c-ttl01 {
  position: relative;
  z-index: 10;
}
.recruit .mv-section {
  position: relative;
  z-index: 10;
  padding-bottom: 5.21vw;
  padding-top: 5.21vw;
  background: url("../img/recruit/mv.jpg.webp") no-repeat no-repeat center center/cover;
}
.recruit .mv-section::before {
  content: "";
  position: absolute;
  background: url("../img/recruit/mv-bg.png.webp") no-repeat no-repeat center center/cover;
  display: block;
  width: 47.24vw;
  aspect-ratio: 907/379;
  top: 0;
  left: 0;
}
.recruit .mv-section .white-wrap {
  margin-top: 3.33vw;
}
.recruit .mv-section .white-wrap .white {
  background: #FFFFFF;
  font-weight: bold;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: min(65px, 3.3854166667vw);
  line-height: 1;
  padding: 5px 0 5px 20px;
}
.recruit .mv-section .white-wrap .white + .white {
  margin-top: 10px;
}
.recruit .mv-section .inner-block {
  max-width: 1280px;
  width: 100%;
  position: relative;
  z-index: 10;
}
.recruit .anchor-wrap {
  padding-block: 50px;
}
.recruit .anchor-wrap .anchor-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 25px;
}
.recruit .anchor-wrap .anchor-list > li {
  width: calc((100% - 75px) / 4);
}
.recruit .anchor-wrap .anchor-list > li .c-btn01 {
  margin: auto;
}
.recruit .anchor-wrap .anchor-list > li .c-btn01 .txt {
  text-align: center;
}
.recruit .anchor-wrap .anchor-list > li .c-btn01 .txt::before {
  rotate: 90deg;
}
.recruit .lead-txt {
  font-size: 32px;
  font-weight: bold;
  line-height: 1.5;
  margin-bottom: 40px;
}
.recruit .message-section .grid-box {
  display: grid;
  grid-template-columns: 1fr auto;
  -webkit-column-gap: clamp(30px, 80px, min(80px, 4.1666666667vw));
     -moz-column-gap: clamp(30px, 80px, min(80px, 4.1666666667vw));
          column-gap: clamp(30px, 80px, min(80px, 4.1666666667vw));
}
.recruit .message-section .grid-box .left-wrap .txt {
  font-weight: 500;
  font-size: 18px;
  line-height: 2;
}
.recruit .message-section .grid-box .left-wrap .txt + .txt {
  margin-top: 30px;
}
.recruit .message-section .grid-box .img-wrap {
  width: clamp(300px, 380px, min(380px, 19.7916666667vw));
}
.recruit .message-section .grid-box .img-wrap .txt-wrap {
  margin-top: 20px;
}
.recruit .message-section .grid-box .img-wrap .txt-wrap .company {
  font-size: 20px;
  font-weight: bold;
  line-height: 1.8;
}
.recruit .message-section .grid-box .img-wrap .txt-wrap .box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
  -webkit-align-items: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  gap: 20px;
}
.recruit .message-section .grid-box .img-wrap .txt-wrap .box .post {
  font-size: 20px;
  font-weight: bold;
  line-height: 1.8;
}
.recruit .message-section .grid-box .img-wrap .txt-wrap .box .name {
  font-size: 28px;
  font-weight: bold;
  line-height: 1.8;
}
.recruit .number-section .top-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 36px 40px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.recruit .number-section .white-box {
  background: #FFFFFF;
  padding: 36px 40px;
  width: calc((100% - 40px) / 2);
  min-width: 485px;
}
.recruit .number-section .white-box .c-ttl03 {
  margin-bottom: 40px;
}
.recruit .number-section .white-box .c-ttl03.ico-home {
  padding-right: 70px;
}
.recruit .number-section .white-box .c-ttl03.ico-home::after {
  content: "";
  position: absolute;
  background: url("../img/recruit/number-ico05.svg") no-repeat no-repeat center center/contain;
  display: block;
  width: 60px;
  height: 28px;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
}
.recruit .number-section .white-box .txt-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  row-gap: 8px;
  -webkit-column-gap: 16px;
     -moz-column-gap: 16px;
          column-gap: 16px;
}
.recruit .number-section .white-box .txt-wrap .txt {
  font-weight: bold;
  border-radius: 5px;
  line-height: 1;
}
.recruit .number-section .white-box .txt-wrap .txt.yellow {
  font-size: 24px;
  background: #FFE100;
  padding: 15px 20px;
}
.recruit .number-section .white-box .txt-wrap .txt.gray {
  font-size: 16px;
  padding: 19px 20px;
  background: #F0F0EE;
}
.recruit .number-section .white-box .txt-wrap .txt.l-yellow {
  font-size: 18px;
  padding: 18px 20px;
  background: #FFEE71;
}
.recruit .number-section .white-box .flex-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  height: 240px;
}
.recruit .number-section .white-box .flex-wrap .box {
  width: calc((100% - 30px) / 4);
  background: #F0F0EE;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  padding: 10px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 5px;
}
.recruit .number-section .white-box .flex-wrap .box .yellow {
  background: #FFE100;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  border-radius: 5px;
  padding: 6px 0;
}
.recruit .number-section .white-box .flex-wrap .box .yellow > .txt {
  font-weight: bold;
  line-height: normal;
}
.recruit .number-section .white-box .flex-wrap .box .img {
  width: 60px;
  aspect-ratio: 1/1;
}
.recruit .number-section .white-box .flex-wrap .box .img > img {
  display: block;
  margin: auto;
}
.recruit .number-section .white-box .flex-wrap .box .bottom .num {
  font-weight: 500;
  line-height: 1;
  font-size: 32px;
}
.recruit .number-section .white-box .flex-wrap .box .bottom .ja {
  font-weight: bold;
  line-height: 1;
}
.recruit .number-section .center-wrap {
  margin-top: 40px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 36px 40px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.recruit .number-section .center-wrap .white-box {
  width: calc((100% - 80px) / 3);
  min-width: 350px;
}
.recruit .number-section .center-wrap .white-box .flex-txt-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 10px;
}
.recruit .number-section .center-wrap .white-box .flex-txt-wrap .box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  background: #F0F0EE;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 10px;
  width: calc((100% - 10px) / 2);
  border-radius: 5px;
}
.recruit .number-section .center-wrap .white-box .flex-txt-wrap .box.yellow {
  background: #FFE100;
}
.recruit .number-section .center-wrap .white-box .flex-txt-wrap .box.yellow .area {
  font-weight: bold;
}
.recruit .number-section .center-wrap .white-box .flex-txt-wrap .box .area {
  line-height: 1;
}
.recruit .number-section .center-wrap .white-box .flex-txt-wrap .box .count {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 2px;
}
.recruit .number-section .center-wrap .white-box .flex-txt-wrap .box .count .num {
  font-weight: 500;
  line-height: 1;
  font-size: 24px;
}
.recruit .number-section .center-wrap .white-box .flex-txt-wrap .box .count .ja {
  line-height: 1;
  font-size: 14px;
}
.recruit .number-section .slide-wrap {
  margin-top: 50px;
}
.recruit .number-section .bottom-wrap {
  margin-top: 50px;
}
.recruit .number-section .bottom-wrap .white-box {
  width: 100%;
}
.recruit .number-section .bottom-wrap .white-box .c-ttl03 {
  margin-bottom: 30px;
}
.recruit .number-section .bottom-wrap .white-box .txt-area {
  max-width: 783px;
  width: 100%;
  margin: auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  row-gap: 10px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.recruit .number-section .bottom-wrap .white-box .txt-area .yellow {
  background: #FFE100;
  font-weight: bold;
  line-height: normal;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
.recruit .number-section .bottom-wrap .white-box .txt-area .yellow .big {
  font-size: 48px;
}
.recruit .number-section .bottom-wrap .white-box .txt-area .yellow .ja {
  font-size: 36px;
  line-height: 1.6;
}
.recruit .number-section .bottom-wrap .white-box .txt-area .black {
  font-weight: bold;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.recruit .number-section .bottom-wrap .white-box .txt-area .black .big {
  font-size: 24px;
  line-height: normal;
}
.recruit .number-section .bottom-wrap .white-box .txt-area .black .ja {
  font-size: 20px;
  line-height: 1.6;
}
.recruit .number-section .c-ttl03 {
  padding-block: 6px;
}
.recruit .number-section .c-ttl03::before {
  top: 11px;
}
.recruit .number-section .white {
  background: #FFFFFF;
  padding: 36px 0 30px 40px;
}
.recruit .number-section .slide {
  margin-top: 40px;
}
.recruit .number-section .slide .box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
  max-width: 330px;
}
.recruit .number-section .slide .box.w-300 {
  max-width: 300px;
}
.recruit .number-section .slide .box.last {
  margin-right: 40px;
}
.recruit .number-section .slide .box .img {
  -o-object-fit: contain;
     object-fit: contain;
}
.recruit .number-section .slide .box .img > img {
  display: block;
  width: 100%;
}
.recruit .number-section .slide .box .txt {
  font-weight: 500;
  line-height: 1.4;
}
.recruit .number-section .slide .box .tag-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 16px;
     -moz-column-gap: 16px;
          column-gap: 16px;
  row-gap: 4px;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
.recruit .number-section .slide .box .tag-wrap .tag {
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
}
.recruit .splide__arrows {
  position: absolute;
  top: -80px;
  right: 40px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
}
.recruit .splide__arrows .splide__arrow {
  background: #FFE100;
  width: 40px;
  height: 40px;
  position: relative;
}
.recruit .splide__arrows .splide__arrow::before {
  content: "";
  position: absolute;
  background: url("../img/news/paging-ico.svg") no-repeat no-repeat center center/contain;
  display: block;
  width: 6px;
  height: 10px;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
}
.recruit .splide__arrows .splide__arrow.splide__arrow--next::before {
  rotate: 180deg;
}
.recruit .interview-section {
  overflow: hidden;
}
.recruit .interview-section .wrap + .wrap {
  margin-top: 50px;
  padding-top: 50px;
  border-top: 1px solid #aaa;
}
.recruit .interview-section .wrap .inn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: clamp(40px, 80px, min(80px, 4.1666666667vw));
}
.recruit .interview-section .wrap .inn.reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.recruit .interview-section .wrap .inn .img {
  max-width: 380px;
  width: 100%;
}
.recruit .interview-section .wrap .inn .img.min1000 {
  margin: auto;
  margin-bottom: 40px;
}
.recruit .interview-section .wrap .inn .txt-wrap .ttl {
  font-size: 32px;
  margin-bottom: 40px;
  line-height: 1.5;
}
.recruit .interview-section .wrap .inn .txt-wrap .txt {
  line-height: 2;
}
.recruit .interview-section .wrap .slide-wrap {
  margin-top: 50px;
}
.recruit .interview-section .wrap .slide-wrap .slide {
  margin-top: 40px;
}
.recruit .interview-section .wrap .slide-wrap .arrows {
  position: relative;
}
.recruit .interview-section .wrap .slide-wrap .schedule-splide01 .splide__track.inner-block,
.recruit .interview-section .wrap .slide-wrap .schedule-splide02 .splide__track.inner-block {
  overflow: visible;
  padding-right: 40px !important;
  padding-left: 40px !important;
}
.recruit .interview-section .wrap .slide-wrap .schedule-splide01 .inn,
.recruit .interview-section .wrap .slide-wrap .schedule-splide02 .inn {
  padding-top: 12px;
  width: 300px;
  height: 100%;
}
.recruit .interview-section .wrap .slide-wrap .schedule-splide01 .box,
.recruit .interview-section .wrap .slide-wrap .schedule-splide02 .box {
  background: #F0F0EE;
  padding: 43px 20px 20px;
  position: relative;
  width: 100%;
  height: 100%;
}
.recruit .interview-section .wrap .slide-wrap .schedule-splide01 .box .txt,
.recruit .interview-section .wrap .slide-wrap .schedule-splide02 .box .txt {
  line-height: 1.6;
}
.recruit .interview-section .wrap .slide-wrap .schedule-splide01 .box .time,
.recruit .interview-section .wrap .slide-wrap .schedule-splide02 .box .time {
  position: absolute;
  top: -12px;
  left: 20px;
  background: #FFE100;
  font-weight: bold;
  padding: 5px 15px;
  line-height: normal;
  border-radius: 30px;
  font-size: 20px;
}
.recruit .benefits-section .benefit-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 20px;
}
.recruit .benefits-section .benefit-list > li {
  background: #FFFFFF;
  width: calc((100% - 60px) / 4);
  min-width: 281px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 15px 15px 15px 20px;
  gap: 20px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.recruit .benefits-section .benefit-list > li .yellow {
  background: #FFE100;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  border-radius: 50%;
  width: 100px;
  aspect-ratio: 1/1;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.recruit .benefits-section .benefit-list > li .txt {
  font-size: 18px;
  font-weight: bold;
  line-height: normal;
}
.recruit .qualification-section .txt {
  font-size: 20px;
  line-height: 1.4;
}
.recruit .qualification-section .qualification-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 10px 20px;
  margin-top: 50px;
}
.recruit .qualification-section .qualification-list > li {
  font-size: 20px;
  line-height: normal;
  position: relative;
  padding-left: 20px;
}
.recruit .qualification-section .qualification-list > li::before {
  content: "";
  position: absolute;
  background: #FFE100;
  display: block;
  width: 10px;
  height: 10px;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
}
.recruit .recruitment-section .recruitment-table {
  width: 100%;
}
.recruit .recruitment-section .recruitment-table tr {
  border-bottom: 1px solid #aaa;
}
.recruit .recruitment-section .recruitment-table tr:first-child th,
.recruit .recruitment-section .recruitment-table tr:first-child td {
  padding-top: 0;
}
.recruit .recruitment-section .recruitment-table th,
.recruit .recruitment-section .recruitment-table td {
  padding-block: 20px;
}
.recruit .recruitment-section .recruitment-table th {
  width: clamp(180px, 250px, min(250px, 13.0208333333vw));
  text-align: start;
  vertical-align: top;
  line-height: 1.4;
  font-size: 18px;
}
.recruit .recruitment-section .recruitment-table td {
  padding-left: 30px;
  line-height: normal;
}
.recruit .recruitment-section .recruitment-table td .num-list {
  counter-reset: re-number 0;
}
.recruit .recruitment-section .recruitment-table td .num-list > li {
  padding-left: 17px;
  position: relative;
  line-height: normal;
}
.recruit .recruitment-section .recruitment-table td .num-list > li + li {
  margin-top: 10px;
}
.recruit .recruitment-section .recruitment-table td .num-list > li::before {
  counter-increment: re-number 1;
  content: counter(re-number) "";
  position: absolute;
  top: 1px;
  left: 0;
  font-family: "Oswald", sans-serif;
  font-weight: bold;
  line-height: normal;
}
.recruit .recruitment-section .recruitment-table td .inn-list > li {
  padding-left: 20px;
  position: relative;
  line-height: 1.5;
}
.recruit .recruitment-section .recruitment-table td .inn-list > li::before {
  content: "";
  position: absolute;
  background: #131313;
  display: block;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  top: 12px;
  left: 8px;
  margin: auto;
}
.recruit .apply-section .form-box {
  margin-top: 50px;
}
.recruit .apply-section .form-box input[type=text],
.recruit .apply-section .form-box input[type=tel],
.recruit .apply-section .form-box input[type=email],
.recruit .apply-section .form-box textarea,
.recruit .apply-section .form-box select {
  padding: 15px 20px;
  width: 100%;
  line-height: 1.4;
  font-size: 16px !important;
  border: 1px solid #E3E3E3;
}
.recruit .apply-section .form-box input[type=text].errored,
.recruit .apply-section .form-box input[type=tel].errored,
.recruit .apply-section .form-box input[type=email].errored,
.recruit .apply-section .form-box textarea.errored,
.recruit .apply-section .form-box select.errored {
  border: 1px solid #D71C1C;
}
.recruit .apply-section .form-box .q-wrap:first-child {
  border-top: none;
}
.recruit .apply-section .form-box .q-wrap .input-area.flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.recruit .apply-section .form-box .birth-select-group {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
.recruit .apply-section .form-box .birth-select-group .birth-select {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.recruit .apply-section .form-box .birth-select-group .birth-select .select {
  position: relative;
}
.recruit .apply-section .form-box .birth-select-group .birth-select .select::before {
  content: "";
  position: absolute;
  background: url("../img/recruit/down.svg") no-repeat no-repeat center center/contain;
  display: block;
  width: 10px;
  height: 5px;
  top: 0;
  bottom: 0;
  right: 9px;
  margin: auto;
}
.recruit .apply-section .form-box .birth-select-group .birth-select .select select {
  border: 1px solid #F0F0EE;
  padding: 16px 34px 16px 20px;
}
.recruit .apply-section .form-box .birth-select-group .birth-select .select select.errored {
  border: 1px solid #D71C1C;
}
.recruit .apply-section .form-box .wpcf7-file-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.recruit .apply-section .form-box .note-wrap {
  margin-top: 10px;
}
.recruit .apply-section .form-box .note-wrap .note {
  color: #aaa;
  line-height: 1.4;
}
.recruit .apply-section .form-box .file-btm {
  display: block;
  background: #F0F0EE;
  padding: 15px 20px;
  border: 1px solid #E3E3E3;
}
.recruit .apply-section .form-box .file-btm .txt {
  font-weight: 500;
  line-height: 1.4;
  font-size: 16px;
  display: block;
}
.recruit .apply-section .form-box .wpcf7-file {
  visibility: hidden;
  width: 0;
  height: 0;
}
.recruit .apply-section .form-box .input-area {
  padding-right: min(70px, 3.6458333333vw);
}
.recruit .apply-section .radio-group {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 25px 21px;
  height: 100%;
}
.recruit .apply-section .radio-group .wpcf7-radio, .recruit .apply-section .radio-group .wpcf7-checkbox {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 10px 40px;
}
.recruit .apply-section .radio-group label {
  position: relative;
  padding-left: 30px;
  line-height: 1.4;
}
.recruit .apply-section .radio-group label::before, .recruit .apply-section .radio-group label::after {
  content: "";
  position: absolute;
}
.recruit .apply-section .radio-group label::before {
  top: 3px;
  left: 0;
  width: 20px;
  height: 20px;
  border: 3px solid #E3E3E3;
  border-radius: 20px;
  background: #FFFFFF;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.recruit .apply-section .radio-group label:has(input:checked)::before {
  background: #131313;
}
.recruit .apply-section .radio-group + .error-txt {
  margin-top: 8px;
}
.recruit .apply-section .wpcf7-list-item {
  margin: 0;
}
.recruit .apply-section .age-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.recruit .apply-section .age-wrap .age {
  border: 1px solid #F0F0EE;
  padding: 12px 20px;
  min-height: 56px;
  min-width: 74px;
}
.recruit .apply-section .privacy-wrap {
  padding: 50px 0;
}
.recruit .apply-section .privacy-wrap .input-area {
  padding-right: 0;
}
.recruit .apply-section .privacy-txt.start {
  text-align: start;
  width: 100%;
}
.recruit .apply-section .privacy-txt.block {
  padding-block: 50px 10px;
  text-align: center;
}
.recruit .apply-section .gray-wrap {
  background: #F0F0EE;
  padding: 20px;
  margin-top: 50px;
}
.recruit .apply-section .gray-wrap .inn {
  overflow-y: auto;
  max-height: 156px;
}
.recruit .apply-section .gray-wrap .inn::-webkit-scrollbar-track {
  background: #FFFFFF;
}
.recruit .apply-section .gray-wrap .inn::-webkit-scrollbar-button {
  display: none;
}
.recruit .apply-section .gray-wrap .inn::-webkit-scrollbar-thumb {
  background: #aaa;
}
.recruit .apply-section .gray-wrap .inn::-webkit-scrollbar {
  height: 5px;
  width: 5px;
}
.recruit .apply-section .gray-wrap .ttl {
  text-align: center;
  line-height: 1.4;
  margin-bottom: 20px;
}
.recruit .apply-section .gray-wrap .txt {
  font-size: 14px;
  line-height: 1.6;
}

.not-found {
  padding: 100px 0;
}
.not-found h1 {
  font-size: 32px;
  text-align: center;
}
.not-found p {
  text-align: center;
  margin-top: 30px;
  font-size: 18px;
  line-height: 1.6;
}
.not-found .btn-area {
  margin-top: 40px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.not-found .c-btn02 {
  display: block;
  margin: 30px auto 0;
}
@media only screen and (max-width: 767px) {
  html {
    font-size: 14px;
  }
  body {
    position: relative;
    -webkit-appearance: none;
    -webkit-text-size-adjust: 100%;
    margin-top: 60px;
  }
  input,
  select,
  textarea {
    font-size: 16px !important;
  }
  #wrapper {
    min-width: 320px;
  }
  .inner-block {
    padding-left: 20px;
    padding-right: 20px;
  }
  .pc {
    display: none !important;
  }
  .c-header .inner-block {
    padding-left: 0;
    width: 100%;
  }
  .c-header .inner-block .logo {
    padding-top: 10px;
    padding-left: 10px;
  }
  .c-header .inner-block .logo > a {
    gap: 5px;
  }
  .c-header .inner-block .logo > a .img {
    height: 40px;
  }
  .c-header .inner-block .logo > a .txt-wrap {
    gap: 3px;
  }
  .c-header .inner-block .logo > a .txt-wrap .small {
    font-size: 12px;
  }
  .c-header .inner-block .logo > a .txt-wrap .big {
    font-size: 18px;
  }
  .c-header .inner-block .btn-menu {
    margin-right: 10px;
  }
  .c-footer .footer-top .logo > a .img {
    height: 60px;
    gap: 5px;
  }
  .c-footer .footer-top .logo > a .txt-wrap .big {
    font-size: 20px;
  }
  .c-footer .footer-top .logo > a .txt-wrap .small {
    font-size: 12px;
  }
  .c-footer .footer-top .nav-wrap .box .nav {
    padding: 14px 10px;
    width: clamp(140px, 160px, min(160px, 42.6666666667vw));
  }
  .c-footer .footer-top .sns-list > li .link {
    width: 20px;
    height: 20px;
  }
  .sns-area {
    top: 70vh;
    -webkit-transition: 0.15s ease-in-out;
    transition: 0.15s ease-in-out;
  }
  .sns-area::before {
    width: 40px;
  }
  .sns-area .sns-list > .link {
    padding: 10px;
  }
  .c-ttl01 {
    margin-bottom: 20px;
  }
  .c-ttl01 .en {
    font-size: 16px;
  }
  .c-ttl01 .ja {
    font-size: 28px;
  }
  .c-ttl02 {
    font-size: 24px;
    margin-bottom: 20px;
  }
  .c-ttl03 {
    font-size: 16px;
    padding-left: 25px;
  }
  .c-ttl03::before {
    aspect-ratio: 27/22;
    width: 18px;
    height: auto;
  }
  .c-ttl04 {
    margin-top: 30px;
    font-size: 20px;
  }
  .c-section {
    padding-block: 50px;
  }
  .c-news-list > li > a {
    padding: 15px 0 15px 10px;
    gap: 15px;
  }
  .c-news-list > li > a .img {
    width: min(100px, 26.6666666667vw);
  }
  .c-news-list > li > a .txt-wrap {
    padding-right: 30px;
  }
  .c-news-list > li > a .txt-wrap::before {
    right: 6px;
  }
  .c-news-list > li > a .txt-wrap .tag-wrap {
    margin-bottom: 5px;
  }
  .c-news-list > li > a .txt-wrap .tag-wrap .tag {
    padding: 2px 4px;
  }
  .c-news-list > li > a .txt-wrap .txt {
    font-size: 14px;
  }
  .c-breadcrumb-list > li {
    font-size: 12px;
  }
  .c-breadcrumb-list > li:not(:first-child)::before {
    top: 3px;
  }
  .c-mv::before {
    right: 0;
    width: 300px;
  }
  .c-mv .inner-block {
    padding-left: 20px;
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .c-mv .anchor-wrap {
    padding-top: 30px;
  }
  .c-mv .anchor-wrap .anchor-list > li .c-btn01 {
    padding: 8px 15px;
    max-width: 300px;
  }
  .home .mv-section .video {
    height: calc(100vh - 65px);
  }
  .home .mv-section .mv-ttl {
    top: 30px;
    left: 20px;
  }
  .home .mv-section .mv-ttl .inn {
    font-size: clamp(25px, 8vw, 40px);
  }
  .home .mv-section .mv-ttl .inn .big {
    font-size: clamp(35px, 10.6666666667vw, 50px);
  }
  .home .mv-section .movie-wrap {
    bottom: 15px;
    left: 10px;
  }
  .home .mv-section .movie-wrap .black {
    padding: 5px;
  }
  .home .mv-section .movie-wrap .black .txt {
    font-size: clamp(10px, 3.2vw, 16px);
    line-height: 1.2;
    text-align: center;
  }
  .home .mv-section .movie-wrap .white {
    padding: 10px;
  }
  .home .mv-section .movie-wrap .white .movie {
    width: clamp(100px, 40vw, 150px);
  }
  .home .wrap {
    margin-top: -100px;
    padding-top: 150px;
    height: calc(100% + 150px);
  }
  .home .sticky-box > .img {
    height: min(300px, 40.0534045394vw);
    top: 60px;
  }
  .home .about-section {
    padding-bottom: 50px;
  }
  .home .about-section .inner-block .txt-area .txt-wrap {
    gap: 10px;
  }
  .home .business-section {
    padding-bottom: 50px;
  }
  .home .business-section::after {
    height: 150px;
  }
  .home .business-section .business-list > li::before {
    padding: 18px 15px;
    font-size: 34px;
    width: 70px;
  }
  .home .business-section .business-list > li {
    aspect-ratio: 5/4;
  }
  .home .business-section .business-list > li > a {
    overflow: hidden;
  }
  .home .business-section .business-list > li > a > img {
    position: relative;
    top: -20px;
    z-index: -1;
  }
  .home .business-section .business-list > li .c-btn01 .txt {
    font-size: 16px;
  }
  .home .company-section .inn .link {
    min-width: inherit;
    width: 100%;
    max-width: 400px;
  }
  .home .company-section .inn .link .c-btn01 .txt {
    font-size: 16px;
  }
  .home .recruit-section .txt-wrap {
    gap: 20px;
  }
  .home .recruit-section .txt-wrap > .txt {
    font-size: 14px;
  }
  .home .recruit-section .txt-wrap .recruit-list > li > a {
    padding: 3px 10px;
  }
  .home .recruit-section .txt-wrap .recruit-list > li > a .txt {
    padding: 9px 0 10px 40px;
  }
  .home .recruit-section .txt-wrap .recruit-list > li > a .txt::before {
    width: 30px;
    height: 30px;
  }
  .p-business .p-ttl01 {
    margin-top: 8px;
    font-size: 20px;
  }
  .p-business .p-vehicle-wrap .vehicle-block {
    margin-top: 20px;
  }
  .p-business .p-vehicle-wrap .vehicle {
    padding: 10px 15px;
    font-size: 16px;
  }
  .p-business .p-vehicle-wrap .vehicle .name {
    width: 120px;
  }
  .p-business .case-section .case-wrap {
    gap: 24px;
  }
  .p-business .case-section .case-wrap .txt {
    margin-top: 5px;
  }
  .p-business .case-section .case-wrap .list > li::before {
    top: 6px;
  }
  .p-business .work-section .work-wrap {
    gap: 24px;
  }
  .p-business .work-section .work-wrap .p-ttl01 {
    margin-top: 0;
    font-size: 14px;
  }
  .p-business .work-section .report-wrap .report-block {
    margin-top: 20px;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
  }
  .p-business .work-section .report-wrap .report {
    padding-block: 10px;
  }
  .p-business .work-section .report-wrap .report .top-area {
    padding: 0 10px 8px;
  }
  .p-business .work-section .report-wrap .report .ttl {
    margin-top: 8px;
    font-size: 16px;
  }
  .p-business .work-section .report-wrap .report .info-area {
    padding: 10px 10px 0;
  }
  .p-business .work-section .report-wrap .report .info-area > li {
    padding-left: 24px;
    font-size: 14px;
  }
  .p-business .work-section .report-wrap .report .info-area > li::before {
    top: 3px;
    width: 18px;
    height: 18px;
  }
  .p-business .work-section .report-wrap .report .info-area > li + li {
    margin-top: 2px;
  }
  .p-business .work-section .report-wrap .c-btn01 {
    font-size: 14px;
  }
  .p-business .work-section .yearly-wrap {
    padding-inline: 20px;
  }
  .p-business .work-section .yearly-wrap .table-wrap {
    margin-top: 20px;
  }
  .p-business .work-section .yearly-wrap .table-wrap table {
    font-size: 16px;
    min-width: 720px;
  }
  .p-business .work-section .yearly-wrap .table-wrap th, .p-business .work-section .yearly-wrap .table-wrap td {
    padding: 10px;
  }
  .p-business .collection-section .p-vehicle-wrap .vehicle {
    padding: 10px 0;
  }
  .p-business .collection-section .license-list {
    margin-top: 20px;
  }
  .p-business .collection-section .license-list > li {
    padding: 10px 0 10px;
  }
  .p-business .collection-section .license-list > li .license {
    font-size: 16px;
  }
  .p-business .resource-section .product-wrap .product-block {
    margin-top: 20px;
  }
  .p-business .resource-section .product-wrap .ttl {
    margin-top: 0;
    font-size: 14px;
  }
  .p-business .resource-section .address-wrap .address-block {
    margin-top: 20px;
  }
  .p-business .resource-section .address-wrap .address-list > li {
    font-size: 16px;
    padding: 10px 0 10px;
  }
  .p-business .resource-section .address-wrap .address-list .ttl {
    min-width: 130px;
  }
  .p-company .p-info-table dt, .p-company .p-info-table dd {
    padding: 10px 15px;
    font-size: 16px;
  }
  .p-company .p-info-table .license-list > li {
    padding-left: 12px;
  }
  .p-company .p-info-table .license-list > li::before {
    top: 12px;
  }
  .p-company .message-section {
    background: none;
    background-color: #fff;
  }
  .p-company .message-section .txt-wrap {
    margin-top: 10px;
    font-size: 16px;
  }
  .p-company .message-section .txt-wrap .message-txt + .message-txt {
    margin-top: 10px;
  }
  .p-company .message-section .txt-wrap .img-sign-wrap {
    margin-inline: auto;
    max-width: 400px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .p-company .message-section .txt-wrap .img-wrap {
    margin-top: 20px;
  }
  .p-company .message-section .txt-wrap .sign-area {
    margin-top: 10px;
    font-size: 16px;
  }
  .p-company .message-section .txt-wrap .sign-area .ceo {
    margin-top: 0;
  }
  .p-company .message-section .txt-wrap .sign-area .ceo .name {
    margin-left: 10px;
    font-size: 20px;
  }
  .p-company .com-section .lisence-vehicle-wrap {
    margin-top: 0;
  }
  .p-company .com-section .lisence-vehicle-wrap .c-ttl04 {
    margin-bottom: 20px;
  }
  .p-company .history-section .c-ttl02 {
    margin-bottom: 20px;
  }
  .p-company .history-section .swiper-slide {
    padding-right: 20px;
    width: 200px;
  }
  .p-company .history-section .swiper-slide::before {
    top: 6px;
  }
  .p-company .history-section .swiper-slide::after {
    width: 12px;
    height: 12px;
  }
  .p-company .history-section .swiper-slide .year {
    font-size: 18px;
  }
  .p-company .history-section .swiper-slide .month {
    font-size: 16px;
  }
  .p-company .history-section .swiper-slide .desc {
    margin-top: 10px;
  }
  .p-company .access-section .c-ttl02 {
    margin-bottom: 20px;
  }
  .p-company .access-section .ttl {
    margin-bottom: 5px;
    font-size: 18px;
  }
  .p-company .access-section .address-txt {
    margin-top: 2px;
  }
  .p-company .access-section .map-wrap {
    gap: 15px 20px;
  }
  .news .news-section .left-wrap .c-tag-list > li > a.current {
    background: #FFE100;
  }
  .news .paging-area {
    margin-top: 50px;
  }
  .news .paging-area .page-numbers {
    max-width: 35px;
    max-height: 35px;
  }
  .news .paging-area .page-numbers.next {
    margin-left: 10px;
  }
  .news .paging-area .page-numbers.prev {
    margin-right: 10px;
  }
  .detail .detail-section .cont > .box {
    padding-inline: 0;
  }
  .detail .detail-section .cont {
    padding: 30px 20px;
  }
  .detail .detail-section .cont .ttl-wrap {
    padding-bottom: 10px;
    margin-bottom: 20px;
  }
  .detail .detail-section .cont .ttl-wrap .ttl {
    font-size: 24px;
    margin-bottom: 10px;
  }
  .detail .detail-section .cont .inn * + * {
    margin-top: 20px;
  }
  .detail .detail-section .cont .inn * + h2,
  .detail .detail-section .cont .inn * + h3,
  .detail .detail-section .cont .inn * + h4 {
    margin-top: 30px;
  }
  .detail .detail-section .cont .inn > img {
    max-width: 600px;
    margin: auto;
  }
  .detail .detail-section .cont .inn h2 {
    font-size: 20px;
  }
  .detail .detail-section .cont .inn h3 {
    font-size: 16px;
    padding-left: 25px;
  }
  .detail .detail-section .cont .inn h3::before {
    aspect-ratio: 27/22;
    width: 18px;
    height: auto;
  }
  .detail .detail-section .cont .inn ul > li {
    padding-left: 10px;
  }
  .detail .detail-section .cont .inn ul > li::before {
    top: 9px;
  }
  .detail .detail-section .cont .inn .column-table > tbody {
    min-width: 500px;
  }
  .detail .detail-section .cont .inn .column-table > tbody th,
  .detail .detail-section .cont .inn .column-table > tbody td {
    padding: 10px;
    min-width: 120px;
    max-width: 120px;
  }
  .detail .detail-section .cont .inn .row-table > tbody {
    min-width: 500px;
  }
  .detail .detail-section .cont .inn .row-table > tbody th,
  .detail .detail-section .cont .inn .row-table > tbody td {
    padding: 10px;
    min-width: 120px;
    max-width: 120px;
  }
  .detail .detail-section .cont .inn .row-table > tbody th {
    min-width: 120px;
  }
  .detail .detail-section .cont .inn .wp-block-columns.is-layout-flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .detail .detail-section .cont .inn .wp-block-image {
    max-width: 500px;
  }
  .detail .detail-section .btn-wrap {
    margin-top: 50px;
  }
  .privacy .privacy-section .inn {
    padding: 30px 20px;
  }
  .privacy .privacy-section .inn > .box {
    padding-inline: 0;
  }
  .privacy .privacy-section .inn .privacy-num-list > li {
    margin-top: 15px;
    padding-bottom: 15px;
  }
  .privacy .privacy-section .inn .privacy-num-list > li .ttl {
    font-size: 18px;
    padding-left: 20px;
  }
  .privacy .privacy-section .inn .privacy-num-list > li .ttl::before {
    font-size: 18px;
    top: 1px;
  }
  .privacy .privacy-section .inn .privacy-num-list > li .txt {
    padding-left: 20px;
  }
  .privacy .privacy-section .inn .privacy-list {
    padding-left: 20px;
  }
  .privacy .privacy-section .inn .privacy-list > li {
    padding-left: 10px;
  }
  .contact .contact-section .inn {
    padding-block: 20px;
  }
  .contact .contact-section .inn.pt80 {
    margin-top: 50px;
  }
  .contact .contact-section .inn.pt50 .box .yellow {
    font-size: 20px;
  }
  .contact .contact-section .inn.pt50 .box .num {
    font-size: 35px;
  }
  .contact .contact-section .inn.pt50 .box .note {
    line-height: 1.4;
    margin-top: 5px;
  }
  .contact .contact-section .inn.pt50 .box .txt {
    margin-top: 10px;
    font-size: 12px;
  }
  .contact .contact-section .inn {
    padding: 30px 20px;
  }
  .contact .contact-section .inn > .box {
    padding-inline: 0;
  }
  .contact .contact-section .inn > .box .txt-wrap {
    margin-bottom: 20px;
  }
  .contact .contact-section .inn > .box .txt-wrap .ttl {
    font-size: 24px;
    margin-bottom: 20px;
  }
  .contact-section .q-wrap {
    padding: 20px 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 10px;
  }
  .contact-section .q-wrap.privacy-wrap {
    padding-top: 20px;
  }
  .contact-section .label-area {
    -webkit-box-pack: start;
    -webkit-justify-content: start;
        -ms-flex-pack: start;
            justify-content: start;
    gap: 10px;
    width: 100%;
  }
  .contact-section .input-area {
    width: 100%;
  }
  .contact-section .contact-label {
    font-size: 16px;
  }
  .contact-section input[type=text],
  .contact-section input[type=tel],
  .contact-section input[type=email],
  .contact-section textarea,
  .contact-section select {
    padding: 16px 10px;
  }
  .contact-section .checkbox-group {
    margin-top: 10px;
  }
  .contact-section .checkbox-group .wpcf7-checkbox {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    gap: 15px;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .contact-section .btn-wrap {
    gap: 20px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .recruit .mv-section {
    background-size: cover;
    background-position: 65%;
  }
  .recruit .mv-section .white-wrap {
    margin-top: 80px;
  }
  .recruit .mv-section .white-wrap .white {
    font-size: 20px;
    padding: 5px 0 5px 10px;
  }
  .recruit .mv-section .white-wrap .white + .white {
    margin-top: 5px;
  }
  .recruit .mv-section .inner-block {
    padding-left: 20px;
  }
  .recruit .anchor-wrap {
    padding-block: 30px;
  }
  .recruit .anchor-wrap .anchor-list > li .c-btn01 {
    max-width: 300px;
  }
  .recruit .lead-txt {
    font-size: 20px;
    margin-bottom: 20px;
  }
  .recruit .message-section .grid-box .left-wrap .txt {
    font-size: 16px;
    line-height: 1.6;
  }
  .recruit .message-section .grid-box .left-wrap .txt + .txt {
    margin-top: 10px;
  }
  .recruit .message-section .grid-box .img-wrap .txt-wrap .company {
    font-size: 16px;
  }
  .recruit .message-section .grid-box .img-wrap .txt-wrap .box .post {
    font-size: 16px;
  }
  .recruit .message-section .grid-box .img-wrap .txt-wrap .box .name {
    font-size: 20px;
  }
  .recruit .number-section .white-box .c-ttl03 {
    margin-bottom: 20px;
  }
  .recruit .number-section .white-box .txt-wrap {
    row-gap: 8px;
    -webkit-column-gap: 8px;
       -moz-column-gap: 8px;
            column-gap: 8px;
  }
  .recruit .number-section .white-box .txt-wrap .txt.yellow {
    font-size: 16px;
    padding: 10px 15px;
  }
  .recruit .number-section .white-box .txt-wrap .txt.gray {
    font-size: 12px;
    padding: 12px 15px;
  }
  .recruit .number-section .white-box .txt-wrap .txt.l-yellow {
    font-size: 14px;
    padding: 11px 15px;
  }
  .recruit .number-section .white-box .flex-wrap .box .bottom .num {
    font-size: 26px;
  }
  .recruit .number-section .center-wrap .white-box .flex-txt-wrap .box .count .num {
    font-size: 16px;
  }
  .recruit .number-section .center-wrap .white-box .flex-txt-wrap .box .count .ja {
    font-size: 12px;
  }
  .recruit .number-section .bottom-wrap .white-box .c-ttl03 {
    margin-bottom: 20px;
  }
  .recruit .number-section .bottom-wrap .white-box .txt-area .yellow .big {
    font-size: 32px;
  }
  .recruit .number-section .bottom-wrap .white-box .txt-area .yellow .ja {
    font-size: 26px;
  }
  .recruit .number-section .bottom-wrap .white-box .txt-area .black .big {
    font-size: 18px;
  }
  .recruit .number-section .bottom-wrap .white-box .txt-area .black .ja {
    font-size: 14px;
  }
  .recruit .number-section .white {
    padding: 20px 0 20px 20px;
  }
  .recruit .number-section .slide {
    margin-top: 20px;
  }
  .recruit .number-section .slide .box {
    max-width: 264px;
    gap: 15px;
  }
  .recruit .number-section .slide .box.w-300 {
    max-width: 240px;
  }
  .recruit .number-section .slide .box.last {
    margin-right: 20px;
  }
  .recruit .number-section .slide .box .tag-wrap .tag {
    font-size: 12px;
  }
  .recruit .splide__arrows {
    gap: 10px;
    top: -50px;
    right: 20px;
  }
  .recruit .splide__arrows .splide__arrow {
    width: 30px;
    height: 30px;
  }
  .recruit .interview-section .wrap + .wrap {
    margin-top: 30px;
    padding-top: 30px;
  }
  .recruit .interview-section .wrap .inn .img.min1000 {
    margin-bottom: 20px;
  }
  .recruit .interview-section .wrap .inn .txt-wrap .ttl {
    font-size: 20px;
  }
  .recruit .interview-section .wrap .inn .txt-wrap .txt {
    line-height: 1.6;
  }
  .recruit .interview-section .wrap .slide-wrap {
    margin-top: 30px;
  }
  .recruit .interview-section .wrap .slide-wrap .slide {
    margin-top: 30px;
  }
  .recruit .interview-section .wrap .slide-wrap .schedule-splide01 .splide__track.inner-block,
  .recruit .interview-section .wrap .slide-wrap .schedule-splide02 .splide__track.inner-block {
    padding-right: 20px !important;
    padding-left: 20px !important;
  }
  .recruit .interview-section .wrap .slide-wrap .schedule-splide01 .inn,
  .recruit .interview-section .wrap .slide-wrap .schedule-splide02 .inn {
    width: 250px;
  }
  .recruit .interview-section .wrap .slide-wrap .schedule-splide01 .box .time,
  .recruit .interview-section .wrap .slide-wrap .schedule-splide02 .box .time {
    font-size: 16px;
  }
  .recruit .benefits-section .benefit-list > li {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    min-width: inherit;
    padding: 15px;
    width: calc((100% - 20px) / 2);
    max-width: 180px;
  }
  .recruit .benefits-section .benefit-list > li .txt {
    font-size: 14px;
  }
  .recruit .qualification-section .txt {
    font-size: 16px;
  }
  .recruit .qualification-section .qualification-list {
    margin-top: 30px;
    gap: 10px;
  }
  .recruit .qualification-section .qualification-list > li {
    font-size: 16px;
  }
  .recruit .recruitment-section .recruitment-table tr,
  .recruit .recruitment-section .recruitment-table th,
  .recruit .recruitment-section .recruitment-table td {
    display: block;
  }
  .recruit .recruitment-section .recruitment-table th,
  .recruit .recruitment-section .recruitment-table td {
    padding-block: 10px;
  }
  .recruit .recruitment-section .recruitment-table th {
    font-size: 16px;
  }
  .recruit .recruitment-section .recruitment-table th + tr {
    margin-top: 10px;
  }
  .recruit .recruitment-section .recruitment-table th {
    width: 100%;
  }
  .recruit .recruitment-section .recruitment-table td {
    padding-left: 20px;
    padding-top: 0;
  }
  .recruit .recruitment-section .recruitment-table td .num-list > li {
    padding-left: 12px;
  }
  .recruit .recruitment-section .recruitment-table td .num-list > li + li {
    margin-top: 5px;
  }
  .recruit .recruitment-section .recruitment-table td .num-list > li::before {
    top: 0;
  }
  .recruit .recruitment-section .recruitment-table td .inn-list > li {
    padding-left: 15px;
  }
  .recruit .recruitment-section .recruitment-table td .inn-list > li::before {
    left: 5px;
    top: 9px;
  }
  .recruit .apply-section .form-box {
    margin-top: 20px;
  }
  .recruit .apply-section .form-box input[type=text],
  .recruit .apply-section .form-box input[type=tel],
  .recruit .apply-section .form-box input[type=email],
  .recruit .apply-section .form-box textarea,
  .recruit .apply-section .form-box select {
    padding: 16px 10px;
  }
  .recruit .apply-section .form-box .birth-select-group {
    gap: 10px;
  }
  .recruit .apply-section .form-box .birth-select-group .birth-select .select select {
    padding: 10px 25px 10px 15px;
  }
  .recruit .apply-section .form-box .file-btm {
    max-width: 126px;
    width: 100%;
  }
  .recruit .apply-section .form-box .file-btm .txt {
    font-size: 12px;
    white-space: nowrap;
  }
  .recruit .apply-section .form-box .input-area {
    padding-right: 0;
  }
  .recruit .apply-section .radio-group {
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .recruit .apply-section .radio-group .wpcf7-radio, .recruit .apply-section .radio-group .wpcf7-checkbox {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    gap: 10px;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .recruit .apply-section .radio-group label::before {
    top: 1px;
  }
  .recruit .apply-section .radio-group.flex .wpcf7-radio {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .recruit .apply-section .age-wrap .age {
    padding: 6px 25px 6px 15px;
    min-height: 44px;
    min-width: 60px;
    font-size: 16px;
  }
  .recruit .apply-section .privacy-wrap {
    padding: 20px 0;
  }
  .recruit .apply-section .gray-wrap {
    margin-top: 20px;
  }
  .not-found {
    padding: 60px 0;
  }
  .not-found h1 {
    font-size: 22px;
  }
  .not-found p {
    font-size: 14px;
  }
}
@media only screen and (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
  .inner-block {
    padding-left: 40px;
    padding-right: 40px;
    max-width: 1280px;
  }
  a,
  a::before,
  a::after,
  button,
  button::before,
  button::after {
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }
  .sp {
    display: none !important;
  }
  .c-header .inner-block .nav-wrap .nav:hover::before {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
  .c-header .inner-block .nav-wrap .nav.recruit-btn:hover::before {
    background: #FFE100;
    -webkit-transform: scaleY(0.8) scaleX(0.9);
            transform: scaleY(0.8) scaleX(0.9);
  }
  .c-header .inner-block .nav-wrap .nav.contact-btn:hover {
    background: #E3E3E3;
  }
  .c-header .inner-block .nav-wrap .nav.contact-btn:hover .txt {
    color: #131313;
  }
  .c-header .inner-block .nav-wrap .nav.contact-btn:hover .txt::before {
    background: #131313;
  }
  .c-footer .footer-top .nav-wrap .nav-list > li .nav:hover {
    color: #FFE100;
  }
  .c-footer .footer-top .nav-wrap .box .nav.recruit-btn:hover::before {
    -webkit-transform: scaleY(0.8) scaleX(0.9);
            transform: scaleY(0.8) scaleX(0.9);
  }
  .c-footer .footer-top .nav-wrap .box .nav.contact-btn:hover {
    background: #FFE100;
  }
  .c-footer .footer-top .sns-list > li .link:hover {
    opacity: 0.6;
  }
  .c-footer .footer-bottom .link:hover {
    color: #FFE100;
  }
  .sns-area .sns-list > .link:hover .txt {
    right: 20px;
  }
  .sns-area .sns-list > .link:hover .ico {
    margin-right: 61px;
    background: #131313;
  }
  .sns-area .sns-list > .link:hover {
    background: #FFE100;
  }
  .sns-area .sns-list > .link:hover:nth-child(3) .ico {
    background-image: url("../img/common/youtube-yellow.svg");
    background-color: transparent;
  }
  .c-tag-list > li > a:hover {
    background: #FFE100;
  }
  .c-tag-list > li > a.current:hover {
    background: transparent;
  }
  .c-news-list > li > a:hover {
    background: #FFE100;
  }
  .c-breadcrumb-list > li > a:hover::before {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
  .c-mv .anchor-wrap .anchor-list > li .c-btn01 {
    height: 72px;
  }
  .c-btn01:hover {
    background: #FFE100;
  }
  .c-btn01.yellow-btn:hover {
    background: #FFFFFF;
  }
  .home .business-section .business-list > li > a:hover .c-btn01 {
    background: #FFE100;
  }
  .home .news-section .left-wrap .c-btn01:hover {
    background: #FFFFFF;
  }
  .home .company-section .inn .link:hover .c-btn01 {
    background: #FFE100;
  }
  .home .recruit-section .txt-wrap .recruit-list > li > a:hover {
    background: #FFFFFF;
  }
  .home .banner-section .inn .banner-link:hover > img {
    opacity: 0.7;
  }
  .p-business .work-section .report-wrap .c-btn01 {
    height: 72px;
  }
  .p-business .collection-section .c-ttl04 {
    margin-top: 42px;
  }
  .p-business .resource-section .c-ttl04 {
    margin-top: 38px;
  }
  .p-company .history-section {
    padding-block: 80px;
  }
  .news .news-section .left-wrap .c-btn01:hover {
    background: #FFFFFF;
  }
  .news .paging-area .page-numbers:hover {
    background: #FFFFFF;
  }
  .news .paging-area .page-numbers.dots:hover {
    background: #E3E3E3;
  }
  .detail .detail-section .cont .inn a:hover {
    -webkit-text-decoration-color: transparent;
            text-decoration-color: transparent;
  }
  .privacy .privacy-section .inn .link-txt:hover {
    -webkit-text-decoration-color: #131313;
            text-decoration-color: #131313;
  }
  .contact-section .contact-label {
    max-width: 150px;
  }
  .contact-section .checkbox-group .wpcf7-checkbox {
    margin-top: 20px;
  }
  .contact-section .checkbox-group label .link-txt:hover {
    -webkit-text-decoration-color: transparent;
            text-decoration-color: transparent;
  }
  .contact-section .c-btn01:hover {
    background: #FFFFFF;
  }
  .recruit .apply-section .radio-group .wpcf7-radio, .recruit .apply-section .radio-group .wpcf7-checkbox {
    margin-top: 7px;
  }
}
@media only screen and (max-width: 1100px) {
  .c-header .inner-block {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .c-header .inner-block .nav-wrap {
    background: #FFFFFF;
    position: absolute;
    top: 88px;
    width: 100vw;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    z-index: 500;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 30px min(30px, 2.7272727273vw) min(60px, 5.4545454545vw);
    right: 0;
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
    -webkit-transform-origin: right;
            transform-origin: right;
    visibility: hidden;
    overflow: auto;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }
  .c-header .inner-block .nav-wrap.is-open {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
    visibility: visible;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }
  .c-header .inner-block .nav-wrap .box {
    max-width: 500px;
    width: 100%;
    margin: 20px auto 0;
  }
  .c-header .inner-block .nav-wrap .nav {
    width: 100%;
    padding: 10px;
  }
  .c-header .inner-block .nav-wrap .nav.recruit-btn, .c-header .inner-block .nav-wrap .nav.contact-btn {
    width: 100%;
  }
  .c-header .inner-block .nav-wrap .nav.recruit-btn {
    border: 1px solid #FFE100;
  }
  .c-header .inner-block .nav-wrap .nav.recruit-btn::before {
    background: #FFE100;
  }
  .c-header .inner-block .nav-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-right: 0;
  }
  .c-header .inner-block .nav-list > li {
    width: 100%;
  }
  .c-header .inner-block .nav-list > li .nav {
    border-bottom: 1px solid #131313;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .c-header .inner-block .nav-list > li .nav::before {
    content: none;
  }
  .home .news-section .inner-block {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 40px;
  }
  .home .news-section .left-wrap {
    width: 100%;
    max-width: 600px;
    margin: auto;
    gap: 20px;
  }
  .home .news-section .left-wrap .c-tag-list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 0;
  }
  .home .news-section .left-wrap .c-tag-list > li {
    border-bottom: none;
    border-left: 1px solid #E3E3E3;
    width: 20%;
    min-width: 120px;
  }
  .home .news-section .left-wrap .c-tag-list > li.top {
    border-left: none;
  }
  .home .news-section .left-wrap .c-tag-list > li > a {
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .home .news-section .left-wrap .c-btn01 {
    margin-left: auto;
  }
  .news .news-section .inner-block {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 40px;
  }
  .news .news-section .left-wrap {
    width: 100%;
    max-width: 600px;
    margin: auto;
    gap: 20px;
  }
  .news .news-section .left-wrap .c-tag-list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 0;
  }
  .news .news-section .left-wrap .c-tag-list > li {
    width: 20%;
    min-width: 120px;
  }
  .news .news-section .left-wrap .c-tag-list > li:first-child > a {
    border-color: #E3E3E3;
  }
  .news .news-section .left-wrap .c-tag-list > li > a {
    width: calc(100% + 1px);
    height: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    padding-inline: 5px;
    border-left: 1px solid #E3E3E3;
    border-right: 1px solid #E3E3E3;
    border-bottom: none;
    margin-left: -1px;
  }
  .news .news-section .left-wrap .c-btn01 {
    margin-left: auto;
  }
}
@media only screen and (max-width: 1100px) and (max-width: 767px) {
  .c-header .inner-block .nav-wrap {
    top: 60px;
  }
  .home .news-section .inner-block {
    gap: 30px;
  }
  .home .news-section .left-wrap {
    min-width: inherit;
  }
  .home .news-section .left-wrap .c-tag-list > li {
    min-width: 80px;
  }
  .news .news-section .inner-block {
    gap: 30px;
  }
  .news .news-section .left-wrap {
    min-width: inherit;
  }
  .news .news-section .left-wrap .c-tag-list > li {
    min-width: 100px;
  }
}
@media only screen and (max-width: 1100px) and (min-width: 768px) {
  .c-header .inner-block .nav-list > li .nav:hover {
    color: #FFE100;
    border-color: #FFE100;
  }
}
@media only screen and (min-width: 1101px) {
  .c-header .inner-block .btn-menu {
    display: none;
  }
}
@media only screen and (max-width: 800px) {
  .c-footer .inner-block {
    padding: 50px 40px;
  }
  .c-footer .footer-top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 20px;
  }
  .c-footer .footer-top .address {
    margin-top: 10px;
  }
  .c-footer .footer-top .link-wrap {
    margin-top: 10px;
  }
  .c-footer .footer-top .nav-wrap .nav-list > li {
    width: 100%;
    border-bottom: 1px solid #E3E3E3;
  }
  .c-footer .footer-top .nav-wrap .nav-list > li .nav {
    width: 100%;
    display: block;
    height: 100%;
  }
  .c-footer .footer-top .sns-list {
    margin-top: 20px;
    -webkit-box-pack: start;
    -webkit-justify-content: start;
        -ms-flex-pack: start;
            justify-content: start;
  }
  .c-footer .footer-bottom {
    display: grid;
    padding-top: 20px;
    grid-template-rows: auto auto;
    gap: 10px;
  }
  .c-footer .footer-bottom .copyright {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
        -ms-flex-order: 2;
            order: 2;
    text-align: center;
  }
  .c-footer .footer-bottom .link {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
        -ms-flex-order: 1;
            order: 1;
    font-size: 12px;
  }
}
@media only screen and (max-width: 800px) and (max-width: 767px) {
  .c-footer .inner-block {
    padding: 40px 15px;
  }
  .c-footer .footer-top {
    margin-bottom: 15px;
  }
  .c-footer .footer-top .address {
    margin-top: 5px;
    font-size: 12px;
  }
  .c-footer .footer-top .sns-list {
    margin-top: 15px;
  }
  .c-footer .footer-bottom {
    padding-top: 15px;
    gap: 5px;
  }
}
@media only screen and (max-width: 1150px) {
  .c-footer .footer-top .nav-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: end;
    -webkit-align-items: end;
        -ms-flex-align: end;
            align-items: end;
  }
  .c-footer .footer-top .nav-wrap .nav-list {
    padding-right: 0;
  }
  .c-footer .footer-top .nav-wrap .box {
    margin-top: 20px;
  }
}
@media only screen and (max-width: 1150px) and (max-width: 800px) {
  .c-footer .footer-top .nav-wrap {
    -webkit-box-align: start;
    -webkit-align-items: start;
        -ms-flex-align: start;
            align-items: start;
  }
  .c-footer .footer-top .nav-wrap .nav-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 5px;
    width: 100%;
  }
  .c-footer .footer-top .nav-wrap .box {
    margin: 10px auto 0;
  }
}
@media only screen and (max-width: 924px) {
  .c-mv .anchor-wrap .anchor-list {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media only screen and (max-width: 924px) and (max-width: 767px) {
  .c-mv .anchor-wrap .anchor-list {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
@media only screen and (max-width: 924px) and (max-width: 767px) and (max-width: 500px) {
  .c-mv .anchor-wrap .anchor-list {
    gap: 10px;
  }
}
@media only screen and (max-width: 1000px) {
  .c-mv .anchor-wrap .anchor-list > li {
    width: calc((100% - 45px) / 4);
    min-width: 200px;
  }
  .home .banner-section .inn {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .home .banner-section .inn .banner-link {
    width: 100%;
    max-width: 500px;
  }
  .p-business .resource-section .product-wrap .product-block {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: min(20px, 1.6949152542vw);
  }
  .recruit .anchor-wrap .anchor-list {
    gap: 15px;
  }
  .recruit .anchor-wrap .anchor-list > li {
    width: calc((100% - 45px) / 4);
    min-width: 200px;
  }
  .recruit .message-section .grid-box {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    row-gap: 30px;
  }
  .recruit .message-section .grid-box .img-wrap {
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
        -ms-flex-align: end;
            align-items: flex-end;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .recruit .message-section .grid-box .img-wrap .img {
    max-width: 400px;
  }
  .recruit .message-section .grid-box .img-wrap .txt-wrap {
    margin-top: 0;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
  }
  .recruit .number-section .top-wrap {
    gap: 20px;
  }
  .recruit .number-section .white-box {
    width: calc((100% - 20px) / 2);
    min-width: 440px;
  }
  .recruit .number-section .center-wrap {
    margin-top: 20px;
    gap: 20px;
  }
  .recruit .number-section .slide-wrap {
    margin-top: 30px;
  }
  .recruit .number-section .bottom-wrap {
    margin-top: 30px;
  }
  .recruit .interview-section .wrap .inn {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 30px;
  }
  .recruit .interview-section .wrap .inn.reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .recruit .interview-section .wrap .inn .img.max1000 {
    display: none;
  }
  .recruit .interview-section .wrap .inn .txt-wrap .ttl {
    margin-bottom: 20px;
  }
  .recruit .interview-section .wrap .inn .txt-wrap {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media only screen and (max-width: 1000px) and (max-width: 767px) {
  .c-mv .anchor-wrap .anchor-list > li {
    width: calc((100% - 15px) / 2);
  }
  .recruit .anchor-wrap .anchor-list > li {
    width: calc((100% - 15px) / 2);
  }
  .recruit .message-section .grid-box .img-wrap .img {
    max-width: 300px;
  }
  .recruit .number-section .white-box {
    padding: 20px;
    width: 100%;
    max-width: 420px;
    margin: auto;
    min-width: inherit;
  }
  .recruit .number-section .center-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media only screen and (max-width: 1000px) and (max-width: 767px) and (max-width: 500px) {
  .c-mv .anchor-wrap .anchor-list > li {
    width: 100%;
  }
  .recruit .anchor-wrap .anchor-list > li {
    width: 100%;
  }
}
@media only screen and (max-width: 767px) and (max-width: 400px) {
  .home .mv-section .mv-ttl {
    left: 10px;
  }
}
@media only screen and (max-width: 1600px) {
  .home > .wrap > .inn::after {
    top: 40px;
  }
}
@media only screen and (max-width: 1600px) and (max-width: 1039px) {
  .home > .wrap > .inn::after {
    top: 0;
    bottom: 400px;
  }
}
@media only screen and (max-width: 1600px) and (max-width: 1039px) and (max-width: 900px) {
  .home > .wrap > .inn::after {
    top: 200px;
  }
}
@media only screen and (max-width: 1600px) and (max-width: 1039px) and (max-width: 767px) and (min-width: 670px) {
  .home > .wrap > .inn::after {
    top: 50px;
    bottom: 0;
  }
}
@media only screen and (max-width: 1600px) and (max-width: 1039px) and (max-width: 767px) and (max-width: 670px) {
  .home > .wrap > .inn::after {
    bottom: 275px;
    top: 0;
  }
}
@media only screen and (max-width: 900px) {
  .home .about-section .inner-block {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .home .about-section .inner-block .img {
    width: 100%;
    max-width: 500px;
    margin: auto;
  }
  .contact .contact-section .inn.pt50 .flex-wrap {
    row-gap: 50px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .contact .contact-section .inn.pt50 .box {
    width: 100%;
    margin: auto;
  }
  .contact .contact-section .inn.pt50 .box:last-child {
    border: none;
  }
  .recruit .c-ttl01 {
    margin-bottom: 20px;
  }
  .recruit .mv-section {
    padding-top: 30px;
  }
}
@media only screen and (max-width: 1100px) and (max-width: 440px) {
  .home .news-section .left-wrap .c-tag-list {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: repeat(2, 1fr);
  }
  .home .news-section .left-wrap .c-btn01 {
    margin: auto;
  }
  .news .news-section .left-wrap .c-btn01 {
    margin: auto;
  }
}
@media only screen and (max-width: 1100px) and (max-width: 767px) and (max-width: 440px) {
  .home .news-section .left-wrap .c-tag-list > li {
    width: 100%;
  }
  .home .news-section .left-wrap .c-tag-list > li:first-child {
    grid-area: 1/1/2/3;
  }
  .home .news-section .left-wrap .c-tag-list > li:nth-child(2) {
    grid-area: 1/3/2/5;
  }
  .home .news-section .left-wrap .c-tag-list > li:nth-child(3) {
    grid-area: 1/5/2/7;
  }
  .home .news-section .left-wrap .c-tag-list > li:nth-child(4) {
    grid-area: 2/2/3/4;
    border-left: none;
  }
  .home .news-section .left-wrap .c-tag-list > li:nth-child(5) {
    grid-area: 2/4/3/6;
  }
  .news .news-section .left-wrap .c-tag-list > li {
    width: 33.3333333333%;
  }
}
@media only screen and (min-width: 1701px) {
  .home .recruit-section .inner-block {
    padding-left: clamp(50px, 100px, min(100px, 5.2083333333vw));
    padding-right: 0;
    gap: 50px;
  }
}
@media only screen and (max-width: 1700px) {
  .home .recruit-section .inner-block {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .home .recruit-section .img {
    width: calc(100% + 80px);
    margin: 0 -40px;
  }
}
@media only screen and (max-width: 1700px) and (max-width: 767px) {
  .home .recruit-section .inner-block {
    gap: 30px;
  }
  .home .recruit-section .img {
    width: calc(100% + 40px);
    margin: 0 -20px;
  }
}
@media only screen and (max-width: 1120px) and (min-width: 769px) {
  .p-business .c-mv .anchor-list .br01 {
    display: inline;
  }
  .p-company .c-mv .anchor-list .br01 {
    display: inline;
  }
}
@media only screen and (max-width: 670px) {
  .p-business .p-vehicle-wrap .vehicle-block {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
@media only screen and (max-width: 767px) and (max-width: 375px) {
  .p-business .p-vehicle-wrap .vehicle {
    padding: 10px;
  }
  .p-business .work-section .report-wrap .report .top-area {
    padding: 0 20px 8px;
  }
  .p-business .work-section .report-wrap .report .info-area {
    padding: 10px 20px 0;
  }
  .p-business .work-section .yearly-wrap .table-wrap {
    padding-inline: 20px;
    margin-inline: -20px;
  }
}
@media only screen and (max-width: 767px) and (max-width: 490px) {
  .p-business .case-section .case-wrap {
    grid-template-columns: 1fr;
  }
}
@media only screen and (max-width: 600px) {
  .p-business .work-section .work-wrap {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
}
@media only screen and (max-width: 767px) and (max-width: 480px) {
  .p-business .work-section .report-wrap .report-block {
    grid-template-columns: 1fr;
  }
}
@media only screen and (max-width: 767px) and (max-width: 480px) and (max-width: 375px) {
  .p-business .work-section .report-wrap .report-block {
    margin-inline: -20px;
  }
}
@media only screen and (max-width: 767px) and (max-width: 570px) {
  .p-business .collection-section .license-list > li {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: start;
    -webkit-align-items: start;
        -ms-flex-align: start;
            align-items: start;
    gap: 5px;
  }
}
@media only screen and (max-width: 570px) {
  .p-business .collection-section .license-list > li .c-btn01 {
    margin: 0 auto;
  }
}
@media only screen and (max-width: 1000px) and (max-width: 700px) {
  .p-business .resource-section .product-wrap .product-block {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media only screen and (max-width: 1000px) and (max-width: 700px) and (max-width: 480px) {
  .p-business .resource-section .product-wrap .product-block {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 767px) and (max-width: 670px) {
  .p-business .resource-section .address-wrap .address-block {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}
@media only screen and (max-width: 1160px) {
  .p-company .br01 {
    display: none;
  }
}
@media only screen and (max-width: 1305px) {
  .p-company .br02 {
    display: inline;
  }
}
@media only screen and (max-width: 460px) {
  .p-company .br03 {
    display: inline;
  }
}
@media only screen and (max-width: 375px) {
  .p-company .p-info-table dt {
    padding: 10px 10px 10px 20px;
  }
  .p-company .p-info-table dd {
    padding: 10px 20px 10px 15px;
  }
  .p-company .com-section .lisence-vehicle-wrap .p-info-table {
    margin-inline: -20px;
  }
  .detail .detail-section .cont {
    margin-inline: -20px;
  }
  .privacy .privacy-section .inn {
    margin-inline: -20px;
  }
  .contact .contact-section .inn {
    margin-inline: -20px;
  }
  .recruit .number-section .top-wrap {
    margin-inline: -20px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1000px) {
  .p-company .message-section {
    background-image: url("../img/company/bg-message-sp.jpg.webp");
  }
  .p-company .message-section .txt-wrap {
    max-width: 66%;
  }
}
@media only screen and (max-width: 1060px) {
  .p-company .com-section .com-table-block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
  }
  .p-company .com-section .com-table-01, .p-company .com-section .com-table-02 {
    width: 100%;
    grid-template-columns: 152px 1fr;
  }
}
@media only screen and (max-width: 1060px) and (max-width: 375px) {
  .p-company .com-section .com-table-block {
    margin-inline: -20px;
  }
}
@media only screen and (max-width: 1280px) {
  .p-company .com-section .com-table-01 {
    grid-template-columns: 152px 1fr;
  }
}
@media only screen and (max-width: 1310px) and (min-width: 1061px) {
  .p-company .com-section .com-table-02 {
    grid-template-columns: 150px 1fr;
  }
}
@media only screen and (max-width: 1060px) and (max-width: 530px) {
  .p-company .com-section .com-table-01, .p-company .com-section .com-table-02 {
    grid-template-columns: 1fr;
  }
  .p-company .com-section .com-table-01 dt, .p-company .com-section .com-table-02 dt {
    margin-top: 5px;
  }
}
@media only screen and (max-width: 767px) and (max-width: 610px) {
  .p-company .com-section .lisence-vehicle-wrap {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
@media only screen and (max-width: 767px) and (max-width: 540px) {
  .p-company .access-section .map-wrap {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
}
@media only screen and (max-width: 767px) and (max-width: 390px) {
  .news .paging-area {
    padding-bottom: 80px;
  }
}
@media only screen and (max-width: 900px) and (max-width: 767px) {
  .contact .contact-section .inn.pt50 .flex-wrap {
    row-gap: 20px;
  }
  .contact .contact-section .inn.pt50 .box {
    padding-inline: 0;
  }
  .recruit .c-ttl01 {
    margin-bottom: 10px;
  }
}
@media only screen and (max-width: 1300px) {
  .recruit .mv-section::before {
    width: 50%;
  }
}
@media only screen and (max-width: 1300px) and (max-width: 1150px) {
  .recruit .mv-section::before {
    width: 540px;
  }
}
@media only screen and (max-width: 1300px) and (max-width: 1150px) and (max-width: 900px) {
  .recruit .mv-section::before {
    width: 450px;
  }
}
@media only screen and (max-width: 1300px) and (max-width: 1150px) and (max-width: 900px) and (max-width: 767px) {
  .recruit .mv-section::before {
    width: 365px;
    left: -50px;
  }
}
@media only screen and (max-width: 1300px) and (max-width: 1150px) and (max-width: 900px) and (max-width: 767px) and (max-width: 550px) {
  .recruit .mv-section::before {
    left: -120px;
  }
}
@media only screen and (max-width: 1300px) and (max-width: 1150px) and (max-width: 900px) and (max-width: 767px) and (max-width: 550px) and (max-width: 370px) {
  .recruit .mv-section::before {
    left: -150px;
  }
}
@media only screen and (max-width: 1000px) and (max-width: 924px) {
  .recruit .anchor-wrap .anchor-list {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media only screen and (max-width: 1000px) and (max-width: 924px) and (max-width: 767px) {
  .recruit .anchor-wrap .anchor-list {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
@media only screen and (max-width: 1000px) and (max-width: 924px) and (max-width: 767px) and (max-width: 500px) {
  .recruit .anchor-wrap .anchor-list {
    gap: 10px;
  }
}
@media only screen and (max-width: 500px) {
  .recruit .anchor-wrap .anchor-list > li .c-btn01 {
    padding: 8px 15px;
  }
}
@media only screen and (max-width: 1000px) and (max-width: 545px) {
  .recruit .message-section .grid-box .img-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 10px;
  }
}
@media only screen and (max-width: 1000px) and (max-width: 767px) and (max-width: 375px) {
  .recruit .number-section .center-wrap {
    margin-inline: -20px;
  }
}
@media only screen and (max-width: 1089px) {
  .recruit .number-section .center-wrap .white-box {
    min-width: 485px;
  }
}
@media only screen and (max-width: 1089px) and (max-width: 1000px) {
  .recruit .number-section .center-wrap .white-box {
    min-width: 440px;
  }
}
@media only screen and (max-width: 1089px) and (max-width: 1000px) and (max-width: 767px) {
  .recruit .number-section .center-wrap .white-box {
    width: 100%;
    max-width: 420px;
    width: 100%;
    min-width: inherit;
  }
}
@media only screen and (max-width: 1000px) and (max-width: 375px) {
  .recruit .number-section .slide-wrap {
    margin-inline: -20px;
  }
  .recruit .number-section .bottom-wrap {
    margin-inline: -20px;
  }
}
@media only screen and (max-width: 767px) and (max-width: 500px) {
  .recruit .number-section .bottom-wrap .white-box .txt-area .yellow .big {
    font-size: 26px;
  }
  .recruit .number-section .bottom-wrap .white-box .txt-area .yellow .ja {
    font-size: 18px;
  }
}
@media only screen and (max-width: 767px) and (max-width: 500px) and (max-width: 350px) {
  .recruit .number-section .bottom-wrap .white-box .txt-area .yellow .big {
    font-size: 24px;
  }
}
@media only screen and (max-width: 767px) and (max-width: 350px) {
  .recruit .splide__arrows {
    right: 10px;
  }
}
@media only screen and (min-width: 1001px) {
  .recruit .interview-section .wrap .inn .img.min1000 {
    display: none;
  }
}
@media only screen and (max-width: 1278px) {
  .recruit .benefits-section .benefit-list {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media only screen and (max-width: 1278px) and (max-width: 420px) {
  .recruit .benefits-section .benefit-list {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
/*# sourceMappingURL=style.css.map */
/*# sourceMappingURL=style.css.map */