/* Universal box-sizing reset */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
}

/* Set default styles for html */
html {
  box-sizing: border-box;
  font-size: 100%;
}

/* Reset margin for common block-level elements */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role */
ul[role=list],
ol[role=list] {
  list-style: none;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  word-break: auto-phrase;
  min-height: 100vh;
  text-rendering: optimizeSpeed;
}

html,
body {
  font-weight: normal;
  font-style: normal;
  font-optical-sizing: auto;
  font-style: normal;
  max-width: 100vw;
  overflow-x: clip;
  margin: 0;
  padding: 0;
}

strong {
  line-height: 1;
  font-weight: 600;
}

/* Reset default link styles */
a {
  text-decoration: none; /* Remove underlines from all links */
  color: inherit; /* Make sure the link color inherits the surrounding text color */
  -webkit-text-decoration-skip: ink;
  text-decoration-skip-ink: auto;
}

button {
  cursor: pointer;
  transition: all 0.3s ease;
}
button:hover {
  transition: all 0.3s ease;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}

/* Reset styles for form elements */
input,
button,
textarea,
select {
  font: inherit;
  border: none; /* Remove borders on form elements */
  background: transparent; /* Make background transparent */
}

/* Remove animations and transitions for users with reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
*::before,
*::after {
    -webkit-animation-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
a {
  text-decoration: none;
  outline: none;
  cursor: pointer;
  transition: all 0.3s ease;
  color: var(--txt);
}
a:hover {
  transition: all 0.3s ease;
  text-decoration: none;
  color: var(--txt);
}

li {
  list-style-type: none;
}

input[type=text],
input[type=tel],
input[type=email],
input[type=submit],
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  justify-content: center;
}

iframe {
  border: none;
  display: block;
}

.gjs-dashed .sticky-bg {
  position: static !important;
}

:root {
  --ryo: ryo-gothic-plusn, sans-serif;
  --gothic: zen-kaku-gothic-antique, sans-serif;
  --gothic-n: zen-kaku-gothic-new, sans-serif;
  --txt: #424141;
  --base: #e9e9df;
  --red: #d03434;
  --blue: #5ba6d8;
  --brown: #b18e4a;
  --green: #00a650;
}

.txt {
  color: var(--txt) !important;
}

.sub {
  color: var(--sub) !important;
}

.txt-wh {
  color: white !important;
}

.txt-red {
  color: var(--red);
}

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

.ryo {
  font-family: var(--ryo);
}

.gothic-n {
  font-family: var(--gothic-n);
}

.gothic {
  font-family: var(--gothic);
}

body {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  font-family: var(--ryo);
  font-weight: 400;
  font-size: clamp(0.938rem, 0.836rem + 0.44vw, 1.25rem);
  line-height: 1.5;
  color: var(--txt);
  background-color: var(--base);
}

html.is-scroll-lock,
body.is-scroll-lock {
  overflow: hidden;
  touch-action: none;
}

.js-tick {
  overflow: hidden;
  white-space: nowrap;
}

.js-tick-track {
  display: inline-flex;
  will-change: transform;
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-animation: loopText var(--loop-duration, 10s) linear infinite;
          animation: loopText var(--loop-duration, 10s) linear infinite;
}

.js-tick-item {
  display: inline-block;
  padding-right: 4rem;
}

@-webkit-keyframes loopText {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(calc(-1 * var(--loop-distance, 0px)), 0, 0);
  }
}

@keyframes loopText {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(calc(-1 * var(--loop-distance, 0px)), 0, 0);
  }
}
.section-title > h2,
.section-title > h3 {
  font-size: clamp(1.75rem, 0.373rem + 5.95vw, 6rem);
  line-height: 1.8;
  font-weight: bold;
}

.contents-title {
  border-bottom: solid clamp(1px, 1vw, 5px) var(--red);
  padding-bottom: 10px;
}
@media (min-width: 768px) {
  .contents-title {
    padding-bottom: 30px;
  }
}
.contents-title > h2 {
  font-size: clamp(1.375rem, 0.525rem + 3.68vw, 4rem);
  font-weight: 900;
  line-height: 1.6;
}

.btn-wrap a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  color: white;
  border: solid 2px white;
  line-height: normal;
  border-radius: 99px;
  transition: all 0.3s ease;
  padding-inline: 20px 50px;
  padding-block: 10px;
  gap: 24px;
  font-size: 0.875rem;
  filter: drop-shadow(3px 5px 0 #424141);
  min-width: 200px;
}
@media (min-width: 768px) {
  .btn-wrap a {
    padding-block: 12px;
    font-size: 1rem;
    min-width: 170px;
  }
}
.btn-wrap a.red {
  background-color: var(--red);
}
.btn-wrap a.gray {
  background-color: var(--txt);
}
.btn-wrap a:hover {
  background-position: 120% 50%;
  filter: drop-shadow(0 0 0 #424141);
}
.btn-wrap a::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 15px;
  display: block;
  background: url(../images/arrow_wh.svg) center/contain no-repeat;
  width: 18px;
  height: 18px;
  transition: all 0.3s ease;
}
@media (min-width: 768px) {
  .btn-wrap a::after {
    width: 22px;
    height: 22px;
  }
}
.btn-wrap a:hover::after {
  transform: translateY(-50%) translateX(5px);
  transition: all 0.3s ease;
}

.bb-none {
  border: none;
}

.bb-red {
  border-bottom: solid 2px var(--red);
}

.p-top__hr {
  display: flex;
  flex-direction: column;
  padding-top: 70px;
  padding-bottom: 50px;
  padding-inline: 20px;
}
@media (min-width: 768px) {
  .p-top__hr {
    flex-direction: row;
    padding-top: 130px;
    padding-inline: 0;
  }
}
.p-top__hr .side {
  width: 100%;
  padding-block: 10px;
  padding-inline: 10px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
@media (min-width: 768px) {
  .p-top__hr .side {
    flex-direction: column;
    width: 80px;
    padding-inline: 20px;
    padding-block: 20px;
  }
}
.p-top__hr .side__inner {
  display: flex;
  align-items: center;
  flex-direction: row;
  gap: 5px;
}
@media (min-width: 576px) {
  .p-top__hr .side__inner {
    gap: 10px;
  }
}
@media (min-width: 768px) {
  .p-top__hr .side__inner {
    flex-direction: column;
    gap: 23px;
  }
}
.p-top__hr .side__inner .icon {
  width: 30px;
}
@media (min-width: 576px) {
  .p-top__hr .side__inner .icon {
    width: 43px;
  }
}
@media (max-width: 400px) {
  .p-top__hr .side__inner .icon {
    width: 20px;
  }
}
.p-top__hr .side > p {
  font-family: var(--gothic-n);
  font-size: clamp(0.75rem, 0.588rem + 0.7vw, 1.25rem);
  font-weight: bold;
}
@media (min-width: 768px) {
  .p-top__hr .side > p {
    writing-mode: vertical-rl;
  }
}
.p-top__hr .main-hr {
  position: relative;
  width: 100%;
  border: solid clamp(2px, 5vw, 10px) var(--txt);
  border-radius: clamp(20px, 3vw, 40px);
  overflow: hidden;
  min-height: 500px;
}
@media (min-width: 768px) {
  .p-top__hr .main-hr {
    width: calc(100% - 160px);
  }
}
.p-top__hr .main-hr .swiper-hr,
.p-top__hr .main-hr .swiper-wrapper,
.p-top__hr .main-hr .swiper-slide {
  min-height: inherit;
  height: 100%;
}
.p-top__hr .main-hr img {
  min-height: inherit;
  height: 100%;
}
.p-top__hr .hr-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 524px;
  min-width: 200px;
}
.p-top__about {
  padding-block: clamp(50px, 7vw, 100px) clamp(80px, 12vw, 180px);
}
.p-top__about-top {
  margin-bottom: clamp(40px, 4vw, 75px);
}
.p-top__about-top .box {
  position: relative;
}
.p-top__about-top .box .illust {
  position: absolute;
  left: -14vw;
  bottom: 0;
  width: clamp(100px, 22vw, 333px);
}
.p-top__about-top .box > img:nth-child(2) {
  border: solid 5px var(--txt);
  border-radius: 35px;
  overflow: hidden;
  aspect-ratio: 780/520;
}
.p-top__about-center {
  margin-bottom: 100px;
}
.p-top__about-center h1 {
  font-size: clamp(1.25rem, 0.926rem + 1.4vw, 2.25rem);
  font-weight: bold;
  line-height: 1.8;
  padding-bottom: 17px;
  margin-bottom: 30px;
  border-bottom: solid clamp(2px, 2vw, 5px) var(--red);
}
.p-top__about-bottom {
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 4vw, 64px);
}
@media (min-width: 768px) {
  .p-top__about-bottom {
    flex-direction: row;
  }
}
.p-top__about-bottom .box > img:not(.illust) {
  border: solid clamp(2px, 3vw, 5px) var(--txt);
  border-radius: clamp(20px, 2vw, 35px);
  overflow: hidden;
}
.p-top__about-bottom .box:nth-child(1) {
  position: relative;
  z-index: 1;
  width: 80%;
}
@media (min-width: 768px) {
  .p-top__about-bottom .box:nth-child(1) {
    width: calc(52% - clamp(10px, 2vw, 32px));
  }
}
.p-top__about-bottom .box:nth-child(2) {
  position: relative;
  z-index: 1;
  width: 70%;
  margin-left: auto;
}
@media (min-width: 768px) {
  .p-top__about-bottom .box:nth-child(2) {
    width: calc(48% - clamp(10px, 2vw, 32px));
    margin-left: 0;
    padding-top: clamp(50px, 12vw, 170px);
  }
}
.p-top__about-bottom .box:nth-child(2) .illust {
  position: absolute;
  top: auto;
  bottom: 0;
  left: -18vw;
  z-index: 2;
  width: clamp(80px, 23vw, 250px);
}
@media (min-width: 768px) {
  .p-top__about-bottom .box:nth-child(2) .illust {
    top: -5vw;
    left: 10px;
    right: auto;
    width: clamp(80px, 20vw, 250px);
  }
}
.p-top__service {
  position: relative;
  background-color: var(--blue);
}
.p-top__service h2,
.p-top__service h3,
.p-top__service p {
  color: white;
}
.p-top__service-title {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.p-top__service-title.is-following {
  position: static;
}
.p-top__service-title .section-title {
  padding-block: clamp(100px, 25vw, 350px);
}
.p-top__service-title .container {
  margin-bottom: 170px;
}
.p-top__service .illust-img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 2;
  pointer-events: none;
}
.p-top__service .illust-img.is-fixed {
  position: fixed;
  bottom: 0;
  left: var(--sec-left);
  width: var(--sec-width);
}
.p-top__service .illust-img.is-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}
@media (min-width: 1500px) {
  .p-top__service .illust-img img {
    transform: translateY(120px);
  }
}
.p-top__service-body {
  padding-bottom: clamp(170px, 39vw, 580px);
}
.p-top__service-body .box {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: clamp(10px, 4vw, 50px);
  margin-bottom: clamp(60px, 8vw, 120px);
}
@media (min-width: 768px) {
  .p-top__service-body .box {
    flex-direction: row;
  }
}
.p-top__service-body .box-img {
  width: 100%;
}
@media (min-width: 768px) {
  .p-top__service-body .box-img {
    width: calc(60% - clamp(10px, 2vw, 25px));
  }
}
.p-top__service-body .box-img img {
  aspect-ratio: 580/385;
  overflow: hidden;
  border-radius: clamp(20px, 2vw, 30px);
  border: solid clamp(2px, 1vw, 5px) var(--txt);
}
.p-top__service-body .box-txt {
  width: 100%;
}
@media (min-width: 768px) {
  .p-top__service-body .box-txt {
    width: calc(40% - clamp(10px, 2vw, 25px));
  }
}
.p-top__service-body .box-txt > h3 {
  font-weight: bold;
  font-size: clamp(1.5rem, 0.569rem + 4.03vw, 4.375rem);
  line-height: 1.8;
}
.p-top__service-body .box-txt > p {
  font-size: clamp(1rem, 0.838rem + 0.7vw, 1.5rem);
}
.p-top__results {
  padding-block: clamp(60px, 8vw, 120px) clamp(40px, 7vw, 100px);
  background-color: var(--brown);
}
.p-top__results img {
  aspect-ratio: 580/385;
  overflow: hidden;
  border-radius: clamp(20px, 2vw, 30px);
  border: solid clamp(2px, 1vw, 5px) var(--txt);
}
.p-top__company {
  padding-block: clamp(80px, 13vw, 180px);
}
.p-top__company-body {
  padding-bottom: 55px;
}
.p-top__company-body img {
  aspect-ratio: 580/865;
  overflow: hidden;
  border-radius: clamp(20px, 2vw, 30px);
  border: solid clamp(2px, 1vw, 5px) var(--txt);
}
.p-top__company-body .box-txt {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.p-top__company-link {
  display: flex;
  flex-direction: column;
}
.p-top__company-link a {
  display: inline-block;
  position: relative;
  font-size: clamp(1.125rem, 0.68rem + 1.93vw, 2.5rem);
  font-weight: 400;
  padding: 25px 20px;
  border-bottom: solid 1px var(--txt);
  width: 100%;
}
@media (min-width: 768px) {
  .p-top__company-link a {
    padding: 40px;
    border-bottom: solid 2px var(--txt);
  }
}
.p-top__company-link a:first-child {
  border-top: solid 1px var(--txt);
}
@media (min-width: 768px) {
  .p-top__company-link a:first-child {
    border-top: solid 2px var(--txt);
  }
}
.p-top__company-link a:hover {
  background-color: white;
}
.p-top__company-bottom {
  padding-block: clamp(30px, 12vw, 150px);
  display: flex;
  align-items: center;
  gap: 15px 0;
  max-width: 930px;
  margin-inline: auto;
}
@media (min-width: 768px) {
  .p-top__company-bottom {
    align-items: stretch;
  }
}
.p-top__company-bottom a {
  position: relative;
  display: inline-flex;
  align-items: center;
  flex-direction: column;
  color: white;
  border: solid clamp(2px, 1vw, 5px) white;
  font-weight: 400;
  font-size: clamp(1.125rem, 0.842rem + 1.23vw, 2rem);
  line-height: 1.6;
  border-radius: 30px;
  transition: all 0.3s ease;
  padding: 20px 30px;
  gap: 20px;
  filter: drop-shadow(3px 5px 0 #424141);
  background-color: var(--red);
  width: 100%;
  height: 100%;
}
@media (min-width: 768px) {
  .p-top__company-bottom a {
    padding: clamp(30px, 4vw, 55px) 20px;
  }
}
.p-top__company-bottom a .arrow {
  width: clamp(30px, 4vw, 53px);
  margin-top: auto;
  transition: all 0.3s ease;
}
.p-top__company-bottom a:hover .arrow {
  transition: all 0.3s ease;
  transform: translateX(10px);
}
.p-top__company .other-link {
  position: relative;
}
.p-top__company .other-link .illust01,
.p-top__company .other-link .illust02 {
  position: absolute;
  width: clamp(60px, 5vw, 82px);
}
.p-top__company .other-link .illust01 {
  position: absolute;
  left: -4vw;
  top: 5vw;
}
.p-top__company .other-link .illust02 {
  position: absolute;
  right: -5vw;
  bottom: 8vw;
}
.p-top__recruit {
  display: flex;
  flex-direction: column;
  gap: 15px;
  background-color: var(--txt);
  padding-block: clamp(60px, 9vw, 120px);
}
@media (min-width: 768px) {
  .p-top__recruit {
    gap: 35px;
  }
}
.p-top__recruit-top, .p-top__recruit-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
}
.p-top__recruit-top .box, .p-top__recruit-bottom .box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  border-radius: clamp(20px, 2vw, 30px);
  border: solid clamp(2px, 1vw, 5px) white;
}
.p-top__recruit-top .box img, .p-top__recruit-bottom .box img {
  height: 100%;
}
.p-top__recruit-top {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 15px;
}
@media (min-width: 768px) {
  .p-top__recruit-top {
    gap: 30px;
    margin-bottom: 30px;
  }
}
@media (min-width: 992px) {
  .p-top__recruit-top {
    flex-direction: row;
  }
}
.p-top__recruit-top .box:nth-child(1) {
  width: 100%;
  background-color: white;
  padding: 40px clamp(20px, 4vw, 60px) !important;
}
@media (min-width: 992px) {
  .p-top__recruit-top .box:nth-child(1) {
    width: calc(45% - 15px);
  }
}
.p-top__recruit-top .box:nth-child(1) h2 {
  font-size: clamp(1.25rem, 0.683rem + 2.45vw, 3rem);
  font-weight: 900;
  line-height: 1.7;
}
.p-top__recruit-top .box:nth-child(2) {
  width: 100%;
}
@media (min-width: 992px) {
  .p-top__recruit-top .box:nth-child(2) {
    width: calc(55% - 15px);
  }
}
.p-top__recruit-bottom {
  gap: 15px;
}
@media (min-width: 768px) {
  .p-top__recruit-bottom {
    gap: 30px;
  }
}
.p-top__recruit-bottom .box:nth-child(1) {
  width: calc(50% - 7.5px);
}
@media (min-width: 768px) {
  .p-top__recruit-bottom .box:nth-child(1) {
    width: calc(50% - 15px);
  }
}
@media (min-width: 992px) {
  .p-top__recruit-bottom .box:nth-child(1) {
    width: calc(25% - 20px);
  }
}
.p-top__recruit-bottom .box:nth-child(2) {
  width: calc(50% - 7.5px);
}
@media (min-width: 768px) {
  .p-top__recruit-bottom .box:nth-child(2) {
    width: calc(50% - 15px);
  }
}
@media (min-width: 992px) {
  .p-top__recruit-bottom .box:nth-child(2) {
    width: calc(25% - 20px);
  }
}
.p-top__recruit-bottom .box:nth-child(3) {
  padding: 40px clamp(20px, 4vw, 60px) !important;
  background-color: white;
  width: 100%;
}
@media (min-width: 992px) {
  .p-top__recruit-bottom .box:nth-child(3) {
    width: calc(50% - 20px);
  }
}

.page-hr:not(.p-aboutus .page-hr) {
  padding-top: clamp(70px, 20vw, 300px);
}
.page-hr .container {
  padding-bottom: clamp(80px, 12vw, 140px);
}
.page-hr__title {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
}
.page-hr__title .en,
.page-hr__title .ja {
  font-weight: 900;
}
.page-hr__title .en {
  font-size: clamp(1.25rem, 1.007rem + 1.05vw, 2rem);
  color: var(--red);
}
.page-hr__title .ja {
  font-size: clamp(1.75rem, 0.778rem + 4.2vw, 4.75rem);
  line-height: 1.2;
}
.page-hr__img {
  flex: 1;
  max-width: clamp(80px, 17vw, 250px);
}
.page-hr__fv {
  overflow: hidden;
  border: solid clamp(2px, 2vw, 10px);
  border-radius: clamp(20px, 3vw, 40px);
  margin-bottom: clamp(40px, 14vw, 200px);
}
.page-hr__fv img {
  height: 100%;
  aspect-ratio: 3/4;
}
@media (min-width: 768px) {
  .page-hr__fv img {
    aspect-ratio: 1237/733;
  }
}

.info-txt {
  padding-top: clamp(40px, 10vw, 120px);
}
@media (min-width: 992px) {
  .info-txt {
    margin-bottom: -50px;
  }
}
.info-txt .contents-title {
  border-bottom: none;
  padding-bottom: none;
}

.p-aboutus .page-hr {
  position: relative;
  z-index: 1;
  padding-bottom: clamp(500px, 56vw, 1000px);
}
.p-aboutus .page-hr .inner-body {
  padding-top: clamp(70px, 20vw, 300px);
  background-color: var(--base);
}
.p-aboutus .back-img {
  position: fixed;
  z-index: -1;
  inset-inline: 0;
  width: 100%;
  height: 100vh;
}
.p-aboutus .back-img img {
  width: inherit;
  height: inherit;
}
.p-aboutus .back-img.is-fixed {
  position: fixed;
  top: 0;
  left: var(--sec-left);
  width: var(--sec-width);
}
.p-aboutus .back-img.is-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}
.p-aboutus__sec01 {
  position: relative;
  padding-top: clamp(80px, 7vw, 100px);
}
.p-aboutus .card-box {
  position: -webkit-sticky;
  position: sticky;
  top: 52px;
  left: 0;
  padding-top: clamp(30px, 7vw, 100px);
  padding-bottom: clamp(80px, 7vw, 100px);
  border-radius: clamp(20px, 5vw, 90px) clamp(20px, 5vw, 90px) 0 0;
  border: solid clamp(2px, 1vw, 5px) var(--txt);
  border-bottom: none;
}
.p-aboutus .card-box:not(:nth-child(3)) {
  padding-bottom: clamp(150px, 15vw, 250px);
}
@media (min-width: 768px) {
  .p-aboutus .card-box {
    top: 70px;
  }
}
@media (min-width: 1400px) {
  .p-aboutus .card-box {
    top: 88px;
  }
}
.p-aboutus .card-box img {
  overflow: hidden;
  border-radius: clamp(20px, 2vw, 30px);
}
.p-aboutus .card-box h2,
.p-aboutus .card-box p {
  color: white;
}
.p-aboutus .card-box:nth-child(odd) {
  background-color: #828481;
}
.p-aboutus .card-box:nth-child(even) {
  background-color: var(--blue);
}
.p-aboutus .container {
  gap: 20px clamp(20px, 5vw, 75px);
}
.p-aboutus .card-txt {
  width: 100%;
}
@media (min-width: 768px) {
  .p-aboutus .card-txt {
    width: calc(50% - clamp(10px, 2.5vw, 37.5px));
  }
}
.p-aboutus .card-txt > p {
  font-size: clamp(0.813rem, 0.671rem + 0.61vw, 1.25rem);
  line-height: 1.8;
}
.p-aboutus .card-img {
  width: 50%;
  min-width: 170px;
  margin-inline: auto;
}
@media (min-width: 768px) {
  .p-aboutus .card-img {
    width: calc(50% - clamp(10px, 2.5vw, 37.5px));
  }
}
.p-aboutus__sec02 {
  padding-block: clamp(100px, 15vw, 250px);
  margin-bottom: clamp(80px, 14vw, 200px);
}
.p-aboutus__sec02 h2 {
  color: white;
}
@media (min-width: 768px) {
  .p-aboutus__sec02 .btn-wrap a {
    min-width: 280px;
  }
}

.p-service .page-hr .box-img img {
  overflow: hidden;
  border-radius: clamp(20px, 2vw, 30px);
}
.p-service__sec01 {
  position: relative;
}
.p-service__sec01 h2,
.p-service__sec01 p {
  color: white;
}
.p-service__sec01 .card-box {
  position: -webkit-sticky;
  position: sticky;
  top: 52px;
  left: 0;
  height: calc(120vh - 52px);
  display: flex;
  align-items: flex-end;
}
@media (min-width: 768px) {
  .p-service__sec01 .card-box {
    height: calc(120vh - 70px);
    top: 70px;
  }
}
@media (min-width: 1400px) {
  .p-service__sec01 .card-box {
    height: calc(120vh - 88px);
    top: 88px;
  }
}
.p-service__sec01 .card-box > .container {
  padding-block: clamp(50px, 6vw, 90px) 30vh;
}
.p-service__sec01 .card-box:last-child .container {
  padding-block: clamp(50px, 6vw, 90px);
}
.p-service__sec01 .card-box .contents-title {
  padding-bottom: 0px;
  border-bottom: none;
}
.p-service__sec01 .card-box .contents-title h2 {
  font-size: clamp(2rem, 1.352rem + 2.8vw, 4rem);
}
.p-service__sec01 .card-box .btn-wrap {
  margin-top: 30px;
}
.p-service__sec01 .card-box .btn-wrap a {
  min-width: 290px;
}
.p-service__sec02 {
  background-color: var(--blue);
}

.step-wrapper {
  padding-block: clamp(80px, 13vw, 190px);
}
.step-wrapper h2 {
  color: white;
}
.step-wrapper .container {
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 5vw, 65px);
}
.step-wrapper .box {
  border: solid clamp(2px, 1vw, 5px) var(--txt);
  background-color: white;
  padding-block: 50px;
  padding-inline: clamp(20px, 6vw, 90px);
  border-radius: clamp(20px, 2vw, 30px);
  display: flex;
  flex-direction: column;
  gap: 30px clamp(20px, 6vw, 70px);
}
@media (min-width: 576px) {
  .step-wrapper .box {
    align-items: center;
    flex-direction: row;
  }
}
.step-wrapper .box-txt {
  flex: 1;
  text-align: center;
}
@media (min-width: 576px) {
  .step-wrapper .box-txt {
    text-align: left;
  }
}
.step-wrapper .box-txt h3 {
  font-size: clamp(1.25rem, 0.845rem + 1.75vw, 2.5rem);
  font-weight: bold;
  line-height: 1.6;
  margin-bottom: 8px;
}
.step-wrapper .box-txt > p {
  line-height: 1.6;
}
@media (min-width: 768px) {
  .step-wrapper .box-txt > p {
    line-height: 2;
  }
}
.step-wrapper .box-img {
  width: 120px;
  margin-inline: auto;
}
@media (min-width: 576px) {
  .step-wrapper .box-img {
    width: clamp(130px, 13vw, 200px);
  }
}
.step-wrapper.step {
  background-color: #828481;
}
.step-wrapper.step .box-img {
  width: 90px;
  margin-inline: auto;
}
@media (min-width: 576px) {
  .step-wrapper.step .box-img {
    width: clamp(90px, 10vw, 135px);
  }
}
.step-wrapper.step .box .number {
  margin-right: 0px !important;
}
@media (min-width: 576px) {
  .step-wrapper.step .box .number {
    margin-right: 20px !important;
  }
}

.p-pavement__sec01,
.p-civilengineering__sec01 {
  overflow: hidden;
  position: relative;
  z-index: 1;
  padding-bottom: clamp(80px, 14vw, 190px);
  background: linear-gradient(180deg, transparent 0%, transparent 15%, #424141 15%, #424141 100%);
}
@media (min-width: 576px) {
  .p-pavement__sec01,
.p-civilengineering__sec01 {
    background: linear-gradient(180deg, transparent 0%, transparent 25%, #424141 25%, #424141 100%);
  }
}
.p-pavement__sec01-img img,
.p-civilengineering__sec01-img img {
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: clamp(20px, 2vw, 30px);
  border: solid clamp(2px, 1vw, 5px) var(--txt);
}
.p-pavement__sec01-txt h2,
.p-pavement__sec01-txt p,
.p-civilengineering__sec01-txt h2,
.p-civilengineering__sec01-txt p {
  color: white;
}
.p-pavement__sec01 .pattern,
.p-civilengineering__sec01 .pattern {
  position: absolute;
  max-width: clamp(240px, 47vw, 700px);
  bottom: -8vw;
  right: -3vw;
  z-index: -1;
}
.p-pavement__sec01 .pattern img,
.p-civilengineering__sec01 .pattern img {
  aspect-ratio: 1;
}
.p-pavement__sec02,
.p-civilengineering__sec02 {
  padding-block: clamp(80px, 12vw, 160px);
}
.p-pavement__sec02 .wrapper,
.p-civilengineering__sec02 .wrapper {
  display: flex;
  flex-direction: column;
  gap: clamp(50px, 12vw, 150px);
}
.p-pavement__sec02 .wrapper .box,
.p-civilengineering__sec02 .wrapper .box {
  align-items: center;
}
@media (min-width: 768px) {
  .p-pavement__sec02 .wrapper .box,
.p-civilengineering__sec02 .wrapper .box {
    align-items: flex-end;
  }
}
.p-pavement__sec02 .wrapper .box-img img,
.p-civilengineering__sec02 .wrapper .box-img img {
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: clamp(20px, 2vw, 30px);
  border: solid clamp(2px, 1vw, 5px) var(--txt);
}
.p-pavement__sec03 .number,
.p-civilengineering__sec03 .number {
  color: #828481;
  font-size: clamp(1.125rem, 0.68rem + 1.93vw, 2.5rem);
  font-weight: bold;
}

.p-results {
  padding-block: clamp(80px, 12vw, 150px) clamp(100px, 17vw, 250px);
}
.p-results .page-hr__img {
  max-width: clamp(80px, 11vw, 140px);
}
.p-results .webgene-blog {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  gap: 0 clamp(20px, 6vw, 90px);
}
@media (min-width: 768px) {
  .p-results .webgene-blog {
    flex-direction: row;
    align-items: stretch;
  }
}
.p-results .webgene-blog .cases-box {
  width: 80%;
  margin-inline: auto;
  margin-bottom: clamp(50px, 8vw, 120px);
}
@media (min-width: 768px) {
  .p-results .webgene-blog .cases-box {
    margin-inline: 0;
    width: calc(50% - clamp(10px, 3vw, 45px));
  }
}
.p-results .webgene-blog .cases-box .image {
  margin-bottom: 18px;
}
.p-results .webgene-blog .cases-box img {
  overflow: hidden;
  border-radius: clamp(20px, 2vw, 30px);
}
.p-results .webgene-blog .cases-box h2 {
  font-size: clamp(1.25rem, 0.926rem + 1.4vw, 2.25rem);
  font-weight: bold;
}

.p-resultsdetail {
  padding-block: clamp(70px, 18vw, 270px) clamp(100px, 17vw, 250px);
}
@media (min-width: 992px) {
  .p-resultsdetail .container {
    max-width: 860px;
  }
}
.p-resultsdetail .cases-detail__img {
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .p-resultsdetail .cases-detail__img {
    margin-bottom: 35px;
  }
}
.p-resultsdetail .cases-detail__img img {
  overflow: hidden;
  border-radius: clamp(20px, 2vw, 30px);
}
.p-resultsdetail .cases-detail h1 {
  margin-bottom: clamp(50px, 5vw, 80px);
  font-weight: bold;
  font-size: clamp(1.563rem, 1.097rem + 2.01vw, 3rem);
}
.p-resultsdetail .cases-detail__wrap {
  border-top: solid 1px var(--red);
}
.p-resultsdetail .cases-detail dl {
  border-bottom: solid 1px var(--red);
  padding-block: clamp(20px, 2vw, 45px);
  display: flex;
  flex-direction: column;
  gap: 15px 20px;
}
@media (min-width: 768px) {
  .p-resultsdetail .cases-detail dl {
    flex-direction: row;
  }
}
.p-resultsdetail .cases-detail dt,
.p-resultsdetail .cases-detail dd {
  font-size: clamp(0.938rem, 0.836rem + 0.44vw, 1.25rem);
  font-weight: 500;
  line-height: 1.8;
}
.p-resultsdetail .cases-detail dt {
  width: 100%;
}
@media (min-width: 768px) {
  .p-resultsdetail .cases-detail dt {
    width: 170px;
  }
}
@media (min-width: 768px) {
  .p-resultsdetail .cases-detail dd {
    flex: 1;
  }
}

.p-faq {
  padding-bottom: clamp(80px, 13vw, 190px);
}
.p-faq__list .container {
  margin-bottom: clamp(80px, 13vw, 190px);
}
.p-faq__list .btn-wrap {
  margin-top: clamp(20px, 5vw, 70px);
}
.p-faq__list .btn-wrap > a {
  min-width: 280px;
}
.p-faq__list .list-dl {
  display: flex;
  flex-direction: column;
  gap: 35px;
  border-bottom: solid 2px var(--txt);
  padding-block: clamp(20px, 5vw, 70px);
}
.p-faq__list .list-dl:first-child {
  padding-top: 0;
}
.p-faq__list .list-dt,
.p-faq__list .list-dd {
  display: flex;
  flex-direction: row;
  font-size: clamp(0.938rem, 0.755rem + 0.79vw, 1.5rem);
  gap: clamp(10px, 3vw, 30px);
}
.p-faq__list .list-dt > p:not(.icon),
.p-faq__list .list-dd > p:not(.icon) {
  flex: 1;
  line-height: 1.8;
}
.p-faq__list .list-dt .icon {
  background-color: var(--txt);
}
.p-faq__list .list-dd .icon {
  background-color: var(--red);
}
.p-faq__list .icon {
  line-height: 1;
  border-radius: 100px;
  font-size: clamp(1.25rem, 1.007rem + 1.05vw, 2rem);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(33px, 3vw, 53px);
  height: clamp(33px, 3vw, 53px);
}

.p-news .webgene-pagination,
.p-newsdetail .webgene-pagination,
.p-results .webgene-pagination,
.p-resultsdetail .webgene-pagination {
  width: 100%;
}
.p-news .webgene-pagination ul,
.p-newsdetail .webgene-pagination ul,
.p-results .webgene-pagination ul,
.p-resultsdetail .webgene-pagination ul {
  max-width: 610px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px 20px;
}
@media (min-width: 768px) {
  .p-news .webgene-pagination ul,
.p-newsdetail .webgene-pagination ul,
.p-results .webgene-pagination ul,
.p-resultsdetail .webgene-pagination ul {
    flex-direction: row;
    align-items: stretch;
  }
}
.p-news .webgene-pagination li,
.p-newsdetail .webgene-pagination li,
.p-results .webgene-pagination li,
.p-resultsdetail .webgene-pagination li {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 250px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.p-news .webgene-pagination .prev > a,
.p-newsdetail .webgene-pagination .prev > a,
.p-results .webgene-pagination .prev > a,
.p-resultsdetail .webgene-pagination .prev > a {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  font-size: clamp(0.938rem, 0.836rem + 0.44vw, 1.25rem);
  font-weight: 400;
  color: white;
  border-radius: 99px;
  transition: background-position 0.4s ease, transform 0.5s ease;
  padding: 13px 35px;
  gap: 24px;
  background-color: var(--red);
  border: 2px solid #fff;
  box-shadow: 3px 5px 0 #424141;
  min-width: 250px;
  transition: all 0.3s ease;
}
@media (min-width: 768px) {
  .p-news .webgene-pagination .prev > a,
.p-newsdetail .webgene-pagination .prev > a,
.p-results .webgene-pagination .prev > a,
.p-resultsdetail .webgene-pagination .prev > a {
    min-width: 280px;
  }
}
.p-news .webgene-pagination .prev > a::before,
.p-newsdetail .webgene-pagination .prev > a::before,
.p-results .webgene-pagination .prev > a::before,
.p-resultsdetail .webgene-pagination .prev > a::before {
  content: "";
  display: block;
  background: url(../images/arrow_wh.svg) center/contain no-repeat;
  width: clamp(23px, 2vw, 30px);
  height: clamp(23px, 2vw, 30px);
  transition: all 0.3s ease;
  transform: translateX(0) scale(-1, 1);
}
.p-news .webgene-pagination .prev > a:hover,
.p-newsdetail .webgene-pagination .prev > a:hover,
.p-results .webgene-pagination .prev > a:hover,
.p-resultsdetail .webgene-pagination .prev > a:hover {
  box-shadow: 0 0 0 #424141;
  transition: all 0.3s ease;
}
@media (min-width: 768px) {
  .p-news .webgene-pagination .next,
.p-newsdetail .webgene-pagination .next,
.p-results .webgene-pagination .next,
.p-resultsdetail .webgene-pagination .next {
    margin-left: auto;
  }
}
.p-news .webgene-pagination .next > a,
.p-newsdetail .webgene-pagination .next > a,
.p-results .webgene-pagination .next > a,
.p-resultsdetail .webgene-pagination .next > a {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  font-size: clamp(0.938rem, 0.836rem + 0.44vw, 1.25rem);
  font-weight: 400;
  color: white;
  border-radius: 99px;
  transition: background-position 0.4s ease, transform 0.5s ease;
  padding: 13px 35px;
  gap: 24px;
  background-color: var(--red);
  border: 2px solid #fff;
  box-shadow: 3px 5px 0 #424141;
  min-width: 250px;
  transition: all 0.3s ease;
}
@media (min-width: 768px) {
  .p-news .webgene-pagination .next > a,
.p-newsdetail .webgene-pagination .next > a,
.p-results .webgene-pagination .next > a,
.p-resultsdetail .webgene-pagination .next > a {
    min-width: 280px;
  }
}
.p-news .webgene-pagination .next > a::after,
.p-newsdetail .webgene-pagination .next > a::after,
.p-results .webgene-pagination .next > a::after,
.p-resultsdetail .webgene-pagination .next > a::after {
  content: "";
  display: block;
  background: url(../images/arrow_wh.svg) center/contain no-repeat;
  width: clamp(23px, 2vw, 30px);
  height: clamp(23px, 2vw, 30px);
  transition: all 0.3s ease;
}
.p-news .webgene-pagination .next > a:hover,
.p-newsdetail .webgene-pagination .next > a:hover,
.p-results .webgene-pagination .next > a:hover,
.p-resultsdetail .webgene-pagination .next > a:hover {
  box-shadow: 0 0 0 #424141;
  transition: all 0.3s ease;
}
.p-news .btn-block,
.p-newsdetail .btn-block,
.p-results .btn-block,
.p-resultsdetail .btn-block {
  display: flex;
  justify-content: center;
  margin-top: clamp(60px, 8vw, 120px);
}
.p-news .btn-block > a,
.p-newsdetail .btn-block > a,
.p-results .btn-block > a,
.p-resultsdetail .btn-block > a {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  font-size: clamp(0.938rem, 0.836rem + 0.44vw, 1.25rem);
  font-weight: 400;
  color: white;
  border-radius: 99px;
  transition: background-position 0.4s ease, transform 0.5s ease;
  padding: 13px 35px;
  gap: 24px;
  min-width: 250px;
  background-color: var(--red);
  border: 2px solid #fff;
  box-shadow: 3px 5px 0 #424141;
  transition: all 0.3s ease;
}
@media (min-width: 768px) {
  .p-news .btn-block > a,
.p-newsdetail .btn-block > a,
.p-results .btn-block > a,
.p-resultsdetail .btn-block > a {
    min-width: 280px;
  }
}
.p-news .btn-block > a::after,
.p-newsdetail .btn-block > a::after,
.p-results .btn-block > a::after,
.p-resultsdetail .btn-block > a::after {
  content: "";
  display: block;
  background: url(../images/arrow_wh.svg) center/contain no-repeat;
  width: clamp(23px, 2vw, 30px);
  height: clamp(23px, 2vw, 30px);
  transition: all 0.3s ease;
}
.p-news .btn-block > a:hover,
.p-newsdetail .btn-block > a:hover,
.p-results .btn-block > a:hover,
.p-resultsdetail .btn-block > a:hover {
  box-shadow: 0 0 0 #424141;
  transition: all 0.3s ease;
}

.p-news .webgene-blog {
  padding-bottom: clamp(100px, 17vw, 250px);
  max-width: 910px;
  padding-inline: 20px;
  margin-inline: auto;
}
.p-news .webgene-blog > article a {
  padding-block: clamp(20px, 3vw, 45px);
  border-bottom: solid 2px var(--txt);
  display: flex;
  flex-direction: column;
  align-items: baseline;
  gap: 4px 30px;
}
@media (min-width: 768px) {
  .p-news .webgene-blog > article a {
    padding-block: 35px;
    flex-direction: row;
  }
}
.p-news .webgene-blog > article:first-of-type a {
  padding-top: 0px;
}
.p-news .webgene-blog > article .date,
.p-news .webgene-blog > article .title {
  font-size: clamp(0.938rem, 0.836rem + 0.44vw, 1.25rem);
}
.p-news .webgene-blog > article .date {
  color: var(--red);
}
@media (min-width: 768px) {
  .p-news .webgene-blog > article .date {
    width: 120px;
  }
}
.p-news .webgene-blog > article .title {
  flex: 1;
}
.p-news .webgene-pagination {
  margin-top: clamp(60px, 8vw, 120px);
}

.p-newsdetail {
  padding-block: clamp(70px, 18vw, 270px) clamp(100px, 17vw, 250px);
}
.p-newsdetail .btn-block {
  margin-top: clamp(20px, 3vw, 45px);
}

.newsdetail-contents {
  margin-inline: auto;
  max-width: 820px;
  margin-bottom: clamp(60px, 9vw, 130px);
}
.newsdetail-contents__date {
  font-size: clamp(1.125rem, 1.004rem + 0.53vw, 1.5rem);
  margin-bottom: 15px;
  color: var(--red);
}
.newsdetail-contents__title {
  font-size: clamp(1.125rem, 0.842rem + 1.23vw, 2rem);
  margin-bottom: 35px;
}
.newsdetail-contents__img img {
  overflow: hidden;
  border-radius: clamp(20px, 2vw, 30px);
}
.newsdetail-contents__meta {
  margin-top: 35px;
}

.p-company {
  padding-bottom: clamp(80px, 12vw, 150px);
}
.p-company .page-hr .container > .row {
  position: relative;
  z-index: 1;
}
.p-company .page-hr .container > .row .pattern {
  position: absolute;
  z-index: -1;
  right: 0;
  bottom: -5vw;
  max-width: clamp(250px, 33vw, 500px);
}
.p-company__sec01 {
  background: linear-gradient(180deg, transparent 0%, transparent 50%, #424141 50%, #424141 100%);
}
.p-company__sec01 img {
  aspect-ratio: 3/2;
  overflow: hidden;
  border-radius: clamp(20px, 2vw, 30px);
  border: solid clamp(2px, 1vw, 5px) var(--txt);
}

.company-links {
  background-color: var(--txt);
  padding-block: clamp(80px, 12vw, 150px);
}
@media (min-width: 768px) {
  .company-links .container {
    max-width: 840px;
  }
}
.company-links .wrapper {
  display: flex;
  flex-direction: column;
  gap: clamp(40px, 6vw, 100px);
}
.company-links .box {
  align-items: center;
}
.company-links .box-txt {
  max-width: 400px;
  margin-inline: auto;
}
@media (min-width: 768px) {
  .company-links .box-txt {
    max-width: 100%;
  }
}
.company-links .box-txt h3,
.company-links .box-txt p {
  color: white;
}
.company-links .box-txt .wrap {
  flex: 1;
}
.company-links .box-txt .icon {
  transition: all 0.3s ease;
  width: 33px;
}
@media (min-width: 768px) {
  .company-links .box-txt .icon {
    width: 63px;
  }
}
.company-links .box-txt > a:hover .icon {
  transform: translateX(5px);
  transition: all 0.3s ease;
}
.company-links .box-img img {
  aspect-ratio: 3/2;
  overflow: hidden;
  border-radius: clamp(20px, 2vw, 30px);
  border: solid clamp(2px, 1vw, 5px) white;
}

.p-overview__sec01,
.p-message__sec01,
.p-history__sec01 {
  padding-inline: 20px;
  padding-bottom: clamp(80px, 13vw, 190px);
}
.p-overview__sec01 .container,
.p-message__sec01 .container,
.p-history__sec01 .container {
  background-color: white;
  padding-block: clamp(40px, 12vw, 150px);
  border-radius: clamp(20px, 4vw, 50px);
  padding-inline: 20px;
}
@media (min-width: 768px) {
  .p-overview__sec01 .container,
.p-message__sec01 .container,
.p-history__sec01 .container {
    padding-inline: 40px;
  }
}
@media (min-width: 1200px) {
  .p-overview__sec01 .container,
.p-message__sec01 .container,
.p-history__sec01 .container {
    padding-inline: clamp(20px, 12vw, 150px);
  }
}
.p-overview__sec01 .container.list-wrap .list-dl,
.p-message__sec01 .container.list-wrap .list-dl,
.p-history__sec01 .container.list-wrap .list-dl {
  display: flex;
  flex-direction: column;
  padding-block: clamp(20px, 5vw, 70px);
  border-bottom: solid 2px var(--txt);
  gap: 10px clamp(15px, 2vw, 30px);
}
@media (min-width: 576px) {
  .p-overview__sec01 .container.list-wrap .list-dl,
.p-message__sec01 .container.list-wrap .list-dl,
.p-history__sec01 .container.list-wrap .list-dl {
    flex-direction: row;
  }
}
.p-overview__sec01 .container.list-wrap .list-dl:first-child,
.p-message__sec01 .container.list-wrap .list-dl:first-child,
.p-history__sec01 .container.list-wrap .list-dl:first-child {
  padding-top: 0px;
}
.p-overview__sec01 .container.list-wrap .list-dt,
.p-overview__sec01 .container.list-wrap .list-dd,
.p-message__sec01 .container.list-wrap .list-dt,
.p-message__sec01 .container.list-wrap .list-dd,
.p-history__sec01 .container.list-wrap .list-dt,
.p-history__sec01 .container.list-wrap .list-dd {
  font-weight: 500;
  line-height: 1.8;
}
.p-overview__sec01 .container.list-wrap .list-dt,
.p-message__sec01 .container.list-wrap .list-dt,
.p-history__sec01 .container.list-wrap .list-dt {
  width: 100%;
  color: var(--red);
}
@media (min-width: 576px) {
  .p-overview__sec01 .container.list-wrap .list-dt,
.p-message__sec01 .container.list-wrap .list-dt,
.p-history__sec01 .container.list-wrap .list-dt {
    width: 130px;
  }
}
@media (min-width: 992px) {
  .p-overview__sec01 .container.list-wrap .list-dt,
.p-message__sec01 .container.list-wrap .list-dt,
.p-history__sec01 .container.list-wrap .list-dt {
    width: 200px;
  }
}
.p-overview__sec01 .container.list-wrap .list-dd,
.p-message__sec01 .container.list-wrap .list-dd,
.p-history__sec01 .container.list-wrap .list-dd {
  flex: 1;
  gap: 0 50px;
}
.p-overview__sec01 .container.message-wrap .box-img,
.p-message__sec01 .container.message-wrap .box-img,
.p-history__sec01 .container.message-wrap .box-img {
  width: 410px;
  margin-inline: auto;
}
.p-overview__sec01 .container.message-wrap .box-img img,
.p-message__sec01 .container.message-wrap .box-img img,
.p-history__sec01 .container.message-wrap .box-img img {
  border-radius: clamp(20px, 2vw, 30px);
  overflow: hidden;
  aspect-ratio: 410/614;
}
.p-overview__sec01 .container.message-wrap .box-txt .contents-title .position,
.p-message__sec01 .container.message-wrap .box-txt .contents-title .position,
.p-history__sec01 .container.message-wrap .box-txt .contents-title .position {
  font-size: clamp(1.25rem, 1.007rem + 1.05vw, 2rem);
  font-weight: bold;
}
@media (min-width: 1200px) {
  .p-overview__sec01 .container.history-wrap,
.p-message__sec01 .container.history-wrap,
.p-history__sec01 .container.history-wrap {
    padding-inline: clamp(20px, 10vw, 120px);
  }
}
.p-overview__sec01 .container.history-wrap .list-dl,
.p-message__sec01 .container.history-wrap .list-dl,
.p-history__sec01 .container.history-wrap .list-dl {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px 70px;
  padding-left: 30px;
  padding-bottom: 80px;
}
@media (min-width: 576px) {
  .p-overview__sec01 .container.history-wrap .list-dl,
.p-message__sec01 .container.history-wrap .list-dl,
.p-history__sec01 .container.history-wrap .list-dl {
    flex-direction: row;
    padding-left: 0px;
  }
}
.p-overview__sec01 .container.history-wrap .list-dl::before, .p-overview__sec01 .container.history-wrap .list-dl::after,
.p-message__sec01 .container.history-wrap .list-dl::before,
.p-message__sec01 .container.history-wrap .list-dl::after,
.p-history__sec01 .container.history-wrap .list-dl::before,
.p-history__sec01 .container.history-wrap .list-dl::after {
  content: "";
  position: absolute;
  display: block;
  background-color: var(--txt);
}
.p-overview__sec01 .container.history-wrap .list-dl::before,
.p-message__sec01 .container.history-wrap .list-dl::before,
.p-history__sec01 .container.history-wrap .list-dl::before {
  border-radius: 100px;
  top: 4px;
  left: 0;
  width: 15px;
  height: 15px;
}
@media (min-width: 576px) {
  .p-overview__sec01 .container.history-wrap .list-dl::before,
.p-message__sec01 .container.history-wrap .list-dl::before,
.p-history__sec01 .container.history-wrap .list-dl::before {
    top: 3px;
    left: 112px;
    width: 18px;
    height: 18px;
  }
}
@media (min-width: 992px) {
  .p-overview__sec01 .container.history-wrap .list-dl::before,
.p-message__sec01 .container.history-wrap .list-dl::before,
.p-history__sec01 .container.history-wrap .list-dl::before {
    left: 110px;
    width: 23px;
    height: 23px;
  }
}
.p-overview__sec01 .container.history-wrap .list-dl::after,
.p-message__sec01 .container.history-wrap .list-dl::after,
.p-history__sec01 .container.history-wrap .list-dl::after {
  width: 1px;
  top: 7.5px;
  left: 7px;
  height: 100%;
}
@media (min-width: 576px) {
  .p-overview__sec01 .container.history-wrap .list-dl::after,
.p-message__sec01 .container.history-wrap .list-dl::after,
.p-history__sec01 .container.history-wrap .list-dl::after {
    top: 9px;
    left: 121px;
  }
}
@media (min-width: 992px) {
  .p-overview__sec01 .container.history-wrap .list-dl::after,
.p-message__sec01 .container.history-wrap .list-dl::after,
.p-history__sec01 .container.history-wrap .list-dl::after {
    top: 11.5px;
    left: 121px;
  }
}
.p-overview__sec01 .container.history-wrap .list-dt,
.p-overview__sec01 .container.history-wrap .list-dd,
.p-message__sec01 .container.history-wrap .list-dt,
.p-message__sec01 .container.history-wrap .list-dd,
.p-history__sec01 .container.history-wrap .list-dt,
.p-history__sec01 .container.history-wrap .list-dd {
  font-weight: 500;
}
.p-overview__sec01 .container.history-wrap .list-dt,
.p-message__sec01 .container.history-wrap .list-dt,
.p-history__sec01 .container.history-wrap .list-dt {
  width: 100%;
}
@media (min-width: 576px) {
  .p-overview__sec01 .container.history-wrap .list-dt,
.p-message__sec01 .container.history-wrap .list-dt,
.p-history__sec01 .container.history-wrap .list-dt {
    width: 90px;
  }
}
.p-overview__sec01 .container.history-wrap .list-dd,
.p-message__sec01 .container.history-wrap .list-dd,
.p-history__sec01 .container.history-wrap .list-dd {
  word-break: break-all;
  flex: 1;
}
.p-overview .company-links,
.p-message .company-links,
.p-history .company-links {
  margin-bottom: clamp(50px, 8vw, 130px);
}

.p-recruit .page-hr__img {
  max-width: clamp(80px, 11vw, 140px);
}
.p-recruit .page-hr .container > .box-wrap {
  margin-top: clamp(50px, 7vw, 100px);
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  gap: clamp(20px, 4vw, 60px);
}
.p-recruit .page-hr .container > .box-wrap .box-img:nth-child(1) {
  width: calc(40% - clamp(10px, 2vw, 30px));
}
.p-recruit .page-hr .container > .box-wrap .box-img:nth-child(2) {
  width: calc(60% - clamp(10px, 2vw, 30px));
  margin-bottom: clamp(50px, 7vw, 100px);
}
.p-recruit .page-hr .container > .box-wrap img {
  border: solid clamp(2px, 0.3vw, 5px) var(--txt);
  border-radius: clamp(20px, 2vw, 30px);
  aspect-ratio: 4/3;
}
.p-recruit__sec01 {
  background-color: var(--blue);
  color: white;
  padding-block: clamp(100px, 13vw, 200px);
}
.p-recruit__sec01 .wrapper {
  display: flex;
  flex-direction: column;
  gap: clamp(60px, 12vw, 150px);
}
.p-recruit__sec01 .box {
  display: flex;
  align-items: center;
  gap: 30px;
}
@media (min-width: 768px) {
  .p-recruit__sec01 .box {
    align-items: flex-end;
  }
}
.p-recruit__sec01 .box:nth-child(odd) {
  flex-direction: column;
}
@media (min-width: 768px) {
  .p-recruit__sec01 .box:nth-child(odd) {
    flex-direction: row;
  }
}
.p-recruit__sec01 .box:nth-child(even) {
  flex-direction: column;
}
@media (min-width: 768px) {
  .p-recruit__sec01 .box:nth-child(even) {
    flex-direction: row-reverse;
    text-align: right;
  }
}
.p-recruit__sec01 .box-img {
  width: 80%;
  margin-inline: auto;
}
@media (min-width: 768px) {
  .p-recruit__sec01 .box-img {
    width: calc(45% - 15px);
  }
}
.p-recruit__sec01 .box-txt {
  width: 100%;
}
@media (min-width: 768px) {
  .p-recruit__sec01 .box-txt {
    width: calc(55% - 15px);
  }
}
.p-recruit__sec01 .box-txt h3 {
  font-size: clamp(1.25rem, 0.845rem + 1.75vw, 2.5rem);
  margin-bottom: 10px;
}
.p-recruit__sec01 .box-txt > p {
  line-height: 1.8;
}
@media (min-width: 768px) {
  .p-recruit__sec01 .box-txt > p {
    line-height: 2;
  }
}
.p-recruit__sec01 img {
  border: solid clamp(2px, 0.3vw, 5px) white;
  border-radius: clamp(20px, 2vw, 30px);
  aspect-ratio: 4/3;
}
.p-recruit__sec02 {
  background-image: url(../images/recruit-back.jpg);
  padding-block: clamp(60px, 10vw, 135px);
}
.p-recruit__sec02 h2 {
  font-size: clamp(1.5rem, 1.014rem + 2.1vw, 3rem);
  font-weight: bold;
  text-shadow: 2px 3px 2px rgba(0, 0, 0, 0.5);
  line-height: 1.8;
  margin-bottom: clamp(40px, 4vw, 60px);
  color: white;
}
@media (min-width: 768px) {
  .p-recruit__sec02 h2 {
    line-height: 2;
  }
}
.p-recruit__sec02 h2 span {
  display: inline-block;
}
.p-recruit__sec02 .point-wrap {
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 2vw, 45px);
}
.p-recruit__sec02 .point-wrap > p {
  background-color: white;
  font-size: clamp(1.25rem, 1.007rem + 1.05vw, 2rem);
  border-radius: 20px;
  padding: 20px clamp(20px, 2vw, 45px);
}
.p-recruit__sec03 {
  padding-block: clamp(80px, 13vw, 180px);
  padding-inline: 20px;
}
.p-recruit__sec03 .list-wrap {
  background-color: white;
  padding-block: clamp(40px, 12vw, 150px);
  border-radius: clamp(20px, 4vw, 50px);
  padding-inline: 20px;
}
@media (min-width: 768px) {
  .p-recruit__sec03 .list-wrap {
    padding-inline: 40px;
  }
}
@media (min-width: 1200px) {
  .p-recruit__sec03 .list-wrap {
    padding-inline: clamp(20px, 12vw, 150px);
  }
}
.p-recruit__sec03 .list-dl {
  display: flex;
  flex-direction: column;
  padding-block: clamp(20px, 3vw, 40px);
  border-bottom: solid 2px var(--txt);
  gap: 10px clamp(15px, 2vw, 30px);
}
@media (min-width: 576px) {
  .p-recruit__sec03 .list-dl {
    flex-direction: row;
  }
}
.p-recruit__sec03 .list-dl:first-child {
  padding-top: 0px;
}
.p-recruit__sec03 .list-dt,
.p-recruit__sec03 .list-dd {
  font-weight: 500;
  line-height: 1.8;
}
.p-recruit__sec03 .list-dt {
  width: 100%;
  color: var(--red);
}
@media (min-width: 576px) {
  .p-recruit__sec03 .list-dt {
    width: 130px;
  }
}
@media (min-width: 992px) {
  .p-recruit__sec03 .list-dt {
    width: 200px;
  }
}
.p-recruit__sec03 .list-dd {
  flex: 1;
  gap: 0 50px;
}
.p-recruit__sec03 .btn-wrap {
  margin-top: clamp(60px, 12vw, 150px);
}
.p-recruit__sec03 .btn-wrap a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: white;
  border: solid clamp(2px, 1vw, 5px) white;
  font-weight: 400;
  font-size: clamp(1.063rem, 0.597rem + 2.01vw, 2.5rem);
  line-height: 1.8;
  border-radius: 30px;
  transition: all 0.3s ease;
  padding-block: 30px;
  padding-inline: clamp(40px, 6vw, 85px) clamp(100px, 19vw, 280px);
  gap: 24px;
  filter: drop-shadow(3px 5px 0 #424141);
  background-color: var(--red);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.p-recruit__sec03 .btn-wrap a::after {
  width: clamp(33px, 3vw, 58px);
  height: clamp(33px, 3vw, 58px);
  right: clamp(30px, 6vw, 84px);
}
.p-recruit__sec03 .btn-wrap a:hover {
  filter: drop-shadow(0px 0px 0 #424141);
}

.p-contact {
  padding-bottom: clamp(80px, 13vw, 190px);
}
.p-contact__form {
  padding-inline: 20px;
}
.p-contact__form .container {
  display: flex;
  flex-direction: column;
  gap: clamp(35px, 4vw, 55px);
}
@media (min-width: 768px) {
  .p-contact__form .container {
    max-width: 750px;
  }
}
.p-contact__form input,
.p-contact__form textarea {
  width: 100%;
  background-color: white;
  border: solid 2px var(--txt);
  border-radius: 10px;
  padding: 15px 10px;
}
.p-contact__form textarea {
  height: 250px;
}
@media (min-width: 768px) {
  .p-contact__form textarea {
    height: 400px;
  }
}
.p-contact__form .checkbox {
  width: clamp(18px, 3vw, 25px);
  height: clamp(18px, 3vw, 25px);
  border: 1px solid var(--main);
  border-radius: 0;
  background-color: transparent;
  cursor: pointer;
  margin-right: 15px;
}
.p-contact__form .privacyLabel {
  cursor: pointer;
}
.p-contact__form .formTh {
  font-size: clamp(1.063rem, 0.921rem + 0.61vw, 1.5rem);
  font-weight: 500;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}
.p-contact__form .formTh > label {
  margin-bottom: 0;
}
.p-contact__form .formTh .requiredText {
  margin-left: 14px;
  background-color: var(--txt);
  color: white;
  font-size: clamp(0.688rem, 0.607rem + 0.35vw, 0.938rem);
  border-radius: 99px;
  padding: 2px 18px;
}
.p-contact .privacy-policy {
  background-color: #828481;
  border-radius: 13px;
  padding: 14px 12px;
}
.p-contact .privacy-policy__wrap {
  font-size: 0.8125rem;
  color: white;
  height: 230px;
  overflow: auto;
  padding-right: 10px;
}
.p-contact .privacy-policy__wrap::-webkit-scrollbar {
  width: 8px;
}
.p-contact .privacy-policy__wrap::-webkit-scrollbar-track {
  background-color: transparent;
}
.p-contact .privacy-policy__wrap::-webkit-scrollbar-thumb {
  border-radius: 100px;
  background-color: white;
}
.p-contact .formBtnTd button {
  cursor: pointer;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  color: white;
  border: solid 2px white;
  line-height: normal;
  border-radius: 99px;
  transition: all 0.3s ease;
  padding-inline: 20px 50px;
  padding-block: 10px;
  gap: 24px;
  filter: drop-shadow(3px 5px 0 #424141);
  min-width: 200px;
  background-color: var(--red);
  transition: all 0.3s ease;
}
@media (min-width: 768px) {
  .p-contact .formBtnTd button {
    padding-block: 12px;
    min-width: 280px;
  }
}
.p-contact .formBtnTd button:hover {
  transition: all 0.3s ease;
  filter: drop-shadow(0 0 0 #424141);
}
.p-contact .formBtnTd button::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 15px;
  display: block;
  background: url(../images/arrow_wh.svg) center/contain no-repeat;
  width: 20px;
  height: 20px;
  transition: all 0.3s ease;
}
@media (min-width: 768px) {
  .p-contact .formBtnTd button::after {
    width: 30px;
    height: 30px;
  }
}
.p-contact .formBtnTd button:hover::after {
  transform: translateY(-50%) translateX(5px);
  transition: all 0.3s ease;
}

.p-complete .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}
.p-complete .btn-wrap a {
  min-width: 200px;
}
@media (min-width: 768px) {
  .p-complete .btn-wrap a {
    min-width: 280px;
  }
}

.header {
  position: fixed;
  z-index: 997;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  background-color: var(--base);
}
.header .btn-wrap {
  gap: 10px;
  min-width: 250px;
  margin-top: 30px;
}
@media (min-width: 1400px) {
  .header .btn-wrap {
    min-width: 170px;
    margin-top: 0;
  }
}
.header .btn-wrap.sp-link {
  display: flex;
}
@media (min-width: 1400px) {
  .header .btn-wrap.sp-link {
    display: none;
  }
}
.header .btn-wrap.sp-link a {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  overflow: visible;
}
.header .btn-wrap.pc-link {
  display: none;
}
@media (min-width: 1400px) {
  .header .btn-wrap.pc-link {
    display: flex;
  }
}
.header__inner {
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 30px;
}
@media (min-width: 768px) {
  .header__inner {
    padding: 20px 30px;
  }
}
@media (min-width: 1400px) {
  .header__inner {
    padding: 14px 25px;
  }
}
.header__inner > .btn-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
@media (min-width: 1400px) {
  .header__inner > .btn-wrap {
    flex-direction: row;
  }
}
.header__brand {
  display: flex;
}
.header__brand > a {
  display: inline-block;
  width: 100%;
  width: 120px;
}
@media (min-width: 768px) {
  .header__brand > a {
    width: 160px;
  }
}
@media (min-width: 1400px) {
  .header__brand > a {
    width: 220px;
  }
}
.header__brand > a:hover {
  opacity: 0.5;
}
.header__nav {
  position: fixed;
  z-index: 997;
  inset: 0;
  height: 100%;
  width: 100%;
  transition: all 0.3s ease;
  padding: 100px 0;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  background-color: white;
}
@media (min-width: 1400px) {
  .header__nav {
    margin-left: auto;
    position: static;
    height: auto;
    width: auto;
    transform: none;
    transition: none;
    padding: 0;
    overflow-y: unset;
    opacity: 1;
    visibility: visible;
    background-color: transparent;
  }
}
.header__nav.open {
  opacity: 1;
  visibility: visible;
}
.header__nav-link {
  line-height: 1.34;
  display: flex;
  flex-direction: column;
  align-items: center;
  white-space: nowrap;
  font-size: 1.125rem;
  min-width: 205px;
}
@media (min-width: 1400px) {
  .header__nav-link {
    padding-block: 15px;
    min-width: auto;
    font-size: 1rem;
  }
}
.header__nav-link:hover {
  opacity: 0.5;
}
.header__nav-link > p:nth-child(2) {
  color: var(--txt);
  font-size: 0.625rem;
}
@media (min-width: 576px) {
  .header__nav-link > p:nth-child(2) {
    font-size: 0.75rem;
  }
}
.header__nav-list {
  gap: 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 1400px) {
  .header__nav-list {
    gap: clamp(10px, 2vw, 30px);
    flex-direction: row;
  }
}

.gjs-dashed .header__nav {
  width: 100vw;
  visibility: visible;
  opacity: 1;
}

#hum-btn {
  position: relative;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: all;
  margin-left: auto;
  width: 29px;
  height: 20px;
}
@media (min-width: 768px) {
  #hum-btn {
    width: 44px;
    height: 31px;
  }
}
@media (min-width: 1400px) {
  #hum-btn {
    display: none;
  }
}

.btn-trigger {
  position: relative;
  z-index: 9999;
  cursor: pointer;
  display: inline-block;
  transition: all 0.5s;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
}
.btn-trigger__bar {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1.5px;
  display: inline-block;
  transition: all 0.5s;
  box-sizing: border-box;
  background-color: var(--txt);
}
@media (min-width: 992px) {
  .btn-trigger__bar {
    box-shadow: none;
  }
}
.btn-trigger__bar:nth-of-type(1) {
  top: 0;
}
.btn-trigger__bar:nth-of-type(2) {
  top: 50%;
  transform: translateY(-50%);
}
.btn-trigger__bar:nth-of-type(3) {
  bottom: 0;
}

.is-nav-open .btn-trigger__bar:nth-of-type(1) {
  transform: translateY(11.5px) rotate(-45deg);
}
@media (min-width: 768px) {
  .is-nav-open .btn-trigger__bar:nth-of-type(1) {
    transform: translateY(15px) rotate(-45deg);
  }
}
.is-nav-open .btn-trigger__bar:nth-of-type(2) {
  opacity: 0;
}
.is-nav-open .btn-trigger__bar:nth-of-type(3) {
  transform: translateY(-11px) rotate(45deg);
}
@media (min-width: 768px) {
  .is-nav-open .btn-trigger__bar:nth-of-type(3) {
    transform: translateY(-15px) rotate(45deg);
  }
}

.drop {
  position: relative;
  opacity: 1 !important;
  border: solid 1px var(--red);
  padding: 20px 0 10px;
}
@media (min-width: 1400px) {
  .drop {
    padding: 0;
  }
}
@media (min-width: 1400px) {
  .drop {
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
  }
}
.drop > p {
  font-weight: bold;
}
@media (min-width: 1400px) {
  .drop > p {
    font-weight: normal;
  }
}
.drop::after {
  content: "";
  position: absolute;
  top: 55px;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 12px;
  display: block;
  background-color: var(--red);
}
@media (min-width: 1400px) {
  .drop::after {
    display: none;
  }
}
.drop > .drop-menu {
  max-width: 300px;
  padding: 20px 20px 0;
  pointer-events: auto;
}
@media (min-width: 1400px) {
  .drop > .drop-menu {
    position: absolute;
    left: -23px;
    top: 100%;
    min-width: 250px;
    max-width: 100%;
    padding: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    z-index: 50;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }
}
@media (min-width: 1400px) {
  .drop:hover > .drop-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
}
.drop .drop-link {
  position: relative;
  display: flex;
  padding: 13px 25px;
}
@media (min-width: 1400px) {
  .drop .drop-link {
    align-items: flex-start;
    transition: all 0.3s ease;
    background-color: var(--base);
  }
}
.drop .drop-link::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 25px;
  display: none;
  background: url(../images/arrow_bk.svg) center/contain no-repeat;
  width: 22px;
  height: 22px;
  transition: all 0.3s ease;
}
@media (min-width: 1400px) {
  .drop .drop-link::after {
    display: block;
  }
}
.drop .drop-link:hover::after {
  transition: all 0.3s ease;
  background: url(../images/arrow_wh.svg) center/contain no-repeat;
}
.drop .drop-link > p {
  transition: all 0.3s ease;
}
@media (min-width: 1400px) {
  .drop .drop-link {
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 0.25s ease, transform 0.25s ease, background-color 0.2s ease, color 0.2s ease;
  }
}
@media (min-width: 1400px) {
  .drop .drop-link:nth-child(1) {
    transition-delay: 0s, 0s, 0s, 0s;
  }
}
@media (min-width: 1400px) {
  .drop .drop-link:nth-child(2) {
    transition-delay: 0.08s, 0.08s, 0s, 0s;
  }
}
@media (min-width: 1400px) {
  .drop .drop-link:nth-child(3) {
    transition-delay: 0.16s, 0.16s, 0s, 0s;
  }
}
@media (min-width: 1400px) {
  .drop .drop-link:nth-child(4) {
    transition-delay: 0.24s, 0.24s, 0s, 0s;
  }
}
@media (min-width: 1400px) {
  .drop .drop-link:hover {
    transition: all 0.3s ease !important;
    background-color: rgba(137, 117, 73, 0.9);
  }
}
@media (min-width: 1400px) {
  .drop .drop-link:hover > p {
    color: white;
    transition: all 0.3s ease !important;
  }
}
@media (min-width: 1400px) {
  .drop:hover > .drop-menu > a.drop-link {
    opacity: 1;
    transform: translateY(0);
  }
}

.footer {
  padding-inline: clamp(20px, 4vw, 55px);
  padding-block: 10px 0;
}
.footer__inner {
  position: relative;
  z-index: 1;
  background-color: #828481;
  border: solid clamp(2px, 1vw, 4px) var(--txt);
  border-radius: clamp(20px, 3vw, 45px);
  overflow: hidden;
}
.footer__left {
  position: absolute;
  z-index: -1;
  left: 0;
  bottom: 0;
  width: 100%;
  opacity: 0.4;
  display: flex;
  align-items: flex-end;
}
@media (min-width: 992px) {
  .footer__left {
    position: static;
    width: 50%;
    opacity: 1;
  }
}
.footer__left img {
  margin-top: auto;
}
.footer__right {
  padding: 50px clamp(20px, 5vw, 75px);
  width: 100%;
}
@media (min-width: 992px) {
  .footer__right {
    width: 50%;
  }
}
.footer__right a,
.footer__right p {
  color: white;
}
.footer__brand {
  width: 80%;
  margin-inline: auto;
  text-align: center;
  margin-bottom: 40px;
}
@media (min-width: 576px) {
  .footer__brand {
    max-width: 340px;
    margin-inline: 0 auto;
    text-align: left;
  }
}
@media (min-width: 768px) {
  .footer__brand {
    max-width: 464px;
    margin-bottom: 70px;
  }
}
.footer__brand > a {
  display: inline-block;
  margin-bottom: 20px;
}
.footer__nav {
  display: flex;
  flex-direction: column;
  gap: 0 clamp(15px, 2vw, 30px);
}
@media (min-width: 576px) {
  .footer__nav {
    flex-direction: row;
  }
}
.footer__nav-link {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: clamp(1.063rem, 0.921rem + 0.61vw, 1.5rem);
}
.footer__nav-left, .footer__nav-right {
  width: 100%;
  gap: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
@media (min-width: 576px) {
  .footer__nav-left, .footer__nav-right {
    width: calc(50% - clamp(7.5px, 1vw, 15px));
    align-items: flex-start;
    text-align: left;
  }
}
.footer__nav-right .btn-wrap {
  flex-direction: column;
  max-width: 225px;
  margin-inline: auto;
  margin-top: 17px;
  gap: 17px;
}
@media (min-width: 576px) {
  .footer__nav-right .btn-wrap {
    margin-inline: 0 auto;
  }
}
.footer .nav-link__wrap {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: -10px;
}
.footer .nav-link__wrap > a {
  display: inline-block;
  font-size: clamp(0.813rem, 0.711rem + 0.44vw, 1.125rem);
  font-weight: 300;
  padding-left: clamp(1.063rem, 0.921rem + 0.61vw, 1.5rem);
}

.footer-contact {
  padding-inline: 0;
  padding-block: clamp(50px, 12vw, 150px);
}
@media (min-width: 768px) {
  .footer-contact {
    padding-inline: clamp(40px, 10vw, 120px);
  }
}
@media (min-width: 576px) {
  .footer-contact .container {
    max-width: 420px;
  }
}
@media (min-width: 768px) {
  .footer-contact .container {
    max-width: 550px;
  }
}
@media (min-width: 992px) {
  .footer-contact .container {
    max-width: 650px;
  }
}
@media (min-width: 1200px) {
  .footer-contact .container {
    max-width: 770px;
  }
}
.footer-contact__link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: white;
  border: solid clamp(2px, 1vw, 5px) white;
  font-weight: 400;
  font-size: clamp(1.063rem, 0.597rem + 2.01vw, 2.5rem);
  line-height: 1.8;
  border-radius: 30px;
  transition: all 0.3s ease;
  padding: 20px 30px;
  gap: 24px;
  filter: drop-shadow(3px 5px 0 #424141);
  background-color: var(--red);
  width: 100%;
}
@media (min-width: 768px) {
  .footer-contact__link {
    padding: clamp(30px, 4vw, 65px) clamp(40px, 11vw, 160px);
  }
}
.footer-contact__link::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: clamp(20px, 5vw, 75px);
  transition: all 0.3s ease;
  display: block;
  width: clamp(25px, 4vw, 58px);
  height: clamp(25px, 4vw, 58px);
  background: url(../images/arrow_wh.svg) center/contain no-repeat;
}
.footer-contact__link:hover {
  color: white;
  filter: drop-shadow(0 0 0 #424141);
}
.footer-contact__link:hover::after {
  transition: all 0.3s ease;
  transform: translateY(-50%) translateX(5px);
}
.footer-contact__link .deco {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -6vw;
  height: 100%;
  display: none;
}
@media (min-width: 576px) {
  .footer-contact__link .deco {
    display: block;
  }
}
.footer-contact__link .deco img {
  height: inherit;
}