@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Poppins:wght@400;700;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: #FF7300;
  --primary-pale: #FDB86D;
  --primary-hover:#D56102;
  --accent:#D03711;
  --black:#222222;
  --text: #222222;
  --cta-btn:#FFCF30;
  --border:#C99F50;
  --disabled:#999999;
  --bg: #FFF1D2;
  --white: #fff;
}

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

.page-title {
  font-size: clamp(3rem, 1.2857142857rem + 4.2857142857vw, 4.5rem);
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 900;
  line-height: 1.2;
  color: var(--text);
}
.page-title.reverse {
  color: var(--white);
  background: var(--text);
  padding: 2px 16px 8px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}

.section-heading {
  font-size: clamp(2.5rem, 0.7857142857rem + 4.2857142857vw, 4rem);
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 0.25em;
  color: var(--text);
}
.section-heading .eng {
  font-size: clamp(0.875rem, 0.7321428571rem + 0.3571428571vw, 1rem);
  font-family: "Poppins", sans-serif;
  font-weight: 900;
  color: var(--primary);
  border: 1px solid var(--primary);
  padding: 0.5em;
  display: block;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin-top: 16px;
}

.parts-heading {
  font-size: clamp(2rem, 0.8571428571rem + 2.8571428571vw, 3rem);
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 900;
  line-height: 1.4;
  color: var(--text);
}
.parts-heading.reverse {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  background: var(--text);
  color: var(--white);
  padding: 8px 16px;
}
.parts-heading .eng {
  font-size: clamp(0.875rem, 0.7321428571rem + 0.3571428571vw, 1rem);
  font-family: "Poppins", sans-serif;
  font-weight: 900;
  color: var(--primary);
  border: 1px solid var(--primary);
  padding: 0.5em;
  display: block;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin-top: 8px;
}

.card-heading {
  font-size: clamp(1rem, 0.4285714286rem + 1.4285714286vw, 1.5rem);
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  line-height: 1.4;
  color: var(--text);
}

.small-heading {
  font-size: clamp(0.875rem, 0.7321428571rem + 0.3571428571vw, 1rem);
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.5;
  color: var(--text);
}

.lead {
  font-size: clamp(1.125rem, 0.9821428571rem + 0.3571428571vw, 1.25rem);
  font-weight: 700;
  line-height: 1.6;
  color: var(--text);
}

.text-l {
  font-size: clamp(1.125rem, 0.6964285714rem + 1.0714285714vw, 1.5rem);
  line-height: 1.7;
  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: "※";
}

.lh160 {
  line-height: 1.6;
}

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

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

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

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

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

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

