@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&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: #CC3300;
  --primary-hover: #FB5050;
  --accent:#FF6B35;
  --black:#252525;
  --text: #353535;
  --negative: #575757;
  --text-pale: #707070;
  --disabled:#959595;
  --border: #bbb;
  --cell: #eee;
  --marker: #ecd825;
  --bg: #F5F5F5;
  --white: #fff;
  --blue: #39B7A8;
}

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

.page-title {
  font-size: clamp(1.75rem, 1.1785714286rem + 1.4285714286vw, 2.25rem);
  font-weight: 700;
  line-height: 1.4;
  position: relative;
}
.page-title-sub {
  font-size: clamp(0.75rem, 0.6071428571rem + 0.3571428571vw, 0.875rem);
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  line-height: 1;
  position: relative;
  color: var(--primary);
}

.section-heading {
  font-size: clamp(2rem, 0.8571428571rem + 2.8571428571vw, 3rem);
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 0.75em;
  font-family: "Poppins", sans-serif;
  color: var(--text);
}
.section-heading > span {
  color: var(--primary);
  font-size: clamp(0.75rem, 0.6071428571rem + 0.3571428571vw, 0.875rem);
  display: block;
}

.parts-heading {
  font-size: clamp(1.375rem, 0.9464285714rem + 1.0714285714vw, 1.75rem);
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 0.75em;
  color: var(--text);
}

.parts-heading-s {
  font-size: clamp(1.25rem, 0.9642857143rem + 0.7142857143vw, 1.5rem);
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 0.75em;
  color: var(--text);
}

.card-heading {
  font-size: clamp(1.125rem, 0.9821428571rem + 0.3571428571vw, 1.25rem);
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 0.75em;
  color: var(--text);
}

.small-heading {
  font-size: clamp(0.875rem, 0.7321428571rem + 0.3571428571vw, 1rem);
  line-height: 1.5;
  margin-bottom: 0.5em;
  color: var(--text);
}

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

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

.note {
  font-size: clamp(0.75rem, 0.6071428571rem + 0.3571428571vw, 0.875rem);
  line-height: 1.6;
  color: var(--text);
}
.note-kome {
  position: relative;
  padding-left: 1em;
  text-indent: -1em;
}
.note-kome::before {
  content: "※";
}

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

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

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

.t-pale {
  color: var(--text-pale);
}

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

.bold {
  font-weight: 700;
}

.normal {
  font-weight: 400;
}

.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;
}

.ellipsis3 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

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

.list-normal {
  display: flex;
  flex-direction: column;
  gap: 0.5em;
}
.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-num {
  counter-reset: list-counter;
  display: flex;
  flex-direction: column;
  gap: 0.5em;
}
.list-num > li {
  position: relative;
  padding-left: 1em;
}
.list-num > li::before {
  counter-increment: list-counter;
  content: counter(list-counter) ". ";
  width: 1em;
  position: absolute;
  top: 0;
  left: 0;
}

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

.link-text-outside {
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 0.25em;
  padding-right: 1.25em;
  position: relative;
  display: inline-block;
}
.link-text-outside::after {
  content: "";
  width: 1em;
  height: 1lh;
  -webkit-mask: url(../images/icon/newtab.svg) no-repeat center/contain;
          mask: url(../images/icon/newtab.svg) no-repeat center/contain;
  background: var(--text-pale);
  position: absolute;
  margin-left: 0.2em;
}

.btn {
  border-radius: 99px;
  padding: 1em 2.5em 1em 1.5em;
  display: grid;
  place-items: center;
  line-height: 1;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  position: relative;
  letter-spacing: 0;
  font-family: "Poppins", "Noto Sans JP", sans-serif;
}
.btn:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.35);
}
.btn:hover::after {
  right: 0.25em;
}
.btn::after {
  content: "";
  width: 1em;
  aspect-ratio: 1;
  position: absolute;
  top: calc(50% - 0.5em);
  right: 0.75em;
  -webkit-mask: url(../images/icon/next.svg) center/contain no-repeat;
          mask: url(../images/icon/next.svg) center/contain no-repeat;
  background: var(--white);
  transition: all 0.3s ease-out;
}
.btn.btn-primary {
  background: var(--primary);
  border: 2px solid var(--primary);
  color: #fff;
  font-size: clamp(0.875rem, 0.7321428571rem + 0.3571428571vw, 1rem);
}
.btn.btn-primary:hover {
  background: var(--primary-hover);
  border-color: var(--primary-hover);
}
.btn.btn-blk {
  border: 1px solid var(--white);
  background: var(--black);
  color: #fff;
  font-size: clamp(0.875rem, 0.7321428571rem + 0.3571428571vw, 1rem);
  transition: all 0.3s ease-out;
}
.btn.btn-secondary {
  background: #fff;
  border: 1px solid var(--primary);
  color: var(--primary);
  font-size: clamp(0.875rem, 0.7321428571rem + 0.3571428571vw, 1rem);
}
.btn.btn-secondary::after {
  background: var(--primary);
}
.btn.btn-negative {
  background: var(--negative);
  color: var(--white);
  font-size: clamp(0.875rem, 0.7321428571rem + 0.3571428571vw, 1rem);
}
.btn.btn-negative:hover {
  background: var(--disabled);
}

.btn-entry {
  display: block;
  background: var(--white);
  color: var(--text);
  width: min(640px, 100%);
  padding: 1em;
  margin-inline: auto;
  text-align: center;
  font-size: clamp(1.25rem, 0.6785714286rem + 1.4285714286vw, 1.75rem);
  border: 1px solid var(--white);
  transition: all 0.3s ease-out;
}
.btn-entry span {
  padding-right: 1.5em;
  position: relative;
}
.btn-entry span::after {
  content: "";
  width: 1em;
  height: 1lh;
  -webkit-mask: url(../images/icon/newtab.svg) no-repeat center/contain;
          mask: url(../images/icon/newtab.svg) no-repeat center/contain;
  background: var(--text);
  position: absolute;
  margin-left: 0.2em;
}
.btn-entry:hover {
  background: var(--primary-hover);
  color: var(--white);
}
.btn-entry:hover span::after {
  background: var(--white);
}

a.maker-card-link {
  background: var(--primary);
  color: var(--white);
  padding: 1em;
  font-size: clamp(0.875rem, 0.7321428571rem + 0.3571428571vw, 1rem);
  line-height: 1.2;
  display: grid;
  place-items: center;
  border-radius: 4px;
}
a.maker-card-link .link-text-outside {
  text-decoration: none;
  color: var(--white);
}
a.maker-card-link .link-text-outside::after {
  background: var(--white);
}

.btn-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(16px, 2vw, 24px);
}

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

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

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

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

.l-container {
  display: grid;
  grid-template-columns: 1fr min(1200px, 100% - 48px) 1fr;
  padding: clamp(64px, 8vw, 96px) 0;
  position: relative;
}
.l-container.bg {
  background: var(--bg);
}
.l-container.bg-top-message {
  background: url(../images/bg-cross.png) repeat center/32px, var(--bg);
}
.l-container.bg-dotted {
  background: url(../images/bg-dots.svg) repeat center/16px;
}
.l-container > .inner {
  grid-column: 2/3;
}

