@charset "UTF-8";

/* Variables */
:root {
  /* Primary Color */
  --color-primary: #264478;
  --color-primary-light: #6ea0de;
  --color-primary-pale: #8eadd8;
  --color-primary-pale2: #f4f8fe;
  --color-primary-dark: #1B2F50;
  --color-primary-dark2: #111f3b;
  --color-primary-grad: linear-gradient(to right, #6ea0de, #c2d6f5);
  /* Secondary Color */
  --color-secondary: #f27c36;
  --color-secondary-light: #FFC9A3;
  --color-secondary-pale: #FFE8D8;
  --color-secondary-pale2: #ffeee5;
  --color-secondary-dark: #B7531F;
  --color-secondary-dark2: #801f00;
  --color-secondary-grad: linear-gradient(to right, #f69a64, #f3b68b);
  /* Error Color */
  --color-error: #FF0000;
  --color-error-light: #e06b6b;
  --color-error-pale: #FFE5E5;
  /* like color */
  --color-like: #ef4b52;
  --color-like-hover: #ff8a8f;
  /* Other Color */
  --color-accent: #FFD700;
  --color-accent02: #ec4c47;
  --color-white: #ffffff;
  --color-black: #000000;
  --color-gray: #808080;
  --color-gray-light: #f5f5f5;
  --color-gray-dark: #333333;
  --color-success: #28a745;
  --color-link: #007bff;
  --color-sign: #3f9da8;
  /* Font */
  --font-size-default: 16px;
}

/* Common Parts Style */
html {
  background-color: var(--color-white);
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
body {
  position: relative;
  font-family: "toppan-bunkyu-midashi-go-std", sans-serif;
  font-weight: 400;
  overflow-x: hidden;
  font-size: var(--font-size-default);
}

/* Objects */
/* Titles */
h1 {
  font-size: clamp(1.875rem, 4vw, 3rem);
  line-height: 1.5;
  letter-spacing: 0.05em;
  font-weight: 700;
  color: var(--color-primary);
}
h2 {
  font-size: clamp(1.425rem, 2.5vw, 2rem);
  line-height: 1.5;
  letter-spacing: 0.05em;
  font-weight: 600;
  color: var(--color-primary-dark);
  margin-bottom: 4rem;
}
h3 {
  font-size: clamp(1.225rem, 2vw, 1.5rem);
  line-height: 1.5;
  letter-spacing: 0.05em;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 1rem;
}
h4 {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  line-height: 1.5;
  letter-spacing: 0.05em;
  font-weight: 500;
  color: var(--color-primary-light);
  margin-bottom: 0.875rem;
}
h5 {
  font-size: clamp(1rem, 1.5vw, 1rem);
  line-height: var(--line-height-tight);
  letter-spacing: 0.05em;
  font-weight: 500;
  color: var(--color-primary-light);
  margin-bottom: 0.75rem;
}
p {
  line-height: 2;
}
p + p {
  margin-top: 1rem;
}
dt, dd {
  line-height: 1.5;
}
small {
  font-size: 0.875em;
}
.lead-desc {
  margin-top: 1rem;
}
/* text-align */
.t-align-center {
  text-align: center;
}
.t-align-left {
  text-align: left;
}
.t-align-right {
  text-align: right;
}
.t-align-justify {
  text-align: justify;
}
/* Image */
.images {
  margin-top: 1rem;
}
.images img {
  width: 100%;
  vertical-align: bottom;
}
.images.paints-images {
  margin-top: 0;
}
.images.paints-images.bottom {
  margin-bottom: 4rem;
}
.images.paints-images.top {
  margin-top: 4rem;
}
/* List */
ul,
ol {
  margin-left: 1.25rem;
  line-height: 1.5;
}
ul li + li,
ol li + li {
  margin-top: .5rem;
}
/* Iframe */
iframe {
  vertical-align: bottom;
}
/* Breakpoint */
.sp-br {
  display: block;
}

/* Buttons */
.buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 2rem;
}
.buttons .button {
  flex: 0 1 auto;
}
/* Button */
.button a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
  text-decoration: none;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  user-select: none;
  cursor: pointer;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
  background-color: var(--color-primary);
  color: var(--color-white);
  padding: 0.75rem 2rem;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.button.radius a {
  border-radius: 50px;
}
.button.secondary a {
  background-color: var(--color-secondary);
}
.button a::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
}
.button a:active {
  transform: translateY(0);
}
.button a:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}
.button a:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}
.button a i[class|="lf21"] {
  font-size: 1.5rem;
}

