@import url("https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;500;700&family=Noto+Sans+JP:wght@400;500;700&family=Noto+Serif+JP:wght@400&display=swap");
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul, summary {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

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

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

a {
  text-decoration: none;
  transition: all 0.3s ease-out;
}

.pc {
  display: initial !important;
}

.sp {
  display: none !important;
}

@media (max-width: 767px) {
  .pc {
    display: none !important;
  }
  .sp {
    display: initial !important;
  }
}
:root {
  --primary: #7A2D32;
  --text: #1b1b1b;
  --cta-bg: #333333;
  --border-footer:#7A7A7A;
  --gray:#848484;
  --border:#CCCCCC;
  --bg-table:#F7F4EC;
  --bg-recruit: #F3F3F3;
  --bg-beige:#EFE8D9;
  --bg: #F5F5F5;
  --bg-pale: #eeeeee;
  --white: #fff;
  --marker:#eddd66;
}

.lower .header .inner {
  background: var(--white);
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
}

.header {
  width: 100%;
  padding: 10px;
  display: grid;
  place-items: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
}
@media (max-width: 1024px) {
  .header {
    position: fixed;
    padding: 0;
    top: 0 !important;
  }
}
.header.fixed .inner {
  background: var(--white);
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
}
.header .inner {
  transition: all 0.6s ease-out;
  border-radius: 10px;
  width: min(1280px, 90%);
  display: flex;
  align-items: center;
  padding: 0 clamp(16px, 3.3333333333vw, 40px);
  height: clamp(56px, 7.0833333333vw, 85px);
}
@media (max-width: 1024px) {
  .header .inner {
    box-shadow: none;
    padding: 0 16px;
    border-radius: 0;
    width: 100%;
  }
}

.site-logo {
  width: clamp(166px, 15.8333333333vw, 190px);
}

.gnav {
  margin-left: auto;
}
.gnav ul {
  display: flex;
}
.gnav ul li a {
  padding: 20px clamp(12px, 1.6666666667vw, 20px);
  font-size: clamp(0.875rem, 0.7321428571rem + 0.3571428571vw, 1rem);
  font-weight: 500;
  color: var(--text);
  white-space: nowrap;
  transition: all 0.3s ease-out;
}
.gnav ul li a:hover {
  color: var(--primary);
}
.gnav ul li a:hover > span::after {
  width: 100%;
}
.gnav ul li a > span {
  position: relative;
  padding-bottom: 8px;
}
.gnav ul li a > span::after {
  content: "";
  width: 0;
  height: 2px;
  background: var(--primary);
  position: absolute;
  bottom: 0;
  left: 0;
  transition: width 0.3s ease-out;
}
@media (max-width: 1024px) {
  .gnav {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.3s ease-out;
    margin-left: 0;
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100dvh;
    background: var(--text);
  }
  .gnav ul {
    flex-direction: column;
    height: 100%;
    justify-content: center;
    align-items: center;
  }
  .gnav ul li {
    -webkit-animation: navFadeIn 0.5s 0.5s ease-out forwards;
            animation: navFadeIn 0.5s 0.5s ease-out forwards;
    opacity: 0;
  }
  .gnav ul li:nth-child(1) {
    -webkit-animation-delay: 0ms;
            animation-delay: 0ms;
  }
  .gnav ul li:nth-child(2) {
    -webkit-animation-delay: 100ms;
            animation-delay: 100ms;
  }
  .gnav ul li:nth-child(3) {
    -webkit-animation-delay: 200ms;
            animation-delay: 200ms;
  }
  .gnav ul li:nth-child(4) {
    -webkit-animation-delay: 300ms;
            animation-delay: 300ms;
  }
  .gnav ul li:nth-child(5) {
    -webkit-animation-delay: 400ms;
            animation-delay: 400ms;
  }
  .gnav ul li:nth-child(6) {
    -webkit-animation-delay: 500ms;
            animation-delay: 500ms;
  }
  .gnav ul li:nth-child(7) {
    -webkit-animation-delay: 600ms;
            animation-delay: 600ms;
  }
  .gnav ul li:nth-child(8) {
    -webkit-animation-delay: 700ms;
            animation-delay: 700ms;
  }
  .gnav ul li a {
    display: block;
    padding: 1em;
    color: var(--white);
    font-size: 24px;
  }
}
@media (max-width: 1024px) {
  .gnav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
}

.toggle {
  display: none;
}
@media (max-width: 1024px) {
  .toggle {
    display: grid;
    place-items: center;
    width: 40px;
    aspect-ratio: 1;
    border-radius: 5px;
    background: var(--text);
    position: absolute;
    z-index: 99;
    top: 8px;
    right: 16px;
  }
  .toggle > span {
    width: 18px;
    height: 2px;
    border-radius: 2px;
    background: var(--white);
    position: relative;
  }
  .toggle > span::before, .toggle > span::after {
    content: "";
    width: 18px;
    height: 2px;
    border-radius: 2px;
    background: var(--white);
    position: absolute;
    left: 0;
    transition: all 0.3s ease-out;
  }
  .toggle > span::after {
    top: 6px;
  }
  .toggle > span::before {
    top: -6px;
  }
}
.toggle.is-active > span {
  background: transparent;
}
.toggle.is-active > span::after {
  top: 0;
  transform: rotate(45deg);
}
.toggle.is-active > span::before {
  top: 0;
  transform: rotate(-45deg);
}

.footer {
  background: var(--text);
  padding: clamp(48px, 6.6666666667vw, 80px) 0 clamp(24px, 3.3333333333vw, 40px);
  color: var(--white);
}
.footer > .inner {
  width: min(1200px, 90%);
  margin-inline: auto;
}
.footer > .inner .f-content {
  display: flex;
  gap: 1em;
  padding-bottom: clamp(24px, 3.3333333333vw, 40px);
}
@media (max-width: 767px) {
  .footer > .inner .f-content {
    flex-direction: column;
  }
}
.footer > .inner .f-content .info-area {
  width: 240px;
}
.footer > .inner .f-content .f-nav {
  width: 580px;
  margin-left: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 767px) {
  .footer > .inner .f-content .f-nav {
    width: 100%;
    margin-left: 0;
    grid-template-columns: 1fr;
  }
}
.footer > .inner .f-content .f-nav a {
  color: var(--white);
  padding: 1em 0;
  display: inline-block;
}
@media (max-width: 767px) {
  .footer > .inner .f-content .f-nav a {
    font-size: 1rem;
  }
}
.footer > .inner .f-content .f-nav a:hover {
  opacity: 0.7;
}
.footer > .inner .f-content-recruit {
  padding-bottom: clamp(24px, 3.3333333333vw, 40px);
}
.footer > .inner .f-content-recruit figure {
  width: clamp(150px, 20vw, 240px);
  margin-inline: auto;
}
.footer > .inner .f-bottom {
  border-top: 1px solid #999;
  padding-top: 16px;
  display: flex;
}
@media (max-width: 767px) {
  .footer > .inner .f-bottom {
    flex-direction: column;
    gap: 8px;
  }
}
.footer > .inner .f-bottom .sub-nav {
  display: flex;
  gap: 2em;
}
@media (max-width: 767px) {
  .footer > .inner .f-bottom .sub-nav {
    flex-direction: column;
    gap: 16px;
  }
}
.footer > .inner .f-bottom .sub-nav a {
  color: #999;
  font-size: 12px;
}
.footer > .inner .f-bottom .copyright {
  margin-left: auto;
  font-size: 12px;
  color: #999;
}
@media (max-width: 767px) {
  .footer > .inner .f-bottom .copyright {
    margin-left: 0;
    margin-top: 16px;
  }
}

h1.site-title {
  font-size: 0;
  visibility: hidden;
  opacity: 0;
  position: absolute;
  top: -1000px;
  left: -1000px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  pointer-events: none;
}

.catchcopy {
  font-size: clamp(1.375rem, -1.0535714286rem + 6.0714285714vw, 3.5rem);
  font-weight: 700;
  line-height: 1.6;
  color: var(--text);
  font-family: "Noto Sans JP", sans-serif;
  text-align: center;
}

.lower-catchcopy {
  font-size: clamp(2.5rem, -0.3571428571rem + 7.1428571429vw, 5rem);
  font-weight: 400;
  line-height: 1.3;
  color: var(--text);
  font-family: "Noto Serif JP", serif;
}

.page-title {
  font-size: clamp(1.75rem, 0.0357142857rem + 4.2857142857vw, 3.25rem);
  font-weight: 500;
  line-height: 1.6;
  color: var(--text);
  font-family: "Noto Sans JP", sans-serif;
}

.section-heading-l {
  font-size: clamp(1.25rem, -0.1785714286rem + 3.5714285714vw, 2.5rem);
  font-weight: 500;
  line-height: 1.4;
  color: var(--white);
  font-family: "Noto Sans JP", sans-serif;
}

.top-section-heading {
  font-size: clamp(1.125rem, 0.125rem + 2.5vw, 2rem);
  font-weight: 500;
  line-height: 1.6;
  color: var(--text);
  font-family: "Noto Sans JP", sans-serif;
}
.top-section-heading > span {
  color: var(--primary);
  font-size: clamp(0.75rem, 0.4642857143rem + 0.7142857143vw, 1rem);
  margin-left: 0.5em;
}
@media (max-width: 767px) {
  .top-section-heading > span {
    margin-left: 0;
  }
}
@media (max-width: 767px) {
  .top-section-heading {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
  }
}

.parts-heading-l {
  font-size: clamp(1.5rem, 0.9285714286rem + 1.4285714286vw, 2rem);
  font-weight: 500;
  line-height: 1.4;
  color: var(--text);
  font-family: "Noto Sans JP", sans-serif;
}

.parts-heading {
  font-size: clamp(1.5rem, 0.9285714286rem + 1.4285714286vw, 2rem);
  font-weight: 700;
  line-height: 1.6;
}

.card-heading {
  font-size: 1.25rem;
  line-height: 1.4;
  color: var(--text);
  font-family: "Noto Sans JP", sans-serif;
}

.lead {
  font-size: clamp(0.875rem, 0.4464285714rem + 1.0714285714vw, 1.25rem);
  line-height: 2.4;
  color: var(--text);
  text-align: center;
}
@media (max-width: 767px) {
  .lead {
    text-align: left;
  }
}

.text-l {
  font-size: clamp(1rem, 0.8571428571rem + 0.3571428571vw, 1.125rem);
  line-height: 1.8;
  color: var(--text);
}

.text {
  font-size: clamp(0.875rem, 0.7321428571rem + 0.3571428571vw, 1rem);
  line-height: 2;
  color: var(--text);
}

.note {
  font-size: clamp(0.75rem, 0.6071428571rem + 0.3571428571vw, 0.875rem);
  line-height: 1.6;
  color: var(--text);
}

.text-xs {
  font-size: clamp(0.625rem, 0.4821428571rem + 0.3571428571vw, 0.75rem);
  line-height: 1.5;
  color: var(--text);
}

.ff-en {
  font-family: "Barlow Condensed", sans-serif;
}

.ff-ja {
  font-family: "Noto Sans JP", sans-serif;
}

.ff-mincho {
  font-family: "Noto Serif JP", serif;
}

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

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

.t-center {
  text-align: center;
}

.t-right {
  text-align: right;
}

.bold {
  font-weight: 700;
}

.large {
  font-size: 1.5em;
}

.marker {
  background: linear-gradient(to top, var(--marker) 40%, transparent 40%);
}

.underline {
  text-decoration: underline;
  text-underline-offset: 0.1em;
}

.radius4 {
  border-radius: 4px;
}

.radius8 {
  border-radius: 8px;
}

.list-normal > li {
  position: relative;
  padding-left: 1em;
}
.list-normal > li::before {
  content: "";
  width: 1em;
  height: 1lh;
  background: radial-gradient(var(--text) 0.2em, transparent 0.2em) no-repeat center/1em 1em;
  position: absolute;
  inset: 0;
}
.list-normal > li:not(:first-of-type) {
  margin-top: 0.5em;
}

.list-square > li {
  position: relative;
  padding-left: 1em;
}
.list-square > li::before {
  content: "";
  width: 0.6em;
  aspect-ratio: 1;
  background: var(--primary);
  position: absolute;
  left: 0;
  top: calc(0.5lh - 0.3em);
}
.list-square > li:not(:first-of-type) {
  margin-top: 0.5em;
}

.list-triangle {
  position: relative;
  padding-left: 1.5em;
}
.list-triangle::before {
  content: "";
  width: 0.75em;
  height: 1em;
  background: currentColor;
  -webkit-clip-path: polygon(0 0, 100% 50%, 0 100%);
          clip-path: polygon(0 0, 100% 50%, 0 100%);
  position: absolute;
  left: 0;
  top: calc(0.5lh - 0.5em);
}

.link-text {
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 0.25em;
}

.link-text-outer {
  padding-right: 1.5em;
  position: relative;
}
.link-text-outer::after {
  content: "";
  width: 1em;
  aspect-ratio: 1;
  -webkit-mask: url(../images/icon-outer-link.svg) no-repeat center/contain;
          mask: url(../images/icon-outer-link.svg) no-repeat center/contain;
  background: var(--text);
  position: absolute;
  right: 0;
  top: calc(50% - 0.5em);
}

.btn {
  display: flex;
  padding: 0 24px;
  border: 1px solid var(--primary);
  background: var(--white);
  color: var(--primary);
  font-size: clamp(0.875rem, 0.7321428571rem + 0.3571428571vw, 1rem);
  font-weight: 700;
  line-height: 1.5;
  position: relative;
  width: clamp(200px, 20vw, 240px);
  height: clamp(44px, 4.6666666667vw, 56px);
  align-items: center;
  border-radius: 5px;
  transition: all 0.3s ease-out;
}
.btn::before {
  content: "";
  width: 16px;
  aspect-ratio: 16/13;
  -webkit-mask: url(../images/arrow.svg) no-repeat center/contain;
          mask: url(../images/arrow.svg) no-repeat center/contain;
  background: var(--primary);
  position: absolute;
  right: 32px;
  top: calc(50% - 6px);
  transition: all 0.3s ease-out;
}
.btn:hover {
  background: var(--primary);
  color: var(--white);
}
.btn:hover::before {
  background: var(--white);
  right: 24px;
}
.btn.btn-large {
  width: clamp(300px, 36.6666666667vw, 440px);
  height: clamp(56px, 6.6666666667vw, 80px);
}

.btn-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 1em;
}