.full-width {
  width: 100%;
  grid-column: 1/4;
}

.left-container {
  width: 100%;
  grid-column: 1/3;
}

.right-container {
  width: 100%;
  grid-column: 2/4;
}

.grid {
  display: grid;
  gap: clamp(24px, 3.3333333333vw, 40px) clamp(16px, 2vw, 24px);
}
.grid.grid21 {
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 767px) {
  .grid.grid21 {
    grid-template-columns: 1fr;
  }
}
.grid.grid31 {
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 767px) {
  .grid.grid31 {
    grid-template-columns: 1fr;
  }
}
.grid.grid42 {
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 767px) {
  .grid.grid42 {
    grid-template-columns: 1fr 1fr;
  }
}
.grid.grid41 {
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 767px) {
  .grid.grid41 {
    grid-template-columns: 1fr;
  }
}
.grid.grid12fr {
  grid-template-columns: 1fr 2fr;
}
@media (max-width: 767px) {
  .grid.grid12fr {
    grid-template-columns: 1fr;
  }
}
.grid.grid13fr {
  grid-template-columns: 1fr 3fr;
}
@media (max-width: 767px) {
  .grid.grid13fr {
    grid-template-columns: 1fr;
  }
}
.grid.grid21fr {
  grid-template-columns: 2fr 1fr;
}
@media (max-width: 767px) {
  .grid.grid21fr {
    grid-template-columns: 1fr;
  }
}
.grid.grid31fr {
  grid-template-columns: 3fr 1fr;
}
@media (max-width: 767px) {
  .grid.grid31fr {
    grid-template-columns: 1fr;
  }
}

.flex {
  display: flex;
}

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

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

.block-xl {
  margin-top: clamp(64px, 8vw, 96px);
}

.block-l {
  margin-top: clamp(48px, 5.3333333333vw, 64px);
}

.block-m {
  margin-top: clamp(36px, 4vw, 48px);
}

.mt48 {
  margin-top: clamp(32px, 4vw, 48px);
}

.mt32 {
  margin-top: clamp(16px, 2.6666666667vw, 32px);
}

.mt16 {
  margin-top: clamp(8px, 1.3333333333vw, 16px);
}

.mt8 {
  margin-top: clamp(4px, 0.6666666667vw, 8px);
}

.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 {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  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 {
  background: var(--white);
  padding: 8px clamp(16px, 2.6666666667vw, 32px);
  letter-spacing: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--text);
}
.aioseo-breadcrumbs span {
  font-size: clamp(0.625rem, 0.4821428571rem + 0.3571428571vw, 0.75rem);
}
.aioseo-breadcrumbs a {
  color: var(--text-pale);
}
.aioseo-breadcrumbs br {
  display: none;
}

.header {
  background: rgba(255, 255, 255, 0.9);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
  height: 80px;
}
@media (max-width: 1024px) {
  .header {
    height: 50px;
  }
}
.header .inner {
  width: 100%;
  padding-right: 1rem;
  display: flex;
  height: 100%;
  align-items: flex-start;
}
.header .site-logo {
  width: clamp(200px, 25vw, 300px);
  height: 100%;
  display: grid;
  place-items: center;
  padding-inline: clamp(10px, 2.6666666667vw, 32px);
  position: relative;
  z-index: 1;
}
.header .site-logo.lower {
  width: clamp(200px, 25vw, 300px);
  aspect-ratio: initial;
  height: 100%;
}
.header .site-logo > a {
  display: flex;
  align-items: center;
}
.header .site-logo > a > img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  align-items: flex-start;
}

.gnav-cta {
  position: fixed;
  right: 0;
  top: 160px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.gnav-cta .nav-item {
  writing-mode: vertical-lr;
  width: 50px;
  border: 1px solid var(--primary);
  border-right: 0;
  display: grid;
  place-items: center;
  padding: 1rem;
  letter-spacing: 0;
}
.gnav-cta .nav-item.nav-recruit {
  background: var(--white);
  color: var(--primary);
}
.gnav-cta .nav-item.nav-recruit:hover span::before {
  width: 0;
}
.gnav-cta .nav-item.nav-contact {
  background: var(--primary);
  color: var(--white);
}
.gnav-cta .nav-item.nav-contact:hover span::before {
  width: 0;
}

.gnav {
  margin-left: auto;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  height: 100%;
  display: flex;
  align-items: center;
}
.gnav .nav-item {
  display: grid;
  place-items: center;
  padding-inline: 1rem;
  color: var(--text);
}
@media (max-width: 767px) {
  .gnav .nav-item {
    color: var(--white);
  }
}
.gnav .nav-item span {
  position: relative;
  display: block;
}
.gnav .nav-item span::before {
  content: "";
  width: 0;
  height: 2px;
  background: var(--primary);
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.3s ease-out;
}
@media (max-width: 767px) {
  .gnav .nav-item span::before {
    display: none;
  }
}
.gnav .nav-item:hover span::before {
  width: 80%;
}
.gnav .nav-item.current span::before {
  width: 80%;
}

@media (max-width: 1024px) {
  .gnav {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    margin-left: 0;
    width: 100%;
    padding: 3rem 1rem 1rem;
    height: calc(100dvh - 50px);
    background: var(--black);
    position: absolute;
    top: 50px;
    left: 0;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease-out;
  }
  .gnav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
  }
  .gnav > a {
    width: min(480px, 100%);
    place-items: flex-start;
    padding: 1rem;
    font-size: 24px;
    color: var(--white);
    border-bottom: 1px dotted var(--disabled);
  }
  .gnav > a::before {
    display: none;
  }
  .gnav-cta {
    margin-top: auto;
    position: initial;
    display: flex;
    flex-direction: row;
    gap: 8px;
    width: min(480px, 100%);
    margin-inline: auto;
  }
  .gnav-cta .nav-item {
    writing-mode: initial;
    width: auto;
    flex: 1;
    display: block;
    border: 1px solid var(--primary);
    padding: 1rem;
    border-radius: 100px;
    text-align: center;
    font-size: 1.125rem;
  }
}
.toggle {
  display: none;
}
@media (max-width: 1024px) {
  .toggle {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    width: 32px;
    aspect-ratio: 1;
    cursor: pointer;
    display: grid;
    place-items: center;
  }
  .toggle span {
    width: 80%;
    height: 2px;
    background: var(--text);
    border-radius: 1px;
    position: relative;
    transition: all 0.3s ease-out;
  }
  .toggle span::before, .toggle span::after {
    content: "";
    width: 100%;
    height: 2px;
    border-radius: 1px;
    background: var(--text);
    position: absolute;
    transition: all 0.3s ease-out;
  }
  .toggle span::before {
    top: -6px;
    left: 0;
  }
  .toggle span::after {
    top: 6px;
    left: 0;
  }
  .toggle.is-active span {
    height: 0;
  }
  .toggle.is-active span::before, .toggle.is-active span::after {
    top: initial;
  }
  .toggle.is-active span::before {
    transform: rotate(45deg);
  }
  .toggle.is-active span::after {
    transform: rotate(-45deg);
  }
}