/* Note */
.note {
  background-color: var(--color-primary-pale2);
  padding: 1rem;
  border-radius: .5rem;
  border: 1px solid var(--color-primary);
  margin-top: 1rem;
}
.note + * {
  margin-top: 1rem;
}

/* Move Marker */
.move-marker {
  position: relative;
  display: inline;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  background: linear-gradient(transparent 60%, var(--color-secondary) 60%);
  background-size: 0% 100%;
  background-repeat: no-repeat;
  background-position: left bottom;
}
.secondary .move-marker {
  background: linear-gradient(transparent 60%, var(--color-primary-light) 60%);
}

/* Point English Lead */
.point-en-lead {
  position: relative;
  color: var(--color-primary-dark);
  margin-bottom: 2rem;
  display: flex;
  align-items: flex-start;
  gap: 2rem;
}
.point-en-lead::before {
  content: '';
  display: block;
  width: .75rem;
  height: .75rem;
  background-color: var(--color-secondary);
  border-radius: 50%;
  margin-top: 0.25rem;
}

/* GSAP Scroll Animation Library */
.gsap-fade-up,
.gsap-fade-down,
.gsap-fade-left,
.gsap-fade-right,
.gsap-scale,
.gsap-rotate,
.gsap-slide-rotate,
.gsap-blur,
.gsap-rotate-3d,
.gsap-bounce {
  will-change: transform, opacity, filter;
}
.gsap-text-reveal span {
  display: inline-block;
}

/* Wrapper Container */
.wrapper {
  padding: 0 1rem;
  max-width: 980px;
}
.container {
  width: 100%;
}

/* header */
header {
  display: flex;
  position: fixed;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-end;
  z-index: 999999;
  left: 0;
  top: 0;
  width: 100%;
  transition: background-color 0.3s ease;
}
/* header contents */
header .header-contents {
  display: flex;
  align-items: stretch;
}
header .header-contents a {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: .75rem;
  background-color: var(--color-primary);
  color: var(--color-white);
  text-decoration: none;
  transition: background-color 0.3s ease;
}
header .header-contents a:nth-child(2) {
  background-color: var(--color-secondary);
}
header .header-contents a i[class|="lf21"] {
  font-size: 1.5rem;
  padding-bottom: .25rem;
}
header .header-contents a span {
  font-size: .725rem;
  font-weight: bold;
}

/* Section Common */
section {
  padding: 3rem 0;
}
section.primary {
  background-color: var(--color-primary);
  color: var(--color-white);
}
section.secondary {
  background-color: var(--color-secondary);
  color: var(--color-white);
}
section.primary h2,
section.secondary h2,
section.primary h3,
section.secondary h3,
section.primary p,
section.secondary p {
  color: var(--color-white);
}