.btn {
  min-width: 250px;
  height: 56px;
  text-align: center;
  font-size: clamp(1rem, 0.7142857143rem + 0.7142857143vw, 1.25rem);
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 99px;
}
@media (max-width: 767px) {
  .btn {
    min-width: 220px;
    height: 48px;
  }
}
.btn::before {
  content: "";
  width: 26px;
  aspect-ratio: 1;
  background: var(--white);
  border-radius: 50%;
  position: absolute;
  right: 0.75em;
  top: calc(50% - 13px);
}
.btn::after {
  content: "";
  width: 12px;
  aspect-ratio: 1;
  position: absolute;
  right: 1.1em;
  top: calc(50% - 6px);
  -webkit-mask: url('data:image/svg+xml;utf8,<svg width="14" height="14" viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M13.6565 6.13557L8.08987 0.351526C7.63533-0.120633 6.90238-0.116812 6.45291 0.360947C6.00343 0.838132 6.00737 1.60807 6.4619 2.08023L10.0263 5.78436H1.15743C0.518328 5.78439 0 6.32856 0 6.99992C0 7.67156 0.518328 8.21573 1.15743 8.21573H10.0263L6.4619 11.9196C6.00737 12.3917 6.00343 13.162 6.45291 13.6392C6.90238 14.1166 7.63533 14.1208 8.08987 13.6486L13.6565 7.86458C13.8764 7.63586 14 7.32481 14 6.99994C14 6.67499 13.8764 6.36423 13.6565 6.13557Z" fill="white"/></svg>') center/contain no-repeat;
          mask: url('data:image/svg+xml;utf8,<svg width="14" height="14" viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M13.6565 6.13557L8.08987 0.351526C7.63533-0.120633 6.90238-0.116812 6.45291 0.360947C6.00343 0.838132 6.00737 1.60807 6.4619 2.08023L10.0263 5.78436H1.15743C0.518328 5.78439 0 6.32856 0 6.99992C0 7.67156 0.518328 8.21573 1.15743 8.21573H10.0263L6.4619 11.9196C6.00737 12.3917 6.00343 13.162 6.45291 13.6392C6.90238 14.1166 7.63533 14.1208 8.08987 13.6486L13.6565 7.86458C13.8764 7.63586 14 7.32481 14 6.99994C14 6.67499 13.8764 6.36423 13.6565 6.13557Z" fill="white"/></svg>') center/contain no-repeat;
  background: var(--primary);
  transition: all 0.3s ease-out;
}
.btn.btn-primary {
  background: var(--primary);
  color: #fff;
}
.btn.btn-primary::after {
  background: var(--primary);
}
.btn.btn-primary:hover {
  background: var(--primary-hover);
}
.btn.btn-primary:hover::after {
  background: var(--primary-hover);
}
.btn.btn-white {
  background: var(--white);
  color: var(--primary);
}
.btn.btn-white::before {
  background: var(--primary);
}
.btn.btn-white::after {
  background: var(--white);
}
.btn.btn-white:hover {
  background: var(--primary);
  color: var(--white);
}
.btn.btn-white:hover::before {
  background: var(--white);
}
.btn.btn-white:hover::after {
  background: var(--primary);
}
.btn.btn-submit {
  border: 2px solid var(--primary);
  border-radius: 99px;
  background: var(--primary);
  color: #fff;
  position: relative;
}
.btn.btn-submit::after {
  background: var(--disabled);
}
.btn.btn-submit:disabled {
  border-radius: 99px;
  border: 2px solid var(--disabled);
  background: var(--disabled);
}
.btn.btn-submit:disabled:hover::after {
  background: var(--disabled);
}
.btn.btn-submit.active {
  cursor: pointer;
}
.btn.btn-submit.active::after {
  background: var(--primary);
}

.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(64px, 10.6666666667vw, 128px) 0;
  background: var(--bg);
}
.sec .container {
  width: min(1200px, 100% - 2rem);
  margin-inline: auto;
  position: relative;
  z-index: 1;
}

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

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

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

.grid {
  display: grid;
}
.grid.grid21 {
  grid-template-columns: 1fr 1fr;
  gap: clamp(16px, 3.3333333333vw, 40px);
}
@media (max-width: 767px) {
  .grid.grid21 {
    grid-template-columns: 1fr;
  }
}
.grid.grid31 {
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 3.3333333333vw, 40px);
}
@media (max-width: 767px) {
  .grid.grid31 {
    grid-template-columns: 1fr;
  }
}

.mt80 {
  margin-top: clamp(56px, 6.6666666667vw, 80px);
}

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

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

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

.mt24 {
  margin-top: clamp(16px, 2vw, 24px);
}

.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 {
  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 {
  width: 100%;
  display: flex;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
  pointer-events: none;
}
@media (max-width: 767px) {
  .header {
    height: 60px;
  }
}
.header .site-logo {
  width: clamp(100px, 14vw, 168px);
  aspect-ratio: 168/120;
  background: var(--white);
  border-bottom-right-radius: 48px;
  overflow: hidden;
  display: grid;
  place-items: center;
  z-index: 1;
  pointer-events: all;
}
@media (max-width: 767px) {
  .header .site-logo {
    border-bottom-right-radius: 24px;
  }
}
.header .site-logo > a {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
}
.header .site-logo > a > img {
  width: clamp(60px, 8.3333333333vw, 100px);
}

.gnav {
  pointer-events: all;
  margin-left: auto;
  margin-right: 40px;
  padding-inline: 16px;
  display: flex;
  background: var(--primary-pale);
  border-radius: 99px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}
.gnav a {
  font-weight: 900;
  padding: 1rem 1.25rem;
  font-size: 1rem;
  color: var(--text);
  transition: all 0.3s ease-out;
}

@media (max-width: 767px) {
  .gnav {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--primary-pale);
    margin: 0;
    position: fixed;
    top: 20px;
    right: 20px;
    border-radius: 20px;
    transition: all 0.3s ease-out;
    overflow: hidden;
  }
  .gnav.is-open {
    width: calc(100% - 40px);
    height: calc(100dvh - 48px);
    border-radius: 12px;
  }
  .gnav.is-open a {
    opacity: 1;
    pointer-events: all;
  }
  .gnav a {
    height: initial;
    padding: 16px 20px;
    gap: 4px;
    font-size: 2rem;
    opacity: 0;
    pointer-events: none;
  }
}
.toggle {
  display: none;
}
@media (max-width: 767px) {
  .toggle {
    pointer-events: all;
    position: absolute;
    top: 24px;
    right: 24px;
    width: 32px;
    aspect-ratio: 1;
    cursor: pointer;
    display: grid;
    place-items: center;
    z-index: 99;
  }
  .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;
    background: var(--text);
  }
  .toggle.is-active span::before {
    transform: rotate(45deg);
  }
  .toggle.is-active span::after {
    transform: rotate(-45deg);
  }
}