.f-cta-area {
  --text: #fff;
  background: url(../images/bg-cta.webp) no-repeat center left/cover;
  background: var(--black);
}
.f-cta-area .btn {
  font-size: 1.25em;
}
@media (max-width: 767px) {
  .f-cta-area .btn {
    font-size: 1em;
  }
}
.f-cta-area .btn > span {
  padding-left: 1.6em;
  position: relative;
}
.f-cta-area .btn > span::before {
  content: "";
  width: 1.5em;
  aspect-ratio: 1;
  background: url(../images/icon/quote.svg) no-repeat center/contain;
  position: absolute;
  left: 0;
  top: calc(50% - 0.75lh);
}
.f-cta-area .btn > span.contact::before {
  background: url(../images/icon/mail-w.svg) no-repeat center/contain;
}
.f-cta-area .tel {
  font-size: clamp(1.875rem, 1.4464285714rem + 1.0714285714vw, 2.25rem);
  color: var(--text);
  text-decoration: none;
}
.f-cta-area .tel > span {
  position: relative;
  padding-left: 36px;
}
.f-cta-area .tel > span::before {
  content: "";
  width: 32px;
  aspect-ratio: 1;
  background: url(../images/icon/phone.svg) no-repeat center/contain;
  position: absolute;
  left: 0;
  top: calc(50% - 16px);
}

.footer {
  padding: clamp(64px, 8vw, 96px) 0 clamp(32px, 4vw, 48px);
  background: var(--white);
}
.footer .container {
  width: min(1200px, 88%);
  margin-inline: auto;
}
.footer .container .f-content-wrap {
  display: grid;
  grid-template-columns: 1fr -webkit-max-content;
  grid-template-columns: 1fr max-content;
  padding-bottom: clamp(16px, 2.6666666667vw, 32px);
  border-bottom: 1px solid var(--border);
}
@media (max-width: 767px) {
  .footer .container .f-content-wrap {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}
.footer .container .f-content-wrap .f-logo {
  width: clamp(220px, 21.6666666667vw, 260px);
}
.footer .container .f-content-wrap .f-nav {
  display: grid;
  grid-template-columns: -webkit-max-content -webkit-max-content;
  grid-template-columns: max-content max-content;
  gap: 3em;
}
@media (max-width: 767px) {
  .footer .container .f-content-wrap .f-nav {
    grid-template-columns: 1fr 1fr;
    gap: 0;
  }
}
.footer .container .f-content-wrap .f-nav .f-gnav li + li,
.footer .container .f-content-wrap .f-nav .f-subnav li + li {
  margin-top: 1rem;
}
.footer .container .f-content-wrap .f-nav .f-gnav a,
.footer .container .f-content-wrap .f-nav .f-subnav a {
  color: var(--text);
  line-height: 1.8;
}
.footer .container .f-content-wrap .f-nav .f-gnav a:hover,
.footer .container .f-content-wrap .f-nav .f-subnav a:hover {
  opacity: 0.7;
}
.footer .container .f-content-wrap .f-nav .f-subnav {
  font-size: clamp(0.75rem, 0.6071428571rem + 0.3571428571vw, 0.875rem);
}
.footer .container .f-content-wrap .f-nav .f-subnav a {
  color: var(--text);
}

.fadein {
  opacity: 0;
  transform: scale(0.9);
  transition: all 0.8s ease-out;
}
.fadein.is-active {
  opacity: 1;
  transform: scale(1);
}

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

.cartain {
  overflow: hidden;
  position: relative;
}
.cartain::before {
  content: "";
  width: 200%;
  height: 100%;
  background: var(--cell);
  position: absolute;
  top: 0;
  left: -100%;
  transition: all 1s ease-out;
  z-index: 1;
}
.cartain.is-active::before {
  transform: translateX(100%);
}

.cartain-l::before {
  transform: translateX(-100%);
  transition: all 0.8s ease-out;
}
.cartain-l.is-active::before {
  transform: translateX(0%);
}

.cartain-r::before {
  transform: translateX(100%);
  transition: all 0.8s ease-out;
}
.cartain-r.is-active::before {
  transform: translateX(0%);
}

@media (max-width: 767px) {
  .scroll-hint {
    margin-right: calc(50% - 50vw);
    overflow-x: scroll;
    overflow-y: hidden;
    position: relative;
  }
  .scroll-hint::before {
    content: "scrollable →";
    width: 160px;
    font-family: "Noto Sans JP", sans-serif;
    aspect-ratio: 5/3;
    background: rgba(0, 0, 0, 0.4);
    color: var(--white);
    border-radius: 8px;
    display: grid;
    place-items: center;
    position: absolute;
    top: 50%;
    left: 50vw;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease-out;
  }
  .scroll-hint.hide::before {
    display: none;
  }
  .scroll-hint > * {
    width: 800px !important;
  }
}
.mt1em {
  margin-top: 1em;
}

.mt2em {
  margin-top: 2em;
}

.mt3em {
  margin-top: 3em;
}

.mt4em {
  margin-top: 4em;
}

.mt5em {
  margin-top: 5em;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}
html.lock {
  overflow: hidden;
}

body {
  height: 100%;
  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;
  letter-spacing: 0.1em;
  line-height: 1.15;
  padding-top: 80px;
  position: relative;
  overflow-x: hidden;
}
@media (max-width: 1024px) {
  body {
    padding-top: 50px;
  }
}

.mv-wrap {
  width: 100%;
  position: relative;
}
.mv-wrap .mv-image {
  width: 62.5%;
}
@media (max-width: 767px) {
  .mv-wrap .mv-image {
    width: 90%;
  }
}

.mv-catch-wrap {
  position: absolute;
  top: 50%;
  right: 4%;
  transform: translate(-2em, -50%);
}
@media (max-width: 767px) {
  .mv-catch-wrap {
    position: static;
    transform: translate(0, 0);
    padding: 0 16px;
    margin-top: -32px;
  }
}
.mv-catch-wrap .sub-catch {
  font-size: clamp(0.9375rem, 0.7232142857rem + 0.5357142857vw, 1.125rem);
  font-weight: 700;
  line-height: 1;
  color: var(--primary);
}
.mv-catch-wrap .main-catch {
  font-size: 6vw;
  font-weight: 700;
  line-height: 1.1;
  font-family: "Poppins", sans-serif;
  letter-spacing: 0;
}
@media (max-width: 767px) {
  .mv-catch-wrap .main-catch {
    font-size: 3rem;
  }
}

.title-circle {
  position: absolute;
  width: 150px;
  bottom: -75px;
  left: calc(62.5% - 75px);
  -webkit-animation: titleRotate 12s linear infinite;
          animation: titleRotate 12s linear infinite;
  z-index: 5;
}
@media (max-width: 767px) {
  .title-circle {
    width: 96px;
    bottom: 96px;
    right: -16px;
    left: initial;
  }
}

@-webkit-keyframes titleRotate {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes titleRotate {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
.scroll-movie {
  height: 180px;
  position: absolute;
  left: 40px;
  bottom: -90px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding-left: 4px;
}
@media (max-width: 1240px) {
  .scroll-movie {
    bottom: 16px;
  }
}
@media (max-width: 767px) {
  .scroll-movie {
    display: none;
  }
}
.scroll-movie::before {
  content: "";
  width: 1px;
  height: 180px;
  background: var(--primary);
  position: absolute;
  top: 0;
  left: 0;
  -webkit-animation: scrollBorder 2s linear infinite;
          animation: scrollBorder 2s linear infinite;
}
.scroll-movie span {
  font-family: "Poppins", sans-serif;
  writing-mode: vertical-lr;
  color: var(--primary);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0;
}

@-webkit-keyframes scrollBorder {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(100%);
  }
}

@keyframes scrollBorder {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(100%);
  }
}
.splide__list {
  width: 100%;
}

.splide__slide {
  width: 100%;
  aspect-ratio: 5/3;
  overflow: hidden;
}
.splide__slide.is-active img {
  -webkit-animation: mvZoom 6s ease-out forwards;
          animation: mvZoom 6s ease-out forwards;
}

.splide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@-webkit-keyframes mvZoom {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1);
  }
}