/* Main Visual */
#main-visual {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  min-height: 100svh;
  padding: 0;
  overflow-x: hidden;
}
#main-visual .main-visual-logo {
  position: absolute;
  left: 1rem;
  top: 1.5rem;
  width: clamp(100px, 16vw, 200px);
  height: auto;
}
#main-visual .main-visual-logo img {
  width: 100%;
  height: auto;
}
#main-visual .main-visual-catch {
  position: absolute;
  top: 6rem;
  right: 1rem;
  height: auto;
  color: var(--color-primary);
  z-index: 999;
  font-weight: bold;
  font-size: clamp(2rem, 7vw, 4rem);
  line-height: 1.2;
  writing-mode: vertical-rl;
}
#main-visual .main-visual-sub-catch {
  position: absolute;
  bottom: 2rem;
  left: 1rem;
  height: auto;
  z-index: 999;
  font-weight: bold;
  line-height: 1;
  font-size: 2.5rem;
}
#main-visual .main-visual-sub-catch span {
  display: inline-block;
  font-size: clamp(.5em, 4vw, 1em);
  background-color: var(--color-primary);
  color: var(--color-white);
  padding: 0.25rem 0.5rem;
}
#main-visual .main-visual-image {
  position: relative;
  right: 0;
  flex-shrink: 0;
  min-width: 0;
  margin-left: 0;
}
#main-visual .main-visual-image img {
  position: relative;
  bottom: 13vh;
  width: clamp(200px, 44vh, 800px);
  height: auto;
  vertical-align: bottom;
  z-index: 99;
}
#main-visual .main-visual-image img.paints {
  position: absolute;
  bottom: 35vh;
  left: -20%;
  width: 140%;
  height: auto;
  z-index: 9;
}

/* Important Contents */
#important {
  background-color: var(--color-primary-pale);
}
#important .images {
  margin-bottom: 3rem;
  margin-right: -1rem;
}
#important .point-en-lead {
  color: var(--color-white);
}
#important h2,
#important .important-contents p {
  color: var(--color-white);
}

/* Revive Contents */
#revive {
  padding: 0;
}
#revive .revive-contents {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 1.5rem;
}
#revive .revive-box {
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--color-gray);
}
#revive .revive-box:last-child {
  padding-bottom: 0;
  border-bottom: none;
}
#revive .compatibility {
  display: inline-block;
  font-size: .875rem;
  font-weight: bold;
  color: var(--color-white);
  background-color: var(--color-primary);
  padding: .5rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}
#revive .compatibility .stars {
  color: var(--color-accent);
}
#revive .revive-reason {
  margin-bottom: 1rem;
}

/* Voices */
#voices .voice-contents {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
#voices .voice-box {
  position: relative;
}
#voices .voice-box::before {
  content: '';
  background-image: url('../images/middle-recruit/paints02-1.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  opacity: .2;
}
#voices .voice-box:nth-child(even)::before {
  background-image: url('../images/middle-recruit/paints02-2.svg');
}
#voices .voice-box .age {
  margin-top: 1rem;
}
#voices .voice-box .age span {
  font-weight: bold;
  color: var(--color-secondary);
}

/* Job Description */
#job-description .point-en-lead::before {
  background-color: var(--color-primary);
}
#job-description h2,
#job-description h3 {
  color: var(--color-white);
}
#job-description .job-description-container {
  margin-top: 2rem;
}
#job-description .job-description-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
#job-description .job-description-box {
  padding: 1rem;
  border: 1px solid var(--color-gray);
  border-radius: .5rem;
  background-color: var(--color-white);
  color: var(--color-primary);
}
#job-description .job-description-box p {
  color: var(--color-primary);
}

/* Salary */
#salary .salary-chart-lead p {
  margin: 0;
  color: var(--color-primary-dark);
}
#salary .salary-chart-wrap {
  margin-top: 1rem;
  display: grid;
  place-items: center;
}
#salary .salary-chart-canvas {
  width: 100% !important;
  height: 100% !important;
  display: block;
}
#salary .salary-chart-meta {
  margin-top: 0.75rem;
  display: grid;
  gap: 0.5rem;
}
#salary .salary-chart-legend {
  display: grid;
  gap: 0.5rem;
}
#salary .salary-chart-legend-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.75rem 0.875rem;
  background: rgba(0, 0, 0, 0.03);
  color: var(--color-primary-dark);
  border-radius: .5rem;
}
#salary .salary-chart-legend-item strong {
  font-weight: 800;
}
#salary .salary-chart-note {
  margin: 0.5rem 0 0;
  font-size: 0.875rem;
  color: rgba(0, 0, 0, 0.65);
  line-height: 1.6;
}
#salary .salary-chart-dot {
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 999px;
  flex: 0 0 auto;
}
#salary .salary-chart-dot-avg {
  background: linear-gradient(to right, #8bf664, #8bf38b);
}
#salary .salary-chart-dot-tokyo {
  background: var(--color-primary-grad);
}
#salary .salary-chart-dot-osaka {
  background: var(--color-secondary-grad);
}