.footer {
  --text:#fff;
  background: var(--black);
  padding: 24px 16px;
}
@media (max-width: 767px) {
  .footer {
    padding-top: 80px;
  }
  .footer .inner {
    padding: 0 1rem;
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    gap: 2em;
  }
}
.footer .f-nav {
  display: flex;
  justify-content: center;
}
@media (max-width: 767px) {
  .footer .f-nav {
    flex-wrap: wrap;
    justify-content: flex-start;
  }
}
.footer .f-nav .f-nav-item {
  color: var(--text);
  padding: 0.5rem clamp(8px, 1.3333333333vw, 16px);
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: clamp(0.875rem, 0.1607142857rem + 1.7857142857vw, 1.5rem);
}
.footer .f-nav .f-nav-item:hover {
  opacity: 0.7;
}

.f-logo {
  width: clamp(48px, 5.8333333333vw, 70px);
  margin-inline: auto;
}
@media (max-width: 767px) {
  .f-logo {
    margin-top: 0 !important;
  }
}

.copyright {
  font-size: clamp(0.625rem, 0.4821428571rem + 0.3571428571vw, 0.75rem);
  color: #aaa;
  text-align: center;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
  overflow-x: hidden;
}
@media (max-width: 767px) {
  html {
    scroll-padding-top: 50px;
  }
}
html.lock {
  overflow: hidden;
}

body {
  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;
  height: 100%;
  line-height: 1.15;
  overflow-x: hidden;
  letter-spacing: 0.05em;
  background: var(--bg);
}

.mv-wrap {
  width: 100%;
  aspect-ratio: 144/89;
  background: var(--primary-pale);
  padding: 24px 24px 80px;
  position: relative;
}
@media (max-width: 767px) {
  .mv-wrap {
    padding: 12px 12px 40px;
    aspect-ratio: 3/4;
  }
}
.mv-wrap .inner {
  overflow: hidden;
  height: 100%;
  border-radius: 16px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
}
.mv-wrap .inner figure {
  height: 100%;
}
.mv-wrap .inner figure img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}

.sub-catch {
  position: absolute;
  top: 80px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: row-reverse;
  gap: 8px;
}
@media (max-width: 767px) {
  .sub-catch {
    top: 160px;
    gap: 4px;
  }
}
.sub-catch p {
  background: var(--primary);
  padding: 4px;
  color: var(--white);
  writing-mode: vertical-lr;
  font-feature-settings: initial;
  font-size: clamp(0.9375rem, 0.1517857143rem + 1.9642857143vw, 1.625rem);
  font-weight: 900;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
}

.main-catch {
  position: absolute;
  left: 24px;
  bottom: clamp(20px, 3.3333333333vw, 40px);
  display: flex;
  flex-direction: column;
  gap: clamp(8px, 1.3333333333vw, 16px);
}
.main-catch > p {
  font-size: 7.22vw;
  font-weight: 900;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  padding: 0.02em 0.2em 0.1em;
  background: var(--white);
}
.main-catch > p span {
  color: var(--primary);
}