@keyframes mvZoom {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1);
  }
}
.bg-dots {
  background: url(../images/bg-dots.svg) repeat center/16px;
}
.bg-dots-blk {
  background: url(../images/bg-dots-blk.svg) repeat center/16px;
  --text: #fff;
}

.feature-sec {
  padding-bottom: clamp(96px, 12vw, 144px);
  margin-bottom: clamp(-80px, -4vw, -48px);
}
@media (max-width: 767px) {
  .feature-sec {
    display: flex;
    flex-direction: column;
  }
  .feature-sec .inner {
    width: calc(100% - 2rem);
    margin-inline: auto;
  }
}

.top-feature-img {
  position: absolute;
  width: 37.5%;
  height: 100%;
  overflow: hidden;
  top: 0;
  right: 0;
  z-index: 1;
}
@media (max-width: 767px) {
  .top-feature-img {
    position: static;
    order: -1;
    margin-left: auto;
    width: 48%;
    height: auto;
    aspect-ratio: 3/2;
    margin-bottom: -48px;
  }
}
.top-feature-img img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}

.top-business-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(40px, 6.6666666667vw, 80px);
}
@media (max-width: 767px) {
  .top-business-wrap {
    grid-template-columns: 1fr;
  }
}
.top-business-wrap .large {
  width: 84%;
  margin-left: auto;
}
@media (max-width: 767px) {
  .top-business-wrap .large {
    margin-right: calc(50% - 50vw);
    margin-bottom: -32px;
  }
}
.top-business-wrap .small {
  width: 55%;
  margin-top: -8%;
}
@media (max-width: 767px) {
  .top-business-wrap .small {
    display: none;
  }
}

.top-suppliers-sec {
  padding-bottom: clamp(300px, 28.3333333333vw, 340px);
}

.top-suppliers-logo-wrap {
  width: 60%;
  background: var(--white);
  padding: 2em;
}
@media (max-width: 767px) {
  .top-suppliers-logo-wrap {
    width: 100%;
    gap: 2em;
    padding: 1em 3em;
  }
}
.top-suppliers-logo-wrap .main-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(16px, 2.6666666667vw, 32px);
}
.top-suppliers-logo-wrap .main-logo figure {
  width: clamp(100px, 10vw, 120px);
}
.top-suppliers-logo-wrap .main-logo figure img {
  width: 100%;
}
.top-suppliers-logo-wrap .sub-logo {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 2.6666666667vw, 32px);
}

.top-suppliers-img {
  position: absolute;
  width: 50%;
  right: 0;
  top: -64px;
}
@media (max-width: 767px) {
  .top-suppliers-img {
    top: -40px;
  }
}

.top-news-wrap {
  width: 100%;
  padding: 0 0 clamp(64px, 8vw, 96px);
}
.top-news-wrap .inner {
  width: min(1200px, 100% - 2rem);
  margin-inline: auto;
}
.top-news-wrap .inner .top-news {
  margin-top: -240px;
  background: var(--white);
  padding: clamp(48px, 5.3333333333vw, 64px) clamp(16px, 2.6666666667vw, 32px);
}
.top-news-wrap .inner .top-news .top-news-area {
  width: min(1040px, 100%);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: clamp(32px, 4vw, 48px);
}
@media (max-width: 767px) {
  .top-news-wrap .inner .top-news .top-news-area {
    grid-template-columns: 1fr;
  }
}
.top-news-wrap .inner .news-title-box {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .top-news-wrap .inner .news-title-box {
    flex-direction: row;
    align-items: center;
  }
  .top-news-wrap .inner .news-title-box .section-heading {
    margin-bottom: 0;
  }
}

.post-item {
  padding: clamp(16px, 2vw, 24px) 0;
  display: block;
  color: var(--text);
  border-bottom: 1px solid var(--border);
}
.post-item:hover {
  color: var(--primary);
  background: var(--bg);
}

.news-list-wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.25em 1em;
}
.news-list-wrap .time {
  width: 6em;
  letter-spacing: 0.05em;
  font-variant-numeric: tabular-nums;
}
.news-list-wrap .news-title {
  flex: 1;
}
@media (max-width: 767px) {
  .news-list-wrap .news-title {
    flex-basis: 100%;
  }
}

.cate {
  color: var(--white);
  padding: 0.5em 0.5em;
  border-radius: 4px;
  font-size: clamp(10px, 1.2vw, 12px);
  text-align: center;
  width: 9em;
  line-height: 1;
  display: grid;
  place-items: center;
}
.cate-news {
  background: var(--blue);
}
.cate-press {
  background: var(--primary);
}

.tab-panel {
  display: flex;
  justify-content: center;
  gap: 8px;
  border-bottom: 1px solid var(--primary);
  padding-inline: 1em;
}
.tab-panel > li {
  width: 200px;
  height: clamp(36px, 4vw, 48px);
  background: var(--cell);
  display: grid;
  place-items: center;
  cursor: pointer;
  text-align: center;
  border-radius: 8px 8px 0 0;
  padding: 0.5em;
}
@media (max-width: 767px) {
  .tab-panel > li {
    flex: 1;
    font-size: 0.75rem;
  }
}
.tab-panel > li:has(a) {
  padding: 0;
}
.tab-panel > li > a {
  padding: 0.5em;
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  color: var(--text-pale);
}
.tab-panel > li.is-active {
  background: var(--primary);
  color: var(--white);
}
.tab-panel > li.is-active > a {
  color: var(--white);
}
@media (max-width: 767px) {
  .tab-panel > li {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    min-width: 5em;
  }
}

.tab-content-area {
  padding: clamp(48px, 8vw, 96px) 0;
  background: var(--primary);
  margin-inline: calc(50% - 50vw);
  padding-inline: calc(50vw - 50%);
}

.tab-content .js-tab-content {
  display: none;
}
.tab-content .js-tab-content.is-active {
  padding-top: clamp(16px, 2.6666666667vw, 32px);
  display: block;
}
.tab-content .js-tab-content.is-active.bg {
  background: var(--bg);
}