/* Job List */
#job-list .point-en-lead {
  color: var(--color-white);
}
#job-list .job-list-swiper {
  position: relative;
  padding: 0;
  overflow: hidden;
}
#job-list .job-list-swiper .swiper {
  overflow: hidden;
}
#job-list .job-list-swiper .swiper-wrapper {
  align-items: stretch;
}
#job-list .job-list-swiper .swiper-slide {
  height: auto;
  box-sizing: border-box;
  width: 100%;
  max-width: 390px;
  flex-shrink: 0;
}

#job-list .job-list-swiper .job-list {
  grid-template-columns: unset;
  gap: 0;
}
.job-item {
  height: 100%;
}
.job-item a {
  display: block;
  background-color: var(--color-white);
  padding: 1rem;
  border-radius: .5rem;
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  color: var(--color-primary);
  height: 100%;
  transition: all 0.3s ease;
}
.job-item a h3 {
  color: var(--color-primary);
  font-size: 1rem;
}
.job-item a .publication-date {
  font-size: .875rem;
  color: var(--color-gray);
  margin-bottom: .25rem;
}
.job-item a .job-item-box-image {
  overflow: hidden;
}
.job-item a .job-item-box-image img {
  width: 100%;
  height: auto;
  transition: all 0.3s ease;
}
.job-item a dl {
  display: flex;
  justify-content: flex-start;
  gap: 1rem;
  margin: 1rem auto 0;
  border-bottom: 1px solid var(--color-gray);
}
.job-item a dl:last-child {
  border-bottom: none;
}
.job-item a dl dt,
.job-item a dl dd {
  padding: .25rem;
  font-size: .875rem;
}
.job-item a dl dt {
  min-width: 5rem;
}

#job-list .job-list-swiper .swiper-button-prev,
#job-list .job-list-swiper .swiper-button-next {
  color: var(--color-white);
  width: 3rem;
  height: 3rem;
  margin-top: -1.25rem;
  z-index: 10;
  background: var(--color-secondary);
  border-radius: 50%;
}
#job-list .job-list-swiper .swiper-button-prev svg,
#job-list .job-list-swiper .swiper-button-next svg {
  width: 1.5rem;
  height: 1.5rem;
}
#job-list .job-list-swiper .swiper-button-prev {
  left: 0.25rem;
}
#job-list .job-list-swiper .swiper-button-next {
  right: 0.25rem;
}
#job-list .job-list-swiper .swiper-pagination {
  position: relative;
  margin-top: 1rem;
  z-index: 10;
}
#job-list .job-list-swiper .swiper-pagination .swiper-pagination-bullet {
  background-color: rgba(255, 255, 255, 0.5);
}
#job-list .job-list-swiper .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--color-white);
}
#job-list .job-list-swiper .no-jobs {
  padding: 2rem;
  text-align: center;
  color: var(--color-white);
}

/* CTA */
#cta {
  position: relative;
  background-image: url('../images/middle-recruit/cta-bg.webp');
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: cover;
  background-attachment: fixed;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  clip-path: ellipse(120% 50% at 50% 50%);
  margin: 3rem 0;
}
#cta h2 {
  color: var(--color-white);
  font-size: 1.875em;
}
#cta .cta-buttons {
  margin: 3rem auto 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: stretch;
}
#cta .cta-buttons .button {
  flex: 1;
  min-width: 280px;
  display: flex;
}
#cta .cta-buttons .button a {
  width: 100%;
  background-color: var(--color-white);
  color: var(--color-primary);
  min-height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 0.875rem 1rem;
  box-sizing: border-box;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  gap: 0.25rem;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