.cta-btn {
  position: fixed;
  right: clamp(8px, 2.6666666667vw, 32px);
  bottom: 120px;
  width: clamp(128px, 15.5833333333vw, 187px);
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  z-index: 80;
  border: 3px solid var(--white);
  border-radius: 50%;
  background: var(--cta-btn);
  transition: all 0.3s ease-out;
}
.cta-btn:hover {
  box-shadow: 0 0 16px rgba(0, 0, 0, 0.2);
  transform: scale(1.05);
}
.cta-btn .text {
  line-height: 1.4;
}
@media (max-width: 767px) {
  .cta-btn .text {
    font-size: 12px;
  }
}
.cta-btn .cta-text {
  text-align: center;
  font-size: clamp(1rem, 0.2857142857rem + 1.7857142857vw, 1.625rem);
  font-weight: 900;
  color: var(--text);
}
.cta-btn .arrow {
  margin-top: 4px;
  display: grid;
  place-items: center;
  padding: 0.5em;
  border-radius: 50%;
  background: var(--accent);
}
@media (max-width: 767px) {
  .cta-btn .arrow {
    transform: scale(0.8);
    margin-top: 0;
  }
}

.bg-text-aboutus {
  position: relative;
}
.bg-text-aboutus::before {
  content: "ABOUT US";
  font-size: 19vw;
  font-weight: 900;
  font-family: "Poppins", sans-serif;
  white-space: nowrap;
  color: var(--bg);
  mix-blend-mode: multiply;
  position: absolute;
  top: 3vw;
  left: -2vw;
  z-index: 0;
}

.top-company-wrap {
  display: flex;
  flex-direction: column;
  gap: clamp(48px, 6.6666666667vw, 80px);
}
.top-company-wrap > li {
  display: flex;
  align-items: flex-start;
}
.top-company-wrap > li:nth-of-type(even) {
  flex-direction: row-reverse;
}
@media (max-width: 767px) {
  .top-company-wrap > li:nth-of-type(even) {
    flex-direction: column;
  }
  .top-company-wrap > li:nth-of-type(even) .text-box {
    margin-left: auto;
  }
}
.top-company-wrap > li:nth-of-type(even) figure {
  margin-right: 0;
  margin-left: -64px;
}
@media (max-width: 767px) {
  .top-company-wrap > li:nth-of-type(even) figure {
    margin-left: 0;
  }
}
@media (max-width: 767px) {
  .top-company-wrap > li {
    flex-direction: column;
  }
  .top-company-wrap > li figure {
    margin-right: 0;
    margin-bottom: -40px;
  }
}
.top-company-wrap > li figure {
  flex: 63;
  margin-right: -64px;
  margin-top: 40px;
  overflow: hidden;
  border-radius: 8px;
}
@media (max-width: 767px) {
  .top-company-wrap > li figure {
    margin-right: 0;
    margin-top: 0;
  }
}
.top-company-wrap > li .text-box {
  flex: 46;
  position: relative;
  z-index: 1;
  background: var(--white);
  border-radius: 8px;
  padding: clamp(32px, 5.3333333333vw, 64px) clamp(24px, 4vw, 48px);
}
@media (max-width: 767px) {
  .top-company-wrap > li .text-box {
    width: 90%;
  }
}

.bg-text-shop {
  position: relative;
}
.bg-text-shop::before {
  content: "SHOP";
  font-size: 13.8vw;
  font-weight: 900;
  font-family: "Poppins", sans-serif;
  letter-spacing: -0.05em;
  line-height: 1;
  color: var(--bg);
  writing-mode: vertical-lr;
  position: absolute;
  top: -0.4vw;
  left: -2vw;
  z-index: 0;
}

.top-shoplist-wrap {
  display: grid;
  grid-template-columns: 2fr 3fr;
  align-items: center;
  position: relative;
  z-index: 1;
}
@media (max-width: 767px) {
  .top-shoplist-wrap {
    display: flex;
    flex-direction: column;
    gap: 32px;
    padding-top: 64px;
  }
}
.top-shoplist-wrap .text-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: clamp(24px, 3.3333333333vw, 40px);
  width: min(430px, 98rem);
  margin-inline: auto;
}
@media (max-width: 767px) {
  .top-shoplist-wrap .text-box {
    width: calc(100% - 2rem);
    margin-inline: auto;
  }
}