.f-bnr-sec {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.f-bnr-sec .f-bnr {
  display: grid;
  place-items: center;
  height: clamp(180px, 30vw, 360px);
  position: relative;
}
.f-bnr-sec .f-bnr::before {
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
  inset: 0;
  transition: all 0.3s ease-out;
}
.f-bnr-sec .f-bnr:hover::before {
  background: rgba(0, 0, 0, 0.7);
}
.f-bnr-sec .f-bnr figure {
  transition: all 0.3s ease-out;
}
.f-bnr-sec .f-bnr:hover figure {
  transform: translateY(8px);
}
.f-bnr-sec .f-bnr > div {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  z-index: 1;
}
.f-bnr-sec .f-bnr > div .bnr-title-sub {
  font-size: clamp(0.875rem, 0.7321428571rem + 0.3571428571vw, 1rem);
  font-weight: 700;
  color: var(--white);
}
.f-bnr-sec .f-bnr > div .bnr-title {
  font-size: clamp(1.5rem, 0.3571428571rem + 2.8571428571vw, 2.5rem);
  font-weight: 700;
  color: var(--white);
}
.f-bnr-sec .f-bnr.company-area {
  background: url(../images/page-company-title.webp) no-repeat center/cover;
}
.f-bnr-sec .f-bnr.recruit-area {
  background: url(../images/page-recruit-title.webp) no-repeat center/cover;
}

.recruit-entry {
  background: var(--primary-hover);
  padding: clamp(64px, 8vw, 96px) 24px;
}
.recruit-entry .parts-heading,
.recruit-entry .text {
  color: var(--white);
}

.page-title-area {
  height: 360px;
  overflow: hidden;
  margin-bottom: -40px;
  position: relative;
  z-index: 1;
}
@media (max-width: 767px) {
  .page-title-area {
    height: auto;
  }
}
.page-title-area .inner {
  width: min(1200px, 100% - 2rem);
  height: 100%;
  margin-inline: auto;
  display: flex;
}
@media (max-width: 767px) {
  .page-title-area .inner {
    flex-direction: column;
  }
}
.page-title-area .inner .catch-wrap {
  background: transparent;
  flex: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  padding: 2rem 0;
  position: relative;
  z-index: 10;
}
@media (max-width: 767px) {
  .page-title-area .inner .catch-wrap {
    flex: initial;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    background: var(--white);
    padding-right: 2em;
    padding-bottom: 1em;
    position: relative;
    z-index: 1;
  }
}
.page-title-area .inner .title-image {
  flex: 7;
  height: 100%;
  margin-right: calc(50% - 50dvw);
  position: relative;
  z-index: 0;
}
@media (max-width: 767px) {
  .page-title-area .inner .title-image {
    margin-top: -40px;
    height: 240px;
    flex: initial;
  }
}
.page-title-area .inner .title-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.news-area {
  background: var(--white);
  padding: clamp(16px, 3.3333333333vw, 40px);
}
@media (max-width: 767px) {
  .news-area {
    margin-inline: calc(50% - 50vw);
    padding-block: 40px;
  }
}

.feature-text {
  text-align: center;
  font-size: clamp(1.25rem, 0.3928571429rem + 2.1428571429vw, 2rem);
  font-weight: 700;
  margin-bottom: 0.5em;
}
.feature-text span {
  font-size: 1.5em;
  color: var(--primary);
}

.feature-top-wrap {
  display: grid;
  grid-template-columns: 2fr 3fr;
  position: relative;
  z-index: 2;
}
@media (max-width: 767px) {
  .feature-top-wrap {
    grid-template-columns: 1fr;
    gap: 1em;
  }
}
.feature-top-wrap::before {
  content: "";
  width: 70%;
  height: 56%;
  background: #F9F2E8;
  border-radius: 16px;
  position: absolute;
  inset: 15%;
  z-index: -1;
}
@media (max-width: 767px) {
  .feature-top-wrap::before {
    width: 80%;
    height: 60%;
    inset: 10%;
  }
}
.feature-top-wrap .feature-top-heading {
  padding-top: 0.7em;
  font-size: clamp(1.25rem, 0.3928571429rem + 2.1428571429vw, 2rem);
  font-weight: 600;
  line-height: 1.6;
  position: relative;
}
.feature-top-wrap .feature-top-heading::before {
  content: "";
  width: 3em;
  height: 2px;
  background: var(--primary);
  position: absolute;
  left: 0;
  top: 0;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: clamp(64px, 8vw, 96px);
}
.feature-list > li {
  padding-top: clamp(32px, 5.3333333333vw, 64px);
  display: flex;
  gap: clamp(16px, 5.3333333333vw, 64px);
  position: relative;
}
@media (max-width: 767px) {
  .feature-list > li {
    flex-direction: column-reverse;
  }
}
.feature-list > li:nth-of-type(even) {
  flex-direction: row-reverse;
}
@media (max-width: 767px) {
  .feature-list > li:nth-of-type(even) {
    flex-direction: column-reverse;
  }
}
.feature-list > li .text-box {
  flex: 14;
}
.feature-list > li figure {
  flex: 15;
}

.feature-point {
  display: block;
  width: clamp(120px, 14.25vw, 171px);
  position: absolute;
  top: clamp(-48px, -2vw, -24px);
  right: 0;
  z-index: -1;
}

.feature-column {
  border: 1px solid var(--primary);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.5);
  margin-top: clamp(20px, 2.6666666667vw, 32px);
  padding: clamp(8px, 1.3333333333vw, 16px);
}

.maker-list-link-wrap {
  display: flex;
  justify-content: center;
  gap: 16px;
  background: var(--white);
  padding: 1em 2em;
  width: min(800px, 100%);
  margin-inline: auto;
}
@media (max-width: 767px) {
  .maker-list-link-wrap {
    flex-wrap: wrap;
    gap: 0;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}
.maker-list-link-wrap > li {
  max-width: 240px;
  flex: 1;
  border-bottom: 1px solid var(--text);
}
@media (max-width: 767px) {
  .maker-list-link-wrap > li {
    width: 240px;
    flex: initial;
  }
}
.maker-list-link-wrap > li > a {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 1em 2em 1em 0.5em;
  color: var(--text);
  position: relative;
  letter-spacing: 0;
}
.maker-list-link-wrap > li > a::after {
  content: "";
  width: 1.25em;
  aspect-ratio: 1;
  -webkit-mask: url(../images/arrow-makerlist.svg) center/contain no-repeat;
          mask: url(../images/arrow-makerlist.svg) center/contain no-repeat;
  background: var(--primary);
  position: absolute;
  top: 50%;
  right: 0.5em;
  transform: translateY(-50%);
}
.maker-list-link-wrap > li > a:hover {
  background: var(--bg);
}

.maker-border {
  padding-top: 1em;
  border-top: 1px solid var(--primary);
}

.main-maker-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(16px, 2.5vw, 30px);
}
@media (max-width: 767px) {
  .main-maker-list {
    grid-template-columns: 1fr;
  }
}
.main-maker-list > li {
  border: 1px solid var(--border);
  padding: 16px;
  border-radius: 4px;
  display: grid;
  grid-template-rows: -webkit-max-content 1fr;
  grid-template-rows: max-content 1fr;
}
@media (max-width: 767px) {
  .main-maker-list > li {
    display: grid;
    grid-template-columns: 80px 1fr;
    align-items: center;
    gap: 16px;
  }
}
.main-maker-list > li figure {
  width: clamp(80px, 10vw, 120px);
  aspect-ratio: 24/19;
  margin-inline: auto;
  display: grid;
  place-items: center;
}
.main-maker-list > li > div {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.sub-maker-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 2.6666666667vw, 32px);
}
@media (max-width: 767px) {
  .sub-maker-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
.sub-maker-list li.border {
  border: 1px solid var(--border);
}
.sub-maker-list li.border.pd {
  padding: 16px;
}
.sub-maker-list li img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.maker-list-wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75em 0.5em;
}
@media (max-width: 767px) {
  .maker-list-wrap {
    grid-template-columns: repeat(2, 1fr);
  }
}
.maker-list-wrap .link-text-outside {
  color: var(--text);
  font-size: clamp(0.75rem, 0.5357142857rem + 0.5357142857vw, 0.9375rem);
  text-decoration: none;
  line-height: 1.3;
  letter-spacing: 0;
}
.maker-list-wrap .link-text-outside:hover {
  text-decoration: underline;
}