#cta .cta-buttons .button a::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(29, 126, 191, 0.15);
  transform: translate(-50%, -50%);
  transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1), height 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 0;
}
#cta .cta-buttons .button a::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  pointer-events: none;
  z-index: 1;
  --c: var(--color-primary);
  background-image:
    linear-gradient(var(--c), var(--c)),
    linear-gradient(var(--c), var(--c)),
    linear-gradient(var(--c), var(--c)),
    linear-gradient(var(--c), var(--c));
  background-size: 0% 2px, 2px 0%, 0% 2px, 2px 0%;
  background-position: top left, top right, bottom right, bottom left;
  background-repeat: no-repeat;
  animation: cta-draw-border-reverse 0.4s ease forwards;
}
#cta .cta-buttons .button:last-child a::after {
  --c: var(--color-white);
}
@keyframes cta-draw-border {
  0%   { background-size: 0% 2px, 2px 0%, 0% 2px, 2px 0%; }
  25%  { background-size: 100% 2px, 2px 0%, 0% 2px, 2px 0%; }
  50%  { background-size: 100% 2px, 2px 100%, 0% 2px, 2px 0%; }
  75%  { background-size: 100% 2px, 2px 100%, 100% 2px, 2px 0%; }
  100% { background-size: 100% 2px, 2px 100%, 100% 2px, 2px 100%; }
}
@keyframes cta-draw-border-reverse {
  0%   { background-size: 100% 2px, 2px 100%, 100% 2px, 2px 100%; }
  25%  { background-size: 100% 2px, 2px 100%, 100% 2px, 2px 0%; }
  50%  { background-size: 100% 2px, 2px 100%, 0% 2px, 2px 0%; }
  75%  { background-size: 100% 2px, 2px 0%, 0% 2px, 2px 0%; }
  100% { background-size: 0% 2px, 2px 0%, 0% 2px, 2px 0%; }
}
#cta .cta-buttons .button a p,
#cta .cta-buttons .button a span {
  position: relative;
  z-index: 1;
}
#cta .cta-buttons .button a p {
  margin: 0;
  padding: 0;
  line-height: 1.3;
}
#cta .cta-buttons .button a p:first-child {
  font-size: 1.0625rem;
  font-weight: 700;
}
#cta .cta-buttons .button a p small {
  font-size: 1em;
  font-weight: 700;
}
#cta .cta-buttons .button a .tel-time {
  font-size: 0.6875rem;
  color: var(--color-gray-600);
  font-weight: 400;
  letter-spacing: 0.02em;
}
#cta .cta-buttons .button a span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.4;
}
#cta .cta-buttons .button a span i {
  font-size: 1.0625rem;
}
#cta .cta-buttons .button:last-child a {
  background: var(--color-primary);
  color: var(--color-white);
}
#cta .cta-buttons .button:last-child a::before {
  background: rgba(255, 255, 255, 0.2);
}
#cta .cta-buttons .button a:active {
  transform: translateY(-1px) scale(1);
}

/* FAQ */
#faq .faq-contents {
  display: flex;
  flex-direction: column;
  gap: 0;
}
#faq .faq-contents dl {
  margin: 0;
  padding: 0;
}
#faq .faq-contents dl + dl {
  margin-top: 0;
}
#faq .faq-contents dl dt {
  background-color: var(--color-primary-pale2);
  color: var(--color-primary-dark);
  padding: 1rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
  user-select: none;
  gap: 1rem;
}
#faq .faq-contents dl dt .toggle-icon {
  width: 1rem;
  height: 1rem;
  position: relative;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
#faq .faq-contents dl dt .toggle-icon::before,
#faq .faq-contents dl dt .toggle-icon::after {
  content: '';
  position: absolute;
  background-color: currentColor;
  transition: all 0.3s ease;
}
#faq .faq-contents dl dt .toggle-icon::before {
  width: 100%;
  height: 2px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