a {
  position: relative;
}
a .text-wrap {
  display: block;
  height: 1lh;
  overflow: hidden;
}
a .text-wrap .text-in {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  line-height: 1.1;
  transition: all 0.3s ease-out;
}
a .text-wrap .text-in::after {
  content: attr(data-text);
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 100%;
}
a:hover .text-in {
  transform: translateY(-100%);
}
@media (max-width: 767px) {
  a:hover .text-in {
    transform: translateY(0);
  }
}

.sec {
  padding: clamp(2.25rem, -5.1785714286rem + 18.5714285714vw, 8.75rem) 0;
}
.sec .container {
  width: min(1200px, 90%);
  margin-inline: auto;
  position: relative;
  z-index: 1;
}
.sec.border-bottom {
  border-bottom: 1px solid var(--border);
}
.sec.pt0 {
  padding-top: 0;
}
.sec.pb0 {
  padding-bottom: 0;
}

.bg-white {
  background: var(--white);
}

.bg-orange {
  background: var(--primary-pale);
}

.w880 {
  width: min(880px, 100%);
  margin-inline: auto;
}

.w640 {
  width: min(640px, 100%);
  margin-inline: auto;
}

.full-width {
  margin-inline: calc(50% - 50vw);
}

.flex {
  display: flex;
}