.other-maker-name {
  color: var(--text);
  font-size: clamp(0.8125rem, 0.6696428571rem + 0.3571428571vw, 0.9375rem);
  line-height: 1.3;
  letter-spacing: 0;
}

.gyou-title {
  writing-mode: vertical-lr;
  font-size: clamp(1.25rem, 0.3928571429rem + 2.1428571429vw, 2rem);
}
@media (max-width: 767px) {
  .gyou-title {
    writing-mode: initial;
    margin-bottom: 0.5em;
  }
}

.maker-gyou-section {
  display: grid;
  grid-template-columns: 96px 1fr;
  padding: 1rem 0;
}
@media (max-width: 767px) {
  .maker-gyou-section {
    grid-template-columns: 1fr;
  }
}
.maker-gyou-section:not(:first-of-type) {
  border-top: 1px solid var(--border);
}

.maker-category-list {
  display: flex;
  flex-direction: column;
}
.maker-category-list dt {
  display: grid;
  grid-template-columns: clamp(72px, 13.3333333333vw, 160px) 1fr;
  align-items: center;
  height: clamp(50px, 8.3333333333vw, 100px);
  padding-right: 3em;
  gap: 1rem;
  background: var(--bg);
  position: relative;
  transition: all 0.3s ease-out;
}
.maker-category-list dt:not(:first-of-type) {
  margin-top: clamp(16px, 2.6666666667vw, 32px);
}
.maker-category-list dt:hover {
  background: var(--cell);
}
.maker-category-list dt::after {
  content: "";
  width: 1.25em;
  aspect-ratio: 1;
  -webkit-mask: url(../images/icon/plus.svg) center/contain no-repeat;
          mask: url(../images/icon/plus.svg) center/contain no-repeat;
  background: var(--text);
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s ease-out;
}
.maker-category-list dt.active::after {
  transform: translateY(-50%) rotate(135deg);
}
.maker-category-list dt figure {
  height: 100%;
  overflow: hidden;
}
.maker-category-list dt figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.middle-category-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  font-size: clamp(0.875rem, 0.7321428571rem + 0.3571428571vw, 1rem);
}
@media (max-width: 767px) {
  .middle-category-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
.middle-category-list button {
  border: 0;
  background: var(--white);
  padding: clamp(16px, 2vw, 24px);
  border: 1px solid var(--border);
  border-radius: 4px;
  cursor: pointer;
  width: 100%;
  height: 100%;
}
.middle-category-list button:hover {
  background: var(--bg);
}

.middle-category-area.open {
  padding-top: clamp(16px, 2.6666666667vw, 32px);
}

.large-category-title {
  font-size: clamp(0.875rem, 0.3035714286rem + 1.4285714286vw, 1.375rem);
  line-height: 1.3;
}

.form-wrap,
.document-wrap {
  background: var(--white);
  padding: 32px clamp(16px, 6.6666666667vw, 80px);
}
@media (max-width: 767px) {
  .form-wrap,
.document-wrap {
    padding: 16px;
  }
}

.contact-list {
  display: grid;
  grid-template-columns: 12em 1fr;
  align-items: center;
  gap: 1rem;
  border-bottom: 1px dotted var(--border);
  padding: 1rem 0;
}
@media (max-width: 767px) {
  .contact-list {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
}

input[type=text],
input[type=email],
input[type=tel],
input[type=date],
textarea {
  background: var(--white);
  width: 100%;
  padding: 1rem;
  border: 0;
  outline: 1px solid var(--border);
  border-radius: 4px;
  transition: all 0.1s ease-out;
}
input[type=text]:focus,
input[type=email]:focus,
input[type=tel]:focus,
input[type=date]:focus,
textarea:focus {
  outline: 2px solid var(--text);
  background: var(--bg);
}
input[type=text]::-moz-placeholder, input[type=email]::-moz-placeholder, input[type=tel]::-moz-placeholder, input[type=date]::-moz-placeholder, textarea::-moz-placeholder {
  color: var(--border);
  letter-spacing: 0.1em;
}
input[type=text]::placeholder,
input[type=email]::placeholder,
input[type=tel]::placeholder,
input[type=date]::placeholder,
textarea::placeholder {
  color: var(--border);
  letter-spacing: 0.1em;
}

input[type=date] {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}

textarea {
  height: 200px;
}

select {
  border-radius: 4px;
  border: 0;
  outline: 1px solid var(--border);
  padding: 1rem;
}

.must {
  position: relative;
  display: initial;
  padding-right: 1em;
}
.must::after {
  content: "＊";
  font-size: clamp(0.75rem, 0.6071428571rem + 0.3571428571vw, 0.875rem);
  color: var(--primary);
  line-height: 1;
  position: absolute;
  right: 0;
  bottom: 0.5lh;
  transform: translateY(0em);
}

.checkbox br {
  display: none;
}

.estimate-area {
  width: 100%;
}
.estimate-area .estimate-list {
  background: var(--white);
}
.estimate-area .estimate-list thead {
  background: var(--primary);
}
.estimate-area .estimate-list thead tr th {
  padding: 1em;
  color: var(--white);
}
.estimate-area .estimate-list tbody tr {
  border-bottom: 1px dotted var(--border);
}
.estimate-area .estimate-list tbody tr td {
  padding: 1em 0.5em;
  text-align: center;
}

input[type=checkbox] {
  display: none;
}

.checkbox {
  padding-left: 1.5em;
  position: relative;
  cursor: pointer;
}
.checkbox::before {
  content: "";
  display: block;
  width: 1.2em;
  aspect-ratio: 1;
  border-radius: 2px;
  border: 1px solid var(--text);
  position: absolute;
  top: calc(0.5lh - 0.4em);
  left: 0;
}
.checkbox:has(:checked)::after {
  content: "";
  display: block;
  width: 0.4em;
  height: 0.6em;
  border-bottom: 2px solid var(--primary);
  border-right: 2px solid var(--primary);
  position: absolute;
  left: 0.4em;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}

form .btn.btn-blk {
  width: 240px;
  border: 0;
}
form .btn.btn-blk:disabled {
  background: var(--disabled);
  cursor: not-allowed;
}

form .btn-wrap {
  position: relative;
}
form .btn-wrap .wpcf7-spinner {
  position: absolute;
  top: 50%;
  right: calc(50% - 120px);
  transform: translateY(-50%);
}

.wpcf7 form.sent .wpcf7-response-output {
  border-color: var(--primary);
  padding: 1em;
  position: fixed;
  bottom: 0%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  z-index: 1;
}

.checkbox .wpcf7-form-control-wrap,
.checkbox .wpcf7-form-control,
.checkbox .wpcf7-list-item {
  display: contents;
}

.wp-pagenavi {
  margin-top: clamp(24px, 4vw, 48px);
  display: flex;
  justify-content: center;
  gap: 8px;
}
.wp-pagenavi .current, .wp-pagenavi .larger, .wp-pagenavi .smaller {
  width: 30px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  font-family: "Poppins", sans-serif;
  font-weight: 400 !important;
  color: var(--border);
  border: 1px solid var(--border);
}
.wp-pagenavi .larger, .wp-pagenavi .smaller {
  border: 1px solid var(--primary);
  color: var(--primary);
}
.wp-pagenavi .nextpostslink,
.wp-pagenavi .previouspostslink {
  width: 20px;
  aspect-ratio: 2/3;
  display: grid;
  place-items: center;
}
.wp-pagenavi .prev, .wp-pagenavi .next, .wp-pagenavi .page-number a {
  color: var(--text);
  display: block;
  border: 1px solid var(--border);
  background: transparent;
  width: 32px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.wp-pagenavi .prev:hover, .wp-pagenavi .next:hover, .wp-pagenavi .page-number a:hover {
  background: var(--black);
  color: var(--white);
}
.wp-pagenavi .page-number.active {
  width: 32px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  background: var(--black);
  color: var(--white);
}

.news-article {
  font-size: clamp(0.875rem, 0.7321428571rem + 0.3571428571vw, 1rem);
  line-height: 1.8;
}
.news-article .parts-heading-s {
  font-size: clamp(1.375rem, 0.9464285714rem + 1.0714285714vw, 1.75rem);
  margin-bottom: 0.5em;
}
.news-article .meta-wrap {
  display: flex;
  align-items: center;
  gap: 1em;
  padding-bottom: 1em;
  border-bottom: 1px solid var(--border);
}
.news-article .date {
  position: relative;
  padding-left: 1.5em;
  color: var(--text-pale);
}
.news-article .date::before {
  content: "";
  width: 1em;
  aspect-ratio: 1;
  background: var(--disabled);
  -webkit-mask: url(../images/icon/time.svg) center/contain no-repeat;
          mask: url(../images/icon/time.svg) center/contain no-repeat;
  position: absolute;
  top: calc(0.5lh - 0.5em);
  left: 0;
}
.news-article .cate {
  color: var(--white);
}
.news-article .cate a {
  pointer-events: none;
  color: var(--white);
  line-height: 1;
}
.news-article .article-content {
  margin-top: clamp(40px, 5.3333333333vw, 64px);
  padding-bottom: clamp(40px, 5.3333333333vw, 64px);
  border-bottom: 1px solid var(--border);
  margin-bottom: clamp(24px, 3.3333333333vw, 40px);
}
.news-article h1 {
  font-size: clamp(1.5rem, 0.6428571429rem + 2.1428571429vw, 2.25rem);
  line-height: 1.4;
  margin: 0.75em 0;
}
.news-article h2 {
  font-size: clamp(1.25rem, 0.6785714286rem + 1.4285714286vw, 1.75rem);
  line-height: 1.4;
  margin: 0.75em 0;
}
.news-article h3 {
  font-size: clamp(1rem, 0.5714285714rem + 1.0714285714vw, 1.375rem);
  line-height: 1.6;
  margin: 0.75em 0;
}
.news-article h4 {
  font-size: clamp(0.9375rem, 0.7232142857rem + 0.5357142857vw, 1.125rem);
  line-height: 1.7;
  margin: 0.75em 0;
}
.news-article h5 {
  font-size: clamp(0.875rem, 0.7321428571rem + 0.3571428571vw, 1rem);
  line-height: 1.7;
  margin: 0.75em 0;
}
.news-article h6 {
  font-size: clamp(0.8125rem, 0.7410714286rem + 0.1785714286vw, 0.875rem);
  line-height: 1.6;
  margin: 0.75em 0;
}
.news-article p {
  font-size: clamp(0.875rem, 0.7321428571rem + 0.3571428571vw, 1rem);
  line-height: 1.8;
  margin: 1em 0;
}
.news-article pre {
  font-size: clamp(0.875rem, 0.7321428571rem + 0.3571428571vw, 1rem);
}

.business-list {
  display: flex;
  flex-direction: column;
  gap: clamp(40px, 5.3333333333vw, 64px);
}
.business-list > li {
  display: flex;
  align-items: flex-end;
}
@media (max-width: 767px) {
  .business-list > li {
    flex-direction: column;
  }
}
.business-list > li:nth-of-type(even) {
  flex-direction: row-reverse;
}
.business-list > li:nth-of-type(even) figure {
  margin-left: 0 !important;
  margin-right: -40px;
}
@media (max-width: 767px) {
  .business-list > li:nth-of-type(even) figure {
    margin: 0;
  }
}
@media (max-width: 767px) {
  .business-list > li:nth-of-type(even) {
    flex-direction: column;
  }
}
.business-list > li .text-box {
  flex: 12;
  position: relative;
  z-index: 1;
  background: var(--white);
  padding: clamp(16px, 2.6666666667vw, 32px);
}
@media (max-width: 767px) {
  .business-list > li .text-box {
    padding-inline: 0;
  }
}
.business-list > li .text-box > h2 {
  display: flex;
  align-items: center;
  gap: 0.5em;
}
.business-list > li figure {
  flex: 14;
  margin-left: -40px;
}
@media (max-width: 767px) {
  .business-list > li figure {
    margin: 0;
  }
}

.top-message-wrap {
  background: var(--white);
  border-radius: 4px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  display: grid;
  grid-template-columns: 1fr 2fr;
}
@media (max-width: 767px) {
  .top-message-wrap {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .top-message-wrap figure {
    width: 50%;
    margin-inline: auto;
  }
}
.top-message-wrap > div {
  padding: clamp(16px, 4vw, 48px) clamp(16px, 5.3333333333vw, 64px);
}
.top-message-wrap > div .parts-heading {
  padding-bottom: 0.25em;
  border-bottom: 1px solid var(--primary);
}
@media (max-width: 767px) {
  .top-message-wrap > div {
    padding: 0;
  }
}
@media (max-width: 767px) {
  .top-message-wrap {
    padding: 16px;
  }
}
.top-message-wrap .text {
  line-height: 2;
}
@media (max-width: 767px) {
  .top-message-wrap .text {
    line-height: 1.7;
    font-size: 13px;
  }
}

.signature-wrap {
  margin-top: clamp(16px, 2vw, 24px);
  text-align: right;
}

.outline-list {
  display: grid;
  grid-template-columns: 120px 1fr;
  border-bottom: 1px solid var(--border);
  padding: 1em 0;
}
@media (max-width: 767px) {
  .outline-list {
    grid-template-columns: 6em 1fr;
  }
}

.outline-small-content {
  display: grid;
  grid-template-columns: 120px 1fr;
  letter-spacing: 0;
  border-bottom: 1px solid var(--border);
  padding: 1em 0;
}
@media (max-width: 767px) {
  .outline-small-content {
    grid-template-columns: 1fr;
  }
}
.outline-small-content:first-of-type {
  padding-top: 0;
}
.outline-small-content:last-of-type {
  border-bottom: 0;
  padding-bottom: 0;
}
.outline-small-content:not(:has(.outline-small-list)) {
  display: block;
  padding-left: 120px;
}
@media (max-width: 767px) {
  .outline-small-content:not(:has(.outline-small-list)) {
    padding-left: 0;
  }
}

.map-headoffice {
  margin-top: 1em;
}

.history-wrap {
  display: flex;
  flex-direction: column;
  gap: 1.5em;
  letter-spacing: 0;
}

.history-list {
  display: grid;
  grid-template-columns: 185px 1fr;
  gap: 1em;
  padding-left: 1.25em;
  position: relative;
}
@media (max-width: 767px) {
  .history-list {
    grid-template-columns: 1fr;
    gap: 0.5em;
  }
}
.history-list::before {
  content: "";
  width: 1em;
  aspect-ratio: 1;
  background: radial-gradient(var(--primary) 50%, transparent 50%);
  position: absolute;
  left: 0;
  top: calc(0.5lh - 0.4em);
  z-index: 5;
}
.history-list:not(:last-of-type)::after {
  content: "";
  width: 1px;
  height: calc(100% + 1.5em);
  background: var(--border);
  position: absolute;
  top: 0.5lh;
  left: calc(0.5em - 1px);
  z-index: 1;
}
.history-list > div {
  display: grid;
  grid-template-columns: 1fr 2.5em;
}
@media (max-width: 767px) {
  .history-list > div {
    display: flex;
    gap: 1em;
  }
}
.history-list > div .month {
  text-align: right;
}

.recruit-sub-heading {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  background: var(--primary);
  color: var(--white);
  padding: 0.25em 0.75em;
  font-size: clamp(1rem, 0.7142857143rem + 0.7142857143vw, 1.25rem);
  margin-bottom: 0.5em;
  margin-inline: auto;
}

.recruit-catchcopy-wrap {
  background: var(--white);
  padding: 3rem 1rem;
  border-radius: 1rem;
  display: grid;
  place-items: center;
}
.recruit-catchcopy-wrap .recruit-catchcopy {
  text-align: center;
  font-size: clamp(1.25rem, 0.6785714286rem + 1.4285714286vw, 1.75rem);
  font-weight: 700;
  line-height: 1.4;
  color: var(--primary);
}

.interview-list {
  display: flex;
  flex-direction: column;
  gap: clamp(40px, 5.3333333333vw, 64px);
}
.interview-list > li {
  display: flex;
  align-items: center;
  gap: clamp(16px, 3.3333333333vw, 40px);
}
@media (max-width: 767px) {
  .interview-list > li {
    flex-direction: column;
  }
}
.interview-list > li > figure,
.interview-list > li > .text-box {
  flex: 1;
}
.interview-list > li .card-heading {
  padding-bottom: 0.25em;
  border-bottom: 1px solid var(--border);
}
.interview-list > li:nth-of-type(even) {
  flex-direction: row-reverse;
}
@media (max-width: 767px) {
  .interview-list > li:nth-of-type(even) {
    flex-direction: column;
  }
}

.recruit-message-wrap {
  display: grid;
  grid-template-columns: 1fr 2fr;
  align-items: center;
  gap: clamp(16px, 3.3333333333vw, 40px);
}
@media (max-width: 767px) {
  .recruit-message-wrap {
    grid-template-columns: 1fr;
  }
}

.job-list {
  width: min(800px, 92%);
  margin-inline: auto;
  padding: clamp(32px, 5.3333333333vw, 64px) 0;
  display: flex;
  flex-direction: column;
  gap: clamp(40px, 5.3333333333vw, 64px);
}
.job-list > li {
  padding: clamp(16px, 3.3333333333vw, 40px) clamp(16px, 2.6666666667vw, 32px);
  background: var(--white);
}

.job-name {
  font-size: clamp(1.375rem, 0.9464285714rem + 1.0714285714vw, 1.75rem);
  font-weight: 700;
  background: var(--bg);
  padding: 0.125em;
}

.job-detail {
  display: flex;
  flex-direction: column;
}
.job-detail > dl {
  border-bottom: 1px solid var(--border);
  display: grid;
  grid-template-columns: 150px 1fr;
  padding: 1rem 0;
}
@media (max-width: 767px) {
  .job-detail > dl {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
}
.job-detail > dl > dt {
  font-weight: 700;
  letter-spacing: 0;
}

.maker-cate-modal {
  position: fixed;
  width: 100%;
  height: 100%;
  inset: 0;
  display: grid;
  place-items: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.3s ease-out;
}
.maker-cate-modal .overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}
.maker-cate-modal.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: initial;
}
.maker-cate-modal .modal-content {
  background: var(--white);
  width: min(740px, 90%);
  max-height: 80vh;
  overflow-y: auto;
  border-radius: 8px;
  padding: clamp(16px, 2.6666666667vw, 32px);
  position: relative;
}
@media (max-width: 767px) {
  .maker-cate-modal .modal-content {
    padding: 16px;
  }
}
.maker-cate-modal .modal-content .close-btn {
  width: 1.5em;
  aspect-ratio: 1;
  -webkit-mask: url(../images/icon/close.svg) center/contain no-repeat;
          mask: url(../images/icon/close.svg) center/contain no-repeat;
  background: var(--text);
  position: absolute;
  top: 16px;
  right: 16px;
  cursor: pointer;
}

.maker-cate-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 767px) {
  .maker-cate-list {
    grid-template-columns: 1fr;
  }
}
.maker-cate-list .link-text-outside {
  color: var(--text);
  font-size: clamp(0.8125rem, 0.6696428571rem + 0.3571428571vw, 0.9375rem);
  text-decoration: none;
  line-height: 1.4;
}
.maker-cate-list .link-text-outside:hover {
  text-decoration: underline;
}

.policy-meta-border {
  border-top: 1px solid var(--border);
  padding-top: 1em;
}

.policy-meta {
  padding: 1em 0;
  border-top: 1px solid var(--border);
  display: grid;
  grid-template-columns: 8em 1fr;
}
.policy-meta dt {
  font-weight: 600;
}

.sdgs-list {
  display: flex;
  flex-direction: column;
  gap: 1em;
}
.sdgs-list > li {
  display: grid;
  grid-template-columns: clamp(64px, 6.6666666667vw, 80px) 1fr;
  align-items: center;
  gap: 1em;
}

.wpcf7-turnstile {
  margin: 2em auto;
  display: flex;
  justify-content: center;
}
/*# sourceMappingURL=style.css.map */