#faq .faq-contents dl dt .toggle-icon::after {
  width: 2px;
  height: 100%;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
#faq .faq-contents dl dt.active .toggle-icon::after {
  transform: translateX(-50%) rotate(90deg);
  opacity: 0;
}
#faq .faq-contents dl dd {
  padding: 0 1rem;
  overflow: hidden;
  margin: 0;
  margin-bottom: 2rem;
}
#faq .faq-contents dl dd + dl {
  margin-top: 0;
}

/* Footer marquee */
.footer-next {
  position: relative;
  overflow: hidden;
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.footer-next-track {
  display: flex;
  width: max-content;
  will-change: transform;
  animation: footer-next-slide 80s linear infinite;
}
.footer-next-group {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex: 0 0 auto;
  padding-right: 1.25rem;
}
.footer-next-text {
  font-weight: 800;
  letter-spacing: 0.04em;
  font-size: clamp(4rem, 10vw, 10rem);
  line-height: 1;
  color: var(--color-primary);
  white-space: nowrap;
}

/* Footer */
footer {
  position: relative;
  background-color: var(--color-primary);
  color: var(--color-white);
  padding: 3rem 0;
}
footer::before {
  content: '';
  background-image: url('../images/middle-recruit/footer-paints.svg');
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: .5;
}
footer .wrapper {
  position: relative;
  z-index: 1;
}
footer .footer-logo a img {
  max-width: clamp(180px, 15vw, 240px);
}
footer .footer-desc {
  margin: 2rem 0;
}
footer .footer-desc p {
  font-size: 1rem;
  line-height: 1.25rem;
}
footer .footer-link-list {
  margin-left: 0;
}
footer .footer-link-list li {
  list-style: none;
}
footer .footer-link-list li a {
  position: relative;
  color: var(--color-white);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.4;
  transition: color 0.2s ease;
}
footer .footer-link-list li a:before {
  content: '';
  position: absolute;
  bottom: -6px;
  width: 100%;
  height: 1px;
  background-color: var(--color-white);
  transition: all .5s;
  transform: rotateY(90deg);
}
footer .buttons {
  flex-direction: column;
}
footer .buttons .button a {
  background-color: var(--color-secondary);
  transition: all 0.3s ease;
}
footer .buttons .button:nth-child(2) a {
  background-color: var(--color-white);
  color: var(--color-primary);
}
footer .copyright {
  font-size: .725rem;
  font-weight: bold;
  margin-top: 3rem;
}

/* Sticky CTA */
.sticky-cta {
  position: fixed;
  bottom: 1.5rem;
  right: 1rem;
  z-index: 999998;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.sticky-cta.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.sticky-cta a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.25rem;
  background-color: var(--color-secondary);
  color: var(--color-white);
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.875rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: background-color 0.2s ease, transform 0.2s ease;
}
.sticky-cta a:nth-child(2) {
  background-color: var(--color-primary);
}
.sticky-cta a i {
  font-size: 1.25rem;
}
.sticky-cta a p {
  margin: 0;
  white-space: nowrap;
}

/* For　Tablet */
@media (min-width: 768px) {
  /* Variables */
  :root {
    --font-size-default: 18px;
  }

  /* Main Visual */
  #main-visual .main-visual-image img.paints {
    width: 100%;
    left: 0;
  }

  /* Wrapper */
  .wrapper {
    padding: 0 3rem;
    width: 100%;
  }
}