.bg-text-recruit {
  position: relative;
  overflow: hidden;
}
.bg-text-recruit::before {
  content: "RECRUIT";
  font-size: 22vw;
  font-weight: 900;
  font-family: "Poppins", sans-serif;
  line-height: 1;
  color: var(--bg);
  opacity: 0.3;
  mix-blend-mode: screen;
  position: absolute;
  top: -3vw;
  left: -3vw;
  z-index: 0;
}

.top-recruit-wrap {
  display: flex;
  align-items: center;
  gap: clamp(24px, 3.3333333333vw, 40px);
  position: relative;
  z-index: 1;
}
@media (max-width: 767px) {
  .top-recruit-wrap {
    flex-direction: column;
  }
}
.top-recruit-wrap .text-box {
  width: min(667px, 100%);
}
.top-recruit-wrap .btn-wrap {
  margin-left: auto;
}
@media (max-width: 767px) {
  .top-recruit-wrap .btn-wrap {
    margin-left: 0;
    width: 100%;
  }
}

.top-recruit-slide-wrap {
  width: 100vw;
  margin-inline: calc(50% - 50vw);
  overflow-x: hidden;
}
.top-recruit-slide-wrap .top-recruit-slide {
  width: 248%;
  display: flex;
  -webkit-animation: slideMove 30s linear infinite;
          animation: slideMove 30s linear infinite;
}
.top-recruit-slide-wrap .top-recruit-slide li {
  padding: 0 8px;
  width: 31vw;
}
.top-recruit-slide-wrap .top-recruit-slide li:nth-last-of-type(even) {
  margin-top: 3vw;
}