.fl-wrap {
  flex-wrap: wrap;
}

.jc-center {
  justify-content: center;
}

.jc-right {
  justify-content: flex-end;
}

.al-center {
  align-items: center;
}

.grid {
  display: grid;
}
.grid.grid21 {
  grid-template-columns: 1fr 1fr;
  gap: clamp(1rem, -0.7142857143rem + 4.2857142857vw, 2.5rem);
}
@media (max-width: 767px) {
  .grid.grid21 {
    grid-template-columns: 1fr;
  }
}
.grid.grid31 {
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, -0.7142857143rem + 4.2857142857vw, 2.5rem);
}
@media (max-width: 767px) {
  .grid.grid31 {
    grid-template-columns: 1fr;
  }
}

.mt160 {
  margin-top: clamp(6rem, 1.4285714286rem + 11.4285714286vw, 10rem);
}

.mt120 {
  margin-top: clamp(5rem, 2.1428571429rem + 7.1428571429vw, 7.5rem);
}

.mt112 {
  margin-top: clamp(4rem, 0.5714285714rem + 8.5714285714vw, 7rem);
}

.mt96 {
  margin-top: clamp(3.5rem, 0.6428571429rem + 7.1428571429vw, 6rem);
}

.mt80 {
  margin-top: clamp(3rem, 0.7142857143rem + 5.7142857143vw, 5rem);
}

.mt64 {
  margin-top: clamp(2.5rem, 0.7857142857rem + 4.2857142857vw, 4rem);
}

.mt48 {
  margin-top: clamp(2rem, 0.8571428571rem + 2.8571428571vw, 3rem);
}

.mt40 {
  margin-top: clamp(1.5rem, 0.3571428571rem + 2.8571428571vw, 2.5rem);
}

.mt32 {
  margin-top: clamp(1.5rem, 0.9285714286rem + 1.4285714286vw, 2rem);
}

.mt24 {
  margin-top: clamp(1rem, 0.4285714286rem + 1.4285714286vw, 1.5rem);
}

.mt16 {
  margin-top: clamp(0.5rem, -0.0714285714rem + 1.4285714286vw, 1rem);
}

.mt8 {
  margin-top: clamp(0.25rem, -0.0357142857rem + 0.7142857143vw, 0.5rem);
}

.mt4 {
  margin-top: 4px;
}

.js-accordion {
  cursor: pointer;
}

.accordion-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: all 0.3s ease-out;
}
.accordion-content.open {
  grid-template-rows: 1fr;
}
.accordion-content > div {
  overflow: hidden;
}

.pagetop {
  color: var(--primary);
  cursor: pointer;
  position: fixed;
  bottom: 40px;
  right: 16px;
  transition: all 0.3s ease-out;
  writing-mode: vertical-rl;
  z-index: 10;
}
.pagetop:hover {
  letter-spacing: 0.2em;
}

.pc {
  display: initial !important;
}

.sp {
  display: none !important;
}

@media (max-width: 767px) {
  .pc {
    display: none !important;
  }
  .sp {
    display: initial !important;
  }
}
.aioseo-breadcrumbs {
  margin-top: 1em;
  padding: 8px 0;
  letter-spacing: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--text);
}
.aioseo-breadcrumbs .aioseo-breadcrumb {
  font-size: clamp(0.625rem, 0.4821428571rem + 0.3571428571vw, 0.75rem);
  background: var(--gray);
  border: 1px solid var(--black);
  border-radius: 20px;
  padding: 4px 8px;
  color: var(--white);
}
.aioseo-breadcrumbs .aioseo-breadcrumb:has(a) {
  background: var(--white);
  color: var(--text);
}
.aioseo-breadcrumbs a {
  color: var(--text-pale);
}
.aioseo-breadcrumbs br {
  display: none;
}

.copyright {
  font-size: clamp(0.625rem, 0.4821428571rem + 0.3571428571vw, 0.75rem);
}