/* For Desktop */
@media (min-width: 1025px) {
  /* Variables */
  :root {
    --font-size-default: 20px;
  }

  .images.paints-images.bottom {
    margin-bottom: 8rem;
  }

  /* Header */
  header .header-contents a {
    padding: 1rem;
  }
  header .header-contents a i[class|="lf21"] {
    font-size: 2rem;
    padding-bottom: .5rem;
  }
  header .header-contents a span {
    font-size: .85rem;
  }

  /* Main Visual */
  #main-visual {
    max-height: 100svh;
    align-items: flex-start;
  }
  #main-visual .wrapper {
    position: relative;
    height: -webkit-fill-available;
  }
  #main-visual .main-visual-catch {
    top: 7rem;
    right: 0;
  }
  #main-visual .main-visual-sub-catch {
    left: 0;
  }
  #main-visual .main-visual-sub-catch span {
    font-size: 1em;
    padding: 0.5rem 1rem;
  }
  #main-visual .main-visual-image {
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
  }
  #main-visual .main-visual-image img {
    bottom: 3rem;
  }
  #main-visual .main-visual-image img.paints {
    bottom: 7vh;
  }

  /* Wrapper */
  .wrapper {
    margin: 0 auto;
    padding: 0;
    max-width: 1280px;
  }

  /* Section */
  section {
    padding: 8rem 0;
  }

  /* Important */
  #important .important-contents {
    display: flex;
    flex-direction: row-reverse;
    align-items: flex-end;
    gap: 6rem;
  }
  #important .images {
    margin-bottom: -6rem;
  }

  /* Revive */
  #revive .revive-contents {
    display: grid;
    align-items: stretch;
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  #revive .revive-box {
    border: none;
    padding: 0;
  }

  #voices .voice-contents {
    gap: 5rem;
    grid-template-columns: 1fr;
  }

  /* Job Description */
  #job-description .job-description-list {
    gap: 2rem;
  }

  /* Salary */
  #salary .salary-contents {
    display: flex;
    align-items: flex-start;
    gap: 5rem;
  }

  /* Merit Demerit */
  #merit-demerit .merit-demerit-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  /* What Matters */
  #what-matters .images {
    position: relative;
    width: 60%;
    margin: -41vh 0 0 auto;
    z-index: -1;
  }

  /* CTA */
  #cta .cta-buttons .button a {
    gap: .5rem;
  }
  #cta .cta-buttons .button a span i {
    font-size: 1.75rem;
  }
  #cta .cta-buttons .button a span,
  #cta .cta-buttons .button a p:first-child {
    font-size: 1.5rem;
  }
  #cta .cta-buttons .button a .tel-time {
    font-size: 1rem;
  }

  /* Footer */
  footer::before {
    left: -25%;
    bottom: 25%;
    width: 125%;
    min-height: 100%;
  }
  footer .copyright {
    font-size: 1rem;
  }

  /* Sticky CTA */
  .sticky-cta a {
    font-size: 1rem;
  }

  /* Hover Animation */
  header .header-contents a:hover {
    background-color: var(--color-primary-pale);
  }
  header .header-contents a:nth-child(2):hover {
    background-color: var(--color-secondary-light);
  }
  .button.secondary a:hover {
    background-color: var(--color-secondary-pale);
    color: var(--color-secondary-dark);
  }
  .button.secondary a:hover p,
  .button.secondary a:hover i[class|="lf21"] {
    color: var(--color-secondary-dark);
  }
  .job-item a:hover .job-item-box-image img {
    transform: scale(1.025);
  }
  #cta .cta-buttons .button a:hover {
    outline: none;
  }
  #cta .cta-buttons .button a:hover::after {
    animation: cta-draw-border 0.4s ease forwards;
  }
  .sticky-cta a:hover {
    background-color: var(--color-secondary-light);
    transform: translateY(-2px);
  }
  .sticky-cta a:nth-child(2):hover {
    background-color: var(--color-primary-pale);
  }
  footer .footer-link-list li a:hover:before {
    transform: rotateY(0deg);
  }
  footer .buttons .button a:hover {
    background-color: var(--color-secondary-pale);
    color: var(--color-secondary-dark);
  }
  footer .buttons .button:nth-child(2) a:hover {
    background-color: var(--color-primary-pale);
    color: var(--color-primary-dark);
  }
}

/* Animation */
@keyframes footer-next-slide {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .footer-next-track {
    animation: none;
    transform: translateX(0);
  }
}