@-webkit-keyframes slideMove {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes slideMove {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@-webkit-keyframes slideMove2 {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes slideMove2 {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}
.top-news-wrap {
  background: var(--white);
  position: relative;
  padding: clamp(40px, 6.6666666667vw, 80px) 0;
}
.top-news-wrap::before {
  content: "NEWS";
  font-family: "Poppins", sans-serif;
  font-weight: 900;
  font-size: min(120px, 8.8vw);
  line-height: 1;
  color: var(--bg);
  writing-mode: vertical-lr;
  position: absolute;
  top: -0.1em;
  left: -0.2lh;
}
@media (max-width: 767px) {
  .top-news-wrap::before {
    writing-mode: initial;
    left: initial;
    top: -2.5vw;
    right: 0;
    font-size: 18vw;
  }
}
.top-news-wrap .inner {
  width: min(1040px, 100% - 2rem);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 288px 1fr;
}
@media (max-width: 767px) {
  .top-news-wrap .inner {
    grid-template-columns: 1fr;
  }
}
.top-news-wrap .title-box {
  position: relative;
  z-index: 1;
}

.post-item {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 7em 1fr;
  padding: 1em;
  border-bottom: 1px solid var(--disabled);
}
@media (max-width: 767px) {
  .post-item {
    grid-template-columns: 1fr;
  }
}
.post-item time {
  color: var(--primary);
  font-weight: 700;
}

.cta-area {
  position: relative;
}
.cta-area::before {
  content: "CONTACT US";
  font-family: "Poppins", sans-serif;
  font-weight: 900;
  font-size: 15vw;
  line-height: 1;
  color: var(--bg);
  white-space: nowrap;
  mix-blend-mode: screen;
  opacity: 0.3;
  position: absolute;
  top: -2.1vw;
  left: 50%;
  transform: translateX(-50%);
}

.lower-title-wrap {
  height: 400px;
  overflow: hidden;
  position: relative;
}
.lower-title-wrap::before {
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  position: absolute;
  inset: 0;
}
.lower-title-wrap img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.lower-title-wrap .inner {
  width: min(1200px, 100% - 2rem);
  margin-inline: auto;
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
}

.anchor-link-wrap {
  padding: clamp(16px, 2.6666666667vw, 32px) 0;
}
.anchor-link-wrap .inner {
  width: min(1200px, 100% - 2rem);
  margin-inline: auto;
}

.anchor-link-list {
  display: flex;
}
.anchor-link-list li:not(:first-of-type) {
  border-left: 1px solid var(--text);
}
.anchor-link-list a {
  padding: 0 1em;
  color: var(--text);
  font-size: clamp(0.75rem, 0.4642857143rem + 0.7142857143vw, 1rem);
  font-weight: 900;
}

.our-biz-wrap {
  display: flex;
  flex-direction: column;
  gap: clamp(32px, 4vw, 48px);
}
.our-biz-wrap > li {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(16px, 2.6666666667vw, 32px);
}
@media (max-width: 767px) {
  .our-biz-wrap > li {
    grid-template-columns: 1fr;
  }
}
.our-biz-wrap > li .img-box {
  overflow: hidden;
  border-radius: 8px;
}

.biz-heading-sub {
  font-family: "Poppins", sans-serif;
  font-size: clamp(1rem, 0.4285714286rem + 1.4285714286vw, 1.5rem);
  font-weight: 900;
  color: var(--text);
}
.biz-heading-sub span {
  font-size: 2em;
  color: var(--primary);
}

.our-biz-heading {
  margin-top: clamp(8px, 1.3333333333vw, 16px);
  font-size: clamp(1.5rem, 0.3571428571rem + 2.8571428571vw, 2.5rem);
  font-weight: 900;
  line-height: 1.3;
  border-left: 8px solid var(--primary);
  padding-left: 0.25em;
}

.topmessage-box {
  background: var(--white);
  padding: clamp(24px, 5.3333333333vw, 64px);
  position: relative;
}
.topmessage-box .message-heading {
  position: absolute;
  right: clamp(16px, 5.3333333333vw, 64px);
  top: -100px;
  text-align: right;
}
@media (max-width: 767px) {
  .topmessage-box .message-heading {
    position: initial;
    margin-bottom: 1em;
  }
}
.topmessage-box .message-heading span {
  color: var(--white);
  font-size: clamp(1.125rem, 0.125rem + 2.5vw, 2rem);
  line-height: 1.2;
  margin-top: 0.2em;
  background: var(--primary);
  display: inline-block;
  padding: 0.125em 0.5em 0.25em;
}
.topmessage-box .text-l {
  font-size: clamp(1rem, 0.7142857143rem + 0.7142857143vw, 1.25rem);
  margin-top: 0.5em;
}

.overview-wrap {
  display: grid;
  grid-template-columns: 4fr 11fr;
}
@media (max-width: 767px) {
  .overview-wrap {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.overview-list {
  border-top: 1px solid var(--border);
}
.overview-list > li {
  padding: 1em;
  display: grid;
  grid-template-columns: 7em 1fr;
  border-bottom: 1px solid var(--border);
}
.overview-list > li .item {
  font-weight: 700;
}

.shop-list-wrap {
  display: flex;
  flex-direction: column;
  gap: clamp(56px, 6.6666666667vw, 80px);
}

.shop-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 4vw, 48px);
}
@media (max-width: 767px) {
  .shop-list {
    grid-template-columns: 1fr;
  }
}
.shop-list figure {
  aspect-ratio: 3/2;
  overflow: hidden;
}
.shop-list figure img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}

.recruit-visual-wrap {
  position: relative;
  padding: 24px 0 0;
  background: var(--primary-pale);
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: clamp(6px, 1vw, 12px);
}
.recruit-visual-wrap .slide-lr,
.recruit-visual-wrap .slide-rl {
  display: flex;
}
.recruit-visual-wrap .slide-lr {
  width: 320%;
  gap: clamp(6px, 1vw, 12px);
  -webkit-animation: slideMove 36s linear infinite;
          animation: slideMove 36s linear infinite;
}
.recruit-visual-wrap .slide-lr .slide-img {
  width: 40vw;
  overflow: hidden;
  border-radius: 8px;
}
.recruit-visual-wrap .slide-rl {
  width: 240%;
  gap: clamp(6px, 1vw, 12px);
  -webkit-animation: slideMove2 36s linear infinite;
          animation: slideMove2 36s linear infinite;
}
.recruit-visual-wrap .slide-rl .slide-img {
  width: 40vw;
  overflow: hidden;
  border-radius: 8px;
}
.recruit-visual-wrap .title {
  font-size: 13.8vw;
  font-family: "Poppins", sans-serif;
  font-weight: 900;
  color: var(--primary);
  line-height: 0.7;
  position: absolute;
  left: -0.1em;
  bottom: 0;
}

.bg-text-joinus {
  position: relative;
}
.bg-text-joinus::before {
  content: "JOIN US!";
  font-size: 19vw;
  font-weight: 900;
  font-family: "Poppins", sans-serif;
  white-space: nowrap;
  color: var(--bg);
  mix-blend-mode: screen;
  opacity: 0.3;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 0;
}
@media (max-width: 767px) {
  .bg-text-joinus::before {
    top: 40px;
  }
}

.recruit-img-area {
  padding-inline: 1rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(8px, 2vw, 24px);
}
.recruit-img-area figure:nth-of-type(even) {
  margin-top: 2vw;
}

.column-white {
  background: var(--white);
  padding: clamp(16px, 5.3333333333vw, 64px);
}
@media (max-width: 767px) {
  .column-white {
    padding: 16px;
  }
}

@media (max-width: 767px) {
  .sp70 {
    width: 70%;
  }
}
.interview-list {
  display: flex;
  flex-direction: column;
  gap: clamp(32px, 4vw, 48px);
}
.interview-list .list-item {
  display: grid;
  grid-template-columns: 436fr 552fr;
  gap: clamp(16px, 2.6666666667vw, 32px);
}
.interview-list .list-item figure {
  border-radius: 8px;
  overflow: hidden;
}
@media (max-width: 767px) {
  .interview-list .list-item {
    grid-template-columns: 1fr;
  }
}

.interview-heading {
  padding: 1em 0.25em;
  background: linear-gradient(to top, transparent 30%, #FDB86D 30%, #FDB86D 70%, transparent 70%);
  font-size: clamp(1.5rem, 0.3571428571rem + 2.8571428571vw, 2.5rem);
  line-height: 1.5;
  font-weight: 900;
}

.form-wrap {
  background: #fff;
  padding: clamp(16px, 6.6666666667vw, 80px) 16px;
  border-radius: 10px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-group + .form-group {
  margin-top: 24px;
}
.form-group br {
  display: none;
}
.form-group > p {
  display: contents;
}
.form-group label {
  font-weight: 700;
  display: block;
}
.form-group label.radio-label {
  font-weight: 400;
  display: inline;
}
.form-group label .required {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  font-size: clamp(0.625rem, 0.4821428571rem + 0.3571428571vw, 0.75rem);
  font-weight: 400;
  line-height: 1;
  padding: 4px 8px;
  border-radius: 2px;
  margin-left: 8px;
}

input[type=text],
input[type=email],
input[type=tel],
textarea {
  width: 100%;
  border: 1px solid #ccc;
  background: #f7f7f7;
  border-radius: 4px;
  padding: 12px 15px;
}

textarea {
  height: 120px;
}

.wpcf7-form {
  letter-spacing: 0;
}

.checkbox-group label {
  padding-left: 2em;
  position: relative;
  font-size: clamp(0.8125rem, 0.5982142857rem + 0.5357142857vw, 1rem);
}
.checkbox-group label::before {
  content: "";
  width: 1.5em;
  aspect-ratio: 1;
  border: 1px solid #ccc;
  position: absolute;
  left: 0;
  top: 0;
}

input.confirm-check {
  display: none;
}

.checkbox-group label:has(:checked)::before {
  background: var(--primary);
  border-color: var(--primary);
}

.checkbox-group label:has(:checked)::after {
  content: "";
  width: 0.4em;
  height: 0.8em;
  display: block;
  border-bottom: 2px solid #fff;
  border-right: 1px solid #fff;
  position: absolute;
  left: 0.6em;
  top: 0.25em;
  transform: rotate(45deg);
}

.wpcf7-form-control {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.wpcf7-list-item-label {
  font-weight: 400;
}

.wpcf7-list-item {
  margin-left: 0;
}

.wpcf7-not-valid-tip {
  margin-top: 8px;
  font-size: clamp(0.6875rem, 0.6160714286rem + 0.1785714286vw, 0.75rem);
}

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

.wpcf7-radio label {
  padding-left: 1.25em;
  position: relative;
}
.wpcf7-radio label::before {
  content: "";
  width: 1em;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid var(--text);
  position: absolute;
  left: 0;
  top: calc(0.5lh - 0.5em);
}
.wpcf7-radio label:has(:checked)::after {
  content: "";
  width: 0.5em;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--primary);
  position: absolute;
  left: 0.25em;
  top: calc(0.5lh - 0.25em);
}
/*# sourceMappingURL=style.css.map */