@-webkit-keyframes navFadeIn {
  0% {
    opacity: 0;
    transform: translateX(-50px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes navFadeIn {
  0% {
    opacity: 0;
    transform: translateX(-50px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@-webkit-keyframes textRotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes textRotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.cartain {
  overflow: hidden;
  position: relative;
}
.cartain::before {
  content: "";
  width: 200%;
  height: 100%;
  background: #f5f5f5;
  position: absolute;
  top: 0;
  left: -100%;
  transition: all 1s ease-out;
  z-index: 10;
}
.cartain.is-active::before {
  transform: translateX(100%);
}

.fadeUp {
  opacity: 0;
  transform: translateY(48px);
  transition: all 0.8s ease-out;
}
.fadeUp.is-active {
  opacity: 1;
  transform: translateY(0);
}

html {
  width: 100%;
  height: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 130px;
  overflow-x: hidden;
}
html.lock {
  overflow: hidden;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: "Noto Sans JP", sans-serif;
  font-feature-settings: "palt" on;
  font-optical-sizing: auto;
  font-size: clamp(0.875rem, 0.7321428571rem + 0.3571428571vw, 1rem);
  font-weight: normal;
  line-height: 1.15;
  letter-spacing: 0.05em;
  width: 100%;
  height: 100%;
  overflow-x: clip;
}

.cta-circle {
  width: 180px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--cta-bg);
  position: fixed;
  top: calc(100dvh - 260px);
  right: 2%;
  z-index: 50;
  transition: all 0.3s ease-out;
}
.cta-circle a {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
}
.cta-circle a span {
  display: block;
  width: 36px;
  aspect-ratio: 1;
  -webkit-mask: url(../images/arrow.svg) no-repeat center/contain;
          mask: url(../images/arrow.svg) no-repeat center/contain;
  background: var(--white);
}
.cta-circle:hover {
  transform: scale(1.05);
}
.cta-circle::before {
  content: "";
  width: 92%;
  aspect-ratio: 1;
  background: url(../images/text-circle.webp) no-repeat center/contain;
  position: absolute;
  top: 4%;
  left: 4%;
  -webkit-animation: textRotate 15s linear infinite;
          animation: textRotate 15s linear infinite;
}
@media (max-width: 767px) {
  .cta-circle {
    display: none;
  }
}

.mv-wrap {
  position: relative;
  z-index: 2;
}
.mv-wrap .inner {
  overflow: hidden;
  height: 900px;
}
@media (min-width: 1900px) {
  .mv-wrap .inner {
    height: auto;
    aspect-ratio: 3840/1908;
  }
}
.mv-wrap .inner picture {
  height: 100%;
  width: 100%;
  display: block;
}
.mv-wrap .inner picture source, .mv-wrap .inner picture img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 1240px) {
  .mv-wrap .inner {
    height: 700px;
  }
}
@media (max-width: 1024px) {
  .mv-wrap .inner {
    height: 500px;
  }
}
@media (max-width: 767px) {
  .mv-wrap .inner {
    height: auto;
  }
}

.text-company {
  overflow: hidden;
  position: relative;
  margin-top: -80px;
  padding-top: 80px;
}
.text-company::before {
  content: "";
  width: 240px;
  height: 100%;
  background: url(../images/top-bg-text-vertical.webp) no-repeat top center/240px;
  position: absolute;
  top: clamp(200px, 30vw, 360px);
  left: calc(50% - 740px);
  opacity: 0.05;
  mix-blend-mode: exclusion;
  z-index: 1;
}
@media (max-width: 767px) {
  .text-company::before {
    display: none;
  }
}
.text-company::after {
  content: "";
  width: 240px;
  height: 100%;
  transform: rotate(180deg);
  background: url(../images/top-bg-text-vertical.webp) no-repeat bottom center/240px;
  position: absolute;
  top: 0;
  right: calc(50% - 740px);
  opacity: 0.05;
  mix-blend-mode: exclusion;
}
@media (max-width: 767px) {
  .text-company::after {
    display: none;
  }
}

.top-feature {
  position: relative;
  padding: clamp(4px, 3.6666666667vw, 44px) 0;
}
.top-feature::before {
  content: "";
  width: 60vw;
  height: 100%;
  background: var(--text);
  position: absolute;
  bottom: 0;
  left: 0;
}
@media (max-width: 767px) {
  .top-feature::before {
    width: 100vw;
    height: 80%;
  }
}

.top-feature-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(32px, 9vw, 108px);
}
@media (max-width: 767px) {
  .top-feature-wrap {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .top-feature-wrap figure {
    order: -1;
    margin-right: calc(50% - 50vw);
  }
}
@media (max-width: 767px) {
  .top-feature-wrap {
    padding-bottom: 40px;
  }
}

.top-service-box {
  background: var(--white);
  border-radius: 5px;
  padding: clamp(20px, 3.3333333333vw, 40px);
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.25);
  display: grid;
  grid-template-columns: 8fr 3fr;
  gap: 1em;
}
@media (max-width: 767px) {
  .top-service-box {
    grid-template-columns: 1fr;
  }
  .top-service-box figure {
    order: -1;
  }
}
.top-service-box > div {
  width: min(624px, 100%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.top-service-box .top-section-heading {
  align-items: flex-start;
}

.top-works-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(48px, 6vw, 72px);
}
@media (max-width: 767px) {
  .top-works-list {
    grid-template-columns: 1fr;
  }
}
.top-works-list figure {
  border-radius: 5px;
  overflow: hidden;
}
.top-works-list figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.3s ease-out;
}
.top-works-list li a {
  transition: all 0.3s ease-out;
}
.top-works-list li a:hover img {
  transform: scale(1.05);
}
.top-works-list li a:hover .card-heading, .top-works-list li a:hover .text {
  color: var(--primary);
}

.recruit-bnr {
  display: block;
  width: 100%;
  max-height: 640px;
  overflow: hidden;
  position: relative;
  z-index: 2;
  background: var(--text);
}
.recruit-bnr > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.3s ease-out;
}
.recruit-bnr .container {
  padding: clamp(80px, 12.5vw, 150px) 0 clamp(40px, 6.6666666667vw, 80px);
  width: min(1200px, 90%);
  margin-inline: auto;
  position: relative;
  z-index: 1;
}
.recruit-bnr .label {
  background: var(--primary);
  color: var(--white);
  font-size: clamp(1.75rem, -0.25rem + 5vw, 3.5rem);
  line-height: 1;
  font-weight: 700;
  padding: clamp(16px, 2vw, 24px);
  border-radius: 0 0 10px 10px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  font-family: "Barlow Condensed", sans-serif;
}
.recruit-bnr .link-text-wrap {
  display: flex;
  align-items: center;
  gap: 0.25em;
}
@media (max-width: 767px) {
  .recruit-bnr .link-text-wrap {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
}
.recruit-bnr .link-text-wrap .outer-link {
  width: clamp(64px, 6.6666666667vw, 80px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--white);
  position: relative;
  transition: all 0.3s ease-out;
}
.recruit-bnr .link-text-wrap .outer-link::after {
  content: "";
  width: 32px;
  aspect-ratio: 1;
  -webkit-mask: url(../images/icon-outer-link.svg) no-repeat center/contain;
          mask: url(../images/icon-outer-link.svg) no-repeat center/contain;
  background: var(--primary);
  position: absolute;
  top: calc(50% - 16px);
  left: calc(50% - 16px);
  transition: all 0.3s ease-out;
}
.recruit-bnr:hover > img {
  transform: scale(1.05);
  opacity: 0.7;
}
.recruit-bnr:hover .outer-link {
  background: var(--primary);
}
.recruit-bnr:hover .outer-link::after {
  background: var(--white);
}

.recruit-bnr-catch {
  font-size: clamp(1.5rem, 0.2142857143rem + 3.2142857143vw, 2.625rem);
  line-height: 1.3;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.1em;
}

.contact-bnr {
  display: flex;
  align-items: center;
  gap: 1em;
  width: min(1000px, 90%);
  margin-inline: auto;
  border-radius: 10px;
  background: #F3EBDC;
  padding: clamp(16px, 3.3333333333vw, 40px) clamp(16px, 5.3333333333vw, 64px);
  margin-bottom: clamp(48px, 6.6666666667vw, 80px);
}
@media (max-width: 767px) {
  .contact-bnr {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}
.contact-bnr > div {
  max-width: 500px;
}
.contact-bnr .contact-bnr-catch {
  font-size: clamp(1.125rem, 0.125rem + 2.5vw, 2rem);
  line-height: 1.4;
  font-weight: 700;
  color: var(--white);
  margin-bottom: clamp(24px, 0vw, 0px);
}
.contact-bnr .arrow-link {
  margin-left: auto;
  width: clamp(64px, 6.6666666667vw, 80px);
  aspect-ratio: 1;
  background: var(--white);
  border-radius: 50%;
  position: relative;
  transition: all 0.3s ease-out;
}
@media (max-width: 767px) {
  .contact-bnr .arrow-link {
    margin-left: 0;
  }
}
.contact-bnr .arrow-link::after {
  content: "";
  width: 32px;
  height: 32px;
  -webkit-mask: url(../images/arrow.svg) no-repeat center/contain;
          mask: url(../images/arrow.svg) no-repeat center/contain;
  background: var(--primary);
  position: absolute;
  top: calc(50% - 16px);
  left: calc(50% - 16px);
  transition: all 0.3s ease-out;
}
.contact-bnr:hover .arrow-link {
  background: var(--primary);
}
.contact-bnr:hover .arrow-link::after {
  background: var(--white);
}

.lower-main {
  padding-top: clamp(56px, 8.75vw, 105px);
  padding-bottom: clamp(56px, 6.6666666667vw, 80px);
}

.page-title-wrap {
  padding-top: clamp(40px, 5vw, 60px);
  width: min(1200px, 90%);
  margin-inline: auto;
}

.title-bottom-wrap {
  display: flex;
  justify-content: space-between;
  padding-bottom: clamp(8px, 2vw, 24px);
  border-bottom: 3px solid var(--border);
  position: relative;
}
@media (max-width: 767px) {
  .title-bottom-wrap {
    flex-direction: column;
    gap: 0.25em;
  }
}
.title-bottom-wrap::before {
  content: "";
  width: clamp(100px, 16.6666666667vw, 200px);
  height: 3px;
  background: var(--primary);
  position: absolute;
  bottom: -3px;
  left: 0;
}
.title-bottom-wrap .sub-title {
  font-size: clamp(0.75rem, 0.3214285714rem + 1.0714285714vw, 1.125rem);
  color: var(--gray);
  font-family: "Noto Serif JP", serif;
  padding-left: 1em;
  position: relative;
}
.title-bottom-wrap .sub-title::before {
  content: "";
  width: 0.6em;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--primary);
  position: absolute;
  top: calc(0.5lh - 0.3em);
  left: 0;
}

.breadcrumb-wrap {
  display: flex;
  gap: 0.5em;
}
.breadcrumb-wrap > li {
  font-size: clamp(0.625rem, 0.4821428571rem + 0.3571428571vw, 0.75rem);
  color: var(--text);
}
.breadcrumb-wrap > li a {
  color: var(--gray);
}
.breadcrumb-wrap > li a:hover {
  text-decoration: underline;
}
.breadcrumb-wrap > li:not(:first-child)::before {
  content: ">";
  margin-right: 0.5em;
  color: var(--gray);
}
@media (max-width: 767px) {
  .breadcrumb-wrap {
    margin-left: auto;
  }
}

.lower-container {
  width: min(1200px, 90%);
  margin-inline: auto;
}

.lower-sec {
  padding: clamp(48px, 6.6666666667vw, 80px) 0;
}
.lower-sec .container {
  width: min(1200px, 90%);
  margin-inline: auto;
}

.feature-lead-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 767px) {
  .feature-lead-wrap {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
.feature-lead-wrap .feature-catch {
  font-size: clamp(2.8125rem, 0.3125rem + 6.25vw, 5rem);
  font-family: "Noto Serif JP", serif;
  line-height: 1.3;
}
.feature-lead-wrap .feature-catch-eng {
  margin-top: clamp(10px, 1.6666666667vw, 20px);
  font-size: clamp(0.75rem, 0.6071428571rem + 0.3571428571vw, 0.875rem);
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0.05em;
  color: var(--gray);
}
.feature-lead-wrap .feature-lead {
  font-size: clamp(1rem, 0.7142857143rem + 0.7142857143vw, 1.25rem);
  line-height: 2.6;
  padding-left: clamp(0px, 6.6666666667vw, 80px);
}
@media (max-width: 767px) {
  .feature-lead-wrap .feature-lead {
    padding-left: 0;
    line-height: 2;
  }
}

.feature-list-wrap {
  display: flex;
  flex-direction: column;
  gap: clamp(80px, 13.3333333333vw, 160px);
}
.feature-list-wrap > li {
  display: flex;
  gap: clamp(32px, 10.5vw, 126px);
}
.feature-list-wrap > li:nth-of-type(even) {
  flex-direction: row-reverse;
}
@media (max-width: 767px) {
  .feature-list-wrap > li:nth-of-type(even) {
    flex-direction: column;
  }
}
.feature-list-wrap > li:nth-of-type(even) > figure {
  margin-left: 0;
  margin-right: calc(50% - 50vw);
}
@media (max-width: 767px) {
  .feature-list-wrap > li:nth-of-type(even) > figure {
    margin-right: 0;
  }
}
@media (max-width: 767px) {
  .feature-list-wrap > li {
    flex-direction: column;
  }
}
.feature-list-wrap > li > figure {
  display: block;
  width: 50vw;
  margin-left: calc(50% - 50vw);
  height: 550px;
  overflow: hidden;
}
@media (max-width: 1024px) {
  .feature-list-wrap > li > figure {
    height: auto;
  }
}
@media (max-width: 767px) {
  .feature-list-wrap > li > figure {
    width: 100%;
    margin-left: 0;
    height: 200px;
  }
}
.feature-list-wrap > li > figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.feature-list-wrap > li > div {
  flex: 1;
  padding-top: clamp(32px, 6.6666666667vw, 80px);
  position: relative;
}
.feature-list-wrap > li > div::before {
  content: "";
  width: clamp(60px, 10vw, 120px);
  height: 4px;
  background: var(--primary);
  position: absolute;
  top: 0;
  left: 0;
}

.company-info-wrap {
  display: grid;
  grid-template-columns: 280px 1fr;
}
.company-info-wrap:not(:last-of-type) {
  border-bottom: 2px solid var(--border);
}
@media (max-width: 767px) {
  .company-info-wrap {
    grid-template-columns: 1fr;
  }
}
.company-info-wrap .info-list {
  display: grid;
  grid-template-columns: 240fr 634fr;
  align-items: center;
  padding: clamp(16px, 4vw, 48px) 0;
}
@media (max-width: 767px) {
  .company-info-wrap .info-list {
    padding: 16px 0;
  }
}
.company-info-wrap .info-list:not(:first-of-type) {
  border-top: 1px solid var(--border);
}
.company-info-wrap .info-list:first-of-type {
  padding-top: clamp(4px, 0.6666666667vw, 8px);
}
@media (max-width: 767px) {
  .company-info-wrap .info-list:first-of-type {
    padding-top: 16px;
  }
}

.company-heading {
  font-size: clamp(1.25rem, 0.3928571429rem + 2.1428571429vw, 2rem);
  font-weight: 700;
}
@media (max-width: 767px) {
  .company-heading {
    padding-bottom: 0.5em;
    border-bottom: 2px solid var(--border);
  }
}

.rinen-heading {
  font-size: clamp(1.125rem, 0.6964285714rem + 1.0714285714vw, 1.5rem);
  font-weight: 700;
  color: var(--primary);
}

.rinen-text {
  font-size: clamp(1rem, 0.7142857143rem + 0.7142857143vw, 1.25rem);
  line-height: 1.8;
}

.info-heading {
  font-size: clamp(0.875rem, 0.7321428571rem + 0.3571428571vw, 1rem);
  line-height: 2;
  font-weight: 500;
}

.info-text {
  font-size: clamp(0.875rem, 0.7321428571rem + 0.3571428571vw, 1rem);
  line-height: 2;
}
.info-text.name {
  line-height: 1;
}
.info-text.name span {
  font-size: 10px;
}

.bdr-btm {
  border-bottom: 1px solid var(--border);
}

@media (max-width: 767px) {
  .access-info {
    padding-top: 16px;
  }
}
.technology-list-wrap {
  display: flex;
  flex-direction: column;
  gap: clamp(24px, 5.3333333333vw, 64px);
}
.technology-list-wrap > li {
  background: var(--white);
  padding: clamp(16px, 3.3333333333vw, 40px);
  border-radius: 5px;
  display: grid;
  grid-template-columns: 455fr 585fr;
  align-items: center;
  gap: clamp(16px, 6.6666666667vw, 80px);
}
@media (max-width: 767px) {
  .technology-list-wrap > li {
    grid-template-columns: 1fr;
  }
}

.tech-heading {
  font-size: clamp(1.5rem, 0.9285714286rem + 1.4285714286vw, 2rem);
  font-weight: 700;
  line-height: 1.6;
}

.works-wrap {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 24px;
}
@media (max-width: 1024px) {
  .works-wrap {
    display: block;
  }
}
.works-wrap .sidebar {
  position: relative;
  height: 100%;
}
@media (max-width: 1024px) {
  .works-wrap .sidebar {
    display: none;
  }
}
.works-wrap .sidebar .works-list-nav {
  position: -webkit-sticky;
  position: sticky;
  top: 120px;
  left: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1em;
}
.works-wrap .sidebar .works-list-nav li .list-item {
  font-size: clamp(1rem, 0.8571428571rem + 0.3571428571vw, 1.125rem);
  font-weight: 500;
  position: relative;
  padding-left: 1em;
  margin-bottom: 0.5em;
}
.works-wrap .sidebar .works-list-nav li .list-item::before {
  content: "";
  width: 0.6em;
  aspect-ratio: 1;
  background: var(--primary);
  position: absolute;
  top: calc(0.5lh - 0.3em);
  left: 0;
  transition: all 0.3s ease-out;
}
.works-wrap .sidebar .works-list-nav li a {
  display: block;
  padding: clamp(8px, 1vw, 12px) 1rem;
  border-radius: 5px;
  transition: all 0.3s ease-out;
  color: var(--text);
}
.works-wrap .sidebar .works-list-nav li a:hover, .works-wrap .sidebar .works-list-nav li a.active, .works-wrap .sidebar .works-list-nav li a.is-active {
  background: var(--primary);
  color: var(--white);
}
.works-wrap .sidebar .works-list-nav li a:hover .list-item::before, .works-wrap .sidebar .works-list-nav li a.active .list-item::before, .works-wrap .sidebar .works-list-nav li a.is-active .list-item::before {
  background: var(--white);
}
.works-wrap .sidebar .works-list-nav li a .item-detail {
  font-size: clamp(0.75rem, 0.6071428571rem + 0.3571428571vw, 0.875rem);
  line-height: 1.6;
}

.works-heading {
  font-size: clamp(1.5rem, 0.9285714286rem + 1.4285714286vw, 2rem);
  font-weight: 700;
  padding-left: 1em;
  position: relative;
}
.works-heading::before {
  content: "";
  width: 0.6em;
  aspect-ratio: 1;
  background: var(--primary);
  position: absolute;
  top: calc(0.5lh - 0.3em);
  left: 0;
  transition: all 0.3s ease-out;
}

.works-card {
  margin-top: clamp(24px, 3.3333333333vw, 40px);
}
.works-card .card-img {
  width: 100%;
  aspect-ratio: 90/42;
  overflow: hidden;
  position: relative;
}
@media (max-width: 767px) {
  .works-card .card-img {
    aspect-ratio: 3/2;
  }
}
.works-card .card-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.works-card .card-img .title-box {
  position: absolute;
  top: 50%;
  left: 40px;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.6);
  padding: clamp(16px, 2.6666666667vw, 32px);
}
@media (max-width: 767px) {
  .works-card .card-img .title-box {
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
  }
  .works-card .card-img .title-box .text-l {
    font-size: 14px;
  }
}
.works-card .card-img .title-box .case-title {
  margin-top: 4px;
  color: var(--white);
  font-size: clamp(1.125rem, 0.4107142857rem + 1.7857142857vw, 1.75rem);
  font-weight: 700;
  line-height: 1.4;
  padding: 0.5em;
  border-top: 2px solid var(--white);
  border-bottom: 2px solid var(--white);
}
.works-card .card-detail {
  background: var(--white);
  padding: clamp(32px, 5.3333333333vw, 64px) clamp(16px, 2.6666666667vw, 32px);
}
.works-card .card-detail .detail-list {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: clamp(16px, 2vw, 24px);
  border-bottom: 1px solid var(--border);
  padding-bottom: 24px;
  margin-bottom: 24px;
}
@media (max-width: 767px) {
  .works-card .card-detail .detail-list {
    grid-template-columns: 1fr;
  }
}
.works-card .card-detail .detail-list:last-of-type {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.works-card .card-detail .detail-list .list-title {
  font-size: clamp(1rem, 0.7142857143rem + 0.7142857143vw, 1.25rem);
  font-weight: 700;
  line-height: 1.4;
}
.works-card .card-detail .detail-list .list-heading {
  font-size: clamp(1rem, 0.7142857143rem + 0.7142857143vw, 1.25rem);
  font-weight: 500;
  line-height: 1.4;
}
.works-card .card-detail .detail-list .result {
  background: var(--bg-beige);
  text-align: center;
  padding: 1em;
  color: var(--primary);
  font-size: clamp(1rem, 0.7142857143rem + 0.7142857143vw, 1.25rem);
}
.works-card .card-detail .detail-list .plan-list {
  display: flex;
  gap: 0 0.5em;
}
.works-card .card-detail .detail-list .plan-list li {
  font-size: clamp(0.875rem, 0.7321428571rem + 0.3571428571vw, 1rem);
}
.works-card .card-detail .detail-list .plan-list li:not(:first-of-type) {
  position: relative;
  padding-left: 1em;
}
.works-card .card-detail .detail-list .plan-list li:not(:first-of-type)::before {
  content: "";
  width: 0.7em;
  height: 1em;
  background: var(--primary);
  -webkit-clip-path: polygon(0 0, 100% 50%, 0 100%);
          clip-path: polygon(0 0, 100% 50%, 0 100%);
  position: absolute;
  top: calc(0.5lh - 0.5em);
  left: 0;
}
.works-card .card-detail .detail-list .plan-item {
  padding: 0.5em 1em;
  background: #ddd;
  border-radius: 3px;
  margin-right: 0.6em;
}
.works-card .card-detail .detail-list .plan-item + .text {
  width: 5.5em;
}

.arrow-bottom-primary {
  width: 50px;
  aspect-ratio: 5/2;
  background: var(--primary);
  -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
          clip-path: polygon(0 0, 100% 0, 50% 100%);
  margin-inline: auto;
}

.bdr-top {
  border-top: 1px solid var(--border);
}

.pt24 {
  padding-top: 24px;
}

.policy-text-list {
  display: flex;
  flex-direction: column;
  gap: 1.25em;
  counter-reset: count;
}
.policy-text-list > li {
  padding-left: 1.25em;
  position: relative;
  counter-increment: count;
}
.policy-text-list > li::before {
  content: counter(count) ".";
  position: absolute;
  left: 0;
  top: 0;
}

.recruit-page-wrap {
  display: grid;
  grid-template-columns: 290px 1fr;
}
@media (max-width: 1024px) {
  .recruit-page-wrap {
    grid-template-columns: 1fr;
  }
}

.header-recruit {
  width: 100%;
  height: 100%;
  padding: 16px 24px;
  position: relative;
}
@media (max-width: 767px) {
  .header-recruit {
    background: var(--white);
    height: 64px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
  }
}
.header-recruit .inner {
  width: 100%;
  height: auto;
  position: -webkit-sticky;
  position: sticky;
  top: 16px;
  left: 0;
  z-index: 99;
}
@media (max-width: 767px) {
  .header-recruit .inner {
    position: static;
  }
}
.header-recruit .inner .site-logo {
  width: clamp(150px, 18.3333333333vw, 220px);
  margin-bottom: 24px;
  position: relative;
  z-index: 99;
}
.header-recruit .inner .page-title-s {
  width: clamp(150px, 18.3333333333vw, 220px);
  border: 1px solid var(--text);
  text-align: center;
  padding: 0.5em clamp(8px, 1.3333333333vw, 16px);
}
@media (max-width: 767px) {
  .header-recruit .inner .page-title-s {
    display: none;
  }
}

.gnav.gnav-recruit {
  width: 220px;
  margin-left: 0;
  margin-top: clamp(4px, 4vw, 48px);
  position: relative;
}
.gnav.gnav-recruit ul {
  display: flex;
  flex-direction: column;
  gap: 1em;
}
.gnav.gnav-recruit ul a {
  display: block;
  padding: 0.25em 0;
  position: relative;
}
.gnav.gnav-recruit ul a::after {
  content: "";
  width: 0.8em;
  aspect-ratio: 1;
  -webkit-mask: url(../images/recruit-nav-arrow.svg) no-repeat center/contain;
          mask: url(../images/recruit-nav-arrow.svg) no-repeat center/contain;
  background: var(--text);
  position: absolute;
  top: calc(0.5lh - 0.4em);
  right: 0;
  transition: all 0.3s ease-out;
}
.gnav.gnav-recruit ul a span {
  padding-left: 1em;
  display: block;
  line-height: 1;
  position: relative;
  transition: all 0.3s ease-out;
}
.gnav.gnav-recruit ul a span::before {
  content: "";
  width: 0.8em;
  aspect-ratio: 1;
  background: var(--primary);
  position: absolute;
  top: calc(0.5lh - 0.4em);
  left: 0;
  transition: all 0.3s ease-out;
}
.gnav.gnav-recruit ul a:hover span {
  padding-left: 1.5em;
}
.gnav.gnav-recruit ul a:hover span::before {
  left: 0.5em;
}
.gnav.gnav-recruit ul a:hover::after {
  background: var(--primary);
}
@media (max-width: 1024px) {
  .gnav.gnav-recruit {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    margin: 0;
    width: 100%;
    height: 100dvh;
    position: absolute;
    inset: 0;
    padding: 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    background: var(--white);
  }
  .gnav.gnav-recruit.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
  }
  .gnav.gnav-recruit > ul {
    width: 100%;
    height: auto;
    align-items: flex-start;
    justify-content: flex-start;
    margin-top: 80px;
  }
  .gnav.gnav-recruit > ul li {
    width: 100%;
  }
  .gnav.gnav-recruit > ul a {
    display: block;
    font-size: 18px;
    color: var(--text);
  }
  .gnav.gnav-recruit > ul a:after {
    background: var(--white);
  }
}

@media (max-width: 1024px) {
  .header-recruit .toggle {
    background: var(--primary);
  }
}
@media (max-width: 1024px) {
  .recruit-entry-circle-wrap {
    display: none;
  }
}

.btn-entry-bnr-wrap {
  display: none;
}
@media (max-width: 1024px) {
  .btn-entry-bnr-wrap {
    display: block;
    width: 100%;
  }
  .btn-entry-bnr-wrap .btn-entry-bnr {
    width: 100%;
    padding: clamp(16px, 3.3333333333vw, 40px) clamp(24px, 3.3333333333vw, 40px);
    margin-top: 80px;
  }
}

.recruit-entry-circle {
  width: 140px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--primary);
  margin-top: 48px;
  border: 2px solid var(--primary);
  display: grid;
  place-items: center;
}
.recruit-entry-circle > span {
  position: relative;
  text-align: center;
  color: var(--white);
  font-size: 18px;
  font-weight: 500;
  padding-top: 48px;
}
.recruit-entry-circle > span::before {
  content: "";
  width: 40px;
  aspect-ratio: 1;
  -webkit-mask: url(../images/icon-doc.svg) no-repeat center/contain;
          mask: url(../images/icon-doc.svg) no-repeat center/contain;
  background: var(--white);
  position: absolute;
  top: 0;
  left: calc(50% - 20px);
  transition: all 0.3s ease-out;
}
.recruit-entry-circle:hover {
  background: var(--white);
}
.recruit-entry-circle:hover span {
  color: var(--primary);
}
.recruit-entry-circle:hover span::before {
  background: var(--primary);
}

.main-recruit {
  padding-bottom: clamp(40px, 6.6666666667vw, 80px);
}
@media (max-width: 767px) {
  .main-recruit {
    padding-top: 64px;
  }
}

.btn-entry-bnr {
  display: flex;
  align-items: center;
  width: min(900px, 90%);
  margin-inline: auto;
  gap: 1em;
  background: var(--primary);
  border: 2px solid var(--primary);
  border-radius: 10px;
  padding: clamp(25px, 4.6666666667vw, 56px) clamp(32px, 5.3333333333vw, 64px);
  color: var(--white);
}
.btn-entry-bnr > div {
  display: flex;
  align-items: center;
  gap: 1em;
}
@media (max-width: 767px) {
  .btn-entry-bnr > div {
    flex-direction: column;
    gap: 0;
    align-items: flex-start;
  }
}
.btn-entry-bnr .entry-text {
  font-size: clamp(2.8125rem, -0.4017857143rem + 8.0357142857vw, 5.625rem);
  font-weight: 600;
}
.btn-entry-bnr .icon-outer {
  margin-left: auto;
  width: clamp(48px, 6.6666666667vw, 80px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--white);
  position: relative;
}
.btn-entry-bnr .icon-outer::after {
  content: "";
  width: clamp(20px, 2.6666666667vw, 32px);
  aspect-ratio: 1;
  -webkit-mask: url(../images/icon-outer-link.svg) no-repeat center/contain;
          mask: url(../images/icon-outer-link.svg) no-repeat center/contain;
  background: var(--primary);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.btn-entry-bnr:hover {
  background: var(--white);
  color: var(--primary);
}
.btn-entry-bnr:hover .icon-outer {
  background: var(--primary);
}
.btn-entry-bnr:hover .icon-outer::after {
  background: var(--white);
}

.recruit-bottom-nav {
  margin-top: clamp(40px, 6.6666666667vw, 80px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  min-height: 300px;
  gap: 1px;
}
@media (max-width: 767px) {
  .recruit-bottom-nav {
    grid-template-columns: 1fr;
    height: auto;
  }
}
.recruit-bottom-nav > li {
  height: 100%;
}
.recruit-bottom-nav > li > a {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  background: var(--text);
}
.recruit-bottom-nav > li > a img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.3s ease-out;
}
.recruit-bottom-nav > li > a .text-box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.recruit-bottom-nav > li > a .text-box .label {
  text-align: center;
  color: var(--white);
  font-size: clamp(1.125rem, 0.6964285714rem + 1.0714285714vw, 1.5rem);
  font-weight: 500;
  line-height: 1.4;
}
.recruit-bottom-nav > li > a .text-box .link-arrow {
  width: 32px;
  aspect-ratio: 1;
  background: var(--white);
  border-radius: 50%;
  margin-top: 16px;
  margin-inline: auto;
  position: relative;
  transition: all 0.3s ease-out;
}
.recruit-bottom-nav > li > a .text-box .link-arrow::before {
  content: "";
  width: 12px;
  aspect-ratio: 1;
  -webkit-mask: url(../images/recruit-nav-arrow.svg) no-repeat center/contain;
          mask: url(../images/recruit-nav-arrow.svg) no-repeat center/contain;
  background: var(--primary);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease-out;
}
.recruit-bottom-nav > li > a:hover img {
  transform: scale(1.05);
  opacity: 0.7;
}
.recruit-bottom-nav > li > a:hover .link-arrow {
  background: var(--primary);
}
.recruit-bottom-nav > li > a:hover .link-arrow::before {
  background: var(--white);
}

.bnr-to-corporate {
  display: block;
  width: min(950px, 90%);
  margin: clamp(40px, 6.6666666667vw, 80px) auto;
}
.bnr-to-corporate:hover {
  opacity: 0.7;
}

.mv-recruit {
  width: 100%;
  height: 600px;
  background: url(../images/hero-recruit.webp) no-repeat center/cover;
  position: relative;
}
@media (max-width: 767px) {
  .mv-recruit {
    background: url(../images/hero-recruit-sp.webp) no-repeat center/cover;
  }
}
.mv-recruit.jobs {
  background: url(../images/job-hero.webp) no-repeat center/cover;
}
@media (max-width: 767px) {
  .mv-recruit.jobs {
    background: url(../images/job-hero-sp.webp) no-repeat center/cover;
  }
}
.mv-recruit.interview {
  background: url(../images/interview-hero.webp) no-repeat center/cover;
}
@media (max-width: 767px) {
  .mv-recruit.interview {
    background: url(../images/interview-hero-sp.webp) no-repeat center/cover;
  }
}
@media (max-width: 767px) {
  .mv-recruit {
    height: 300px;
  }
}
.mv-recruit .title-recruit {
  font-size: clamp(4.5rem, -4.6428571429rem + 22.8571428571vw, 12.5rem);
  color: var(--primary);
  font-weight: 700;
  font-family: "Barlow Condensed", sans-serif;
  line-height: 1;
  padding-left: 3vw;
}
.mv-recruit .title-recruit span {
  font-size: clamp(0.875rem, 0.7321428571rem + 0.3571428571vw, 1rem);
  display: block;
  margin-top: 4px;
  color: var(--text);
  padding-left: 0.5em;
  font-weight: 500;
}
@media (max-width: 767px) {
  .mv-recruit .title-recruit {
    position: absolute;
    top: 16px;
    left: 0;
  }
}

.recruit-content-wrap {
  width: min(940px, 90%);
  margin-inline: auto;
  margin-top: -150px;
  display: flex;
  flex-direction: column;
  gap: clamp(2px, 0.3333333333vw, 4px);
  position: relative;
}
@media (max-width: 767px) {
  .recruit-content-wrap {
    margin-top: -40px;
  }
}
.recruit-content-wrap .content {
  background: var(--white);
  padding: clamp(24px, 3.3333333333vw, 40px) clamp(16px, 3.3333333333vw, 40px);
  padding-bottom: clamp(32px, 5.3333333333vw, 64px);
}

.content-title {
  font-size: clamp(1.5rem, 0.3571428571rem + 2.8571428571vw, 2.5rem);
  font-weight: 700;
  line-height: 1.4;
  overflow: hidden;
}
.content-title span {
  position: relative;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
.content-title span::after {
  content: "";
  width: 940px;
  height: 60%;
  background: repeating-linear-gradient(110deg, transparent 0, transparent 11px, var(--primary) 11px, var(--primary) 16px);
  position: absolute;
  top: 20%;
  left: calc(100% + 0.5em);
}

.recruit-top-catch {
  font-size: clamp(2rem, 1.1428571429rem + 2.1428571429vw, 2.75rem);
  text-align: center;
  margin: 1.5em 0;
  line-height: 1.6;
  font-family: "Noto Serif JP", serif;
}

.career-heading {
  display: flex;
  align-items: center;
  margin-block: 2em;
}
.career-heading .text-eng {
  width: clamp(160px, 23.3333333333vw, 280px);
  margin-left: -8%;
  margin-right: -12%;
  margin-top: -3%;
}
@media (max-width: 767px) {
  .career-heading .text-eng {
    margin-top: -10%;
    margin-right: -50px;
  }
}
.career-heading .line {
  height: 1px;
  background: var(--border);
  flex: 1;
}
@media (max-width: 767px) {
  .career-heading .line {
    display: none;
  }
}
.career-heading > span {
  padding-left: 0.5em;
  font-size: clamp(1rem, 0.4285714286rem + 1.4285714286vw, 1.5rem);
  font-weight: 700;
}

.rec-part-heading {
  font-size: clamp(1.125rem, 0.6964285714rem + 1.0714285714vw, 1.5rem);
  padding-left: 0.5em;
  border-left: 4px solid var(--primary);
  line-height: 1.2;
}

.rec-card-heading {
  font-size: clamp(1rem, 0.7142857143rem + 0.7142857143vw, 1.25rem);
  text-align: center;
  margin-top: 1em;
}

.icon-m {
  width: 100px;
  margin-inline: auto;
}

.column-beige {
  background: #F8F4EB;
  padding: clamp(16px, 3.3333333333vw, 40px) clamp(16px, 5.3333333333vw, 64px);
}

.jobs-heading {
  font-size: clamp(1rem, 0.8571428571rem + 0.3571428571vw, 1.125rem);
  font-weight: 500;
  line-height: 1.4;
}
.jobs-heading.second {
  padding-left: 1em;
  position: relative;
}
.jobs-heading.second::before {
  content: "";
  width: 0.7em;
  aspect-ratio: 1;
  background: var(--primary);
  position: absolute;
  top: calc(0.5lh - 0.35em);
  left: 0;
}

.jobs-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: clamp(2px, 0.3333333333vw, 4px);
  margin-top: clamp(32px, 5.3333333333vw, 64px);
}
.jobs-table tr:nth-of-type(even) {
  background: #f8f8f8;
}
.jobs-table tr td {
  padding: clamp(16px, 2vw, 24px);
}
.jobs-table tr td:first-of-type {
  width: 220px;
  font-weight: 500;
  background: #F8F4EB;
}
@media (max-width: 767px) {
  .jobs-table tr {
    display: flex;
    flex-direction: column;
    width: 100%;
    background: transparent !important;
  }
  .jobs-table tr td {
    display: block;
    width: 100%;
  }
  .jobs-table tr td:first-of-type {
    width: 100%;
    border-top: 1px solid var(--border);
  }
  .jobs-table tr td:last-of-type {
    padding-inline: 0;
  }
}

.jobs-detail-list {
  display: grid;
  grid-template-columns: 160fr 384fr;
  border-bottom: 1px solid var(--border);
  padding-bottom: clamp(16px, 2.6666666667vw, 32px);
  margin-bottom: clamp(16px, 2.6666666667vw, 32px);
}
.jobs-detail-list:last-of-type {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
@media (max-width: 767px) {
  .jobs-detail-list dt .text {
    font-size: 13px;
    line-height: 1.4;
    padding-top: 0.3em;
  }
}

.detail-box .indent {
  padding-left: 1.75em;
}
@media (max-width: 767px) {
  .detail-box .indent {
    padding-left: 0;
  }
}

.talk-heading {
  font-size: clamp(1.5rem, 0.9285714286rem + 1.4285714286vw, 2rem);
  font-family: "Barlow Condensed", sans-serif;
  color: var(--primary);
  font-weight: 600;
  line-height: 1.3;
  text-align: center;
}

.talk-list-wrap .stuff {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5em;
}
.talk-list-wrap .chief {
  border-left: 1px solid var(--border);
  padding-left: clamp(16px, 2.6666666667vw, 32px);
}
.talk-list-wrap .card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.75em;
}
.talk-list-wrap .name {
  font-size: clamp(1rem, 0.7142857143rem + 0.7142857143vw, 1.25rem);
  font-weight: 500;
  margin-bottom: 0.25em;
}
.talk-list-wrap .age {
  font-size: clamp(0.6875rem, 0.6160714286rem + 0.1785714286vw, 0.75rem);
}

.talk-theme {
  display: grid;
  grid-template-columns: clamp(60px, 10.8333333333vw, 130px) 1fr;
  align-items: center;
  gap: clamp(16px, 2.6666666667vw, 32px);
}
.talk-theme .theme-number {
  padding-bottom: 2em;
}
@media (max-width: 767px) {
  .talk-theme .theme-number {
    padding-bottom: 1em;
  }
}
.talk-theme > p {
  font-size: clamp(1rem, 0.7142857143rem + 0.7142857143vw, 1.25rem);
  font-weight: 500;
  padding: clamp(8px, 1.3333333333vw, 16px) 1rem;
  border-top: 2px solid var(--gray);
  border-bottom: 2px solid var(--gray);
}

.theme-heading {
  font-size: clamp(1rem, 0.7142857143rem + 0.7142857143vw, 1.25rem);
  font-weight: 500;
  line-height: 1.6;
  padding-left: 3em;
  position: relative;
}
.theme-heading::before {
  content: "";
  width: 2em;
  height: 2px;
  background: var(--primary);
  position: absolute;
  top: calc(0.5lh - 1px);
  left: 0;
}

.talk-field-wrap {
  display: flex;
  flex-direction: column;
  gap: 2em;
}
.talk-field-wrap .talk-field {
  display: grid;
  grid-template-columns: clamp(48px, 4.5vw, 54px) 1fr;
  align-items: center;
  gap: clamp(16px, 2.6666666667vw, 32px);
}
/*# sourceMappingURL=style.css.map */