@keyframes infinity-scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes infinity-scroll-right {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(0);
  }
}
[data-aos=fade-up] {
  transform: translate3d(0, 8rem, 0);
}

html,
body {
  font-size: 62.5% !important;
}

:root {
  --white: #fff;
  --base-c: #333333;
  --accent-c: #B2071B;
  --ja-font: "Noto Sans JP";
  --en-font: "Montserrat";
  --base-size: clamp(1.4rem, 1.333vw, 1.6rem);
  --sub-size: 1.2rem;
  --mini-size: 1rem;
  --h1-size: clamp(5.6rem, 6vw, 7.2rem);
  --h2-size: clamp(3.2rem, 3.2vw, 4.8rem);
  --h3-size: clamp(2.4rem, 2.666vw, 3.2rem);
  --h4-size: clamp(1.8rem, 2vw, 2.4rem);
  --list-border: solid 1px rgba(27, 30, 41, 0.16);
  --size-1: clamp(0.4rem, 0.667vw, 0.8rem);
  --size-2: clamp(0.8rem, 1.333vw, 1.6rem);
  --size-3: clamp(1.6rem, 2vw, 2.4rem);
  --size-4: clamp(2.4rem, 2.667vw, 3.2rem);
  --size-5: clamp(3.2rem, 3.333vw, 4rem);
  --size-6: clamp(4rem, 4vw, 4.8rem);
  --size-7: clamp(4.8rem, 4.667vw, 5.6rem);
  --size-8: clamp(5.6rem, 5.333vw, 6.4rem);
  --size-9: clamp(6.4rem, 6vw, 7.2rem);
  --size-10: clamp(7.2rem, 6.667vw, 8rem);
  --size-11: clamp(8rem, 7.333vw, 8.8rem);
  --size-12: clamp(8.8rem, 8vw, 9.6rem);
  --size-13: clamp(9.6rem, 8.667vw, 10.4rem);
  --size-14: clamp(10.4rem, 9.333vw, 11.2rem);
  --size-15: clamp(11.2rem, 10vw, 12rem);
  --size-16: clamp(12rem, 10.667vw, 12.8rem);
  --size-17: clamp(12.8rem, 11.333vw, 13.6rem);
  --size-18: clamp(13.6rem, 12vw, 14.4rem);
  --size-19: clamp(14.4rem, 12.667vw, 15.2rem);
  --size-20: clamp(15.2rem, 13.333vw, 16rem);
  --size-30: 24rem;
}

body.is-load {
  opacity: 1;
}
body::before {
  content: "";
  width: 100%;
  height: 100vh;
  display: block;
  opacity: 0;
  background: rgba(27, 30, 41, 0.72);
  position: fixed;
  top: 0;
  left: 0;
  z-index: -90;
  transition: all 0.4s cubic-bezier(0.5, 1, 0.89, 1);
}
body.block {
  overflow: hidden !important;
  position: relative;
}
body.block::before {
  opacity: 1;
  z-index: 90;
}

/* A Modern CSS Reset */
/*! destyle.css v2.0.2 | MIT License | https://github.com/nicolas-cusan/destyle.css */
/* Reset box-model and set borders */
/* ============================================ */
*,
::before,
::after {
  box-sizing: border-box;
  border-style: solid;
  border-width: 0;
}

/* Document */
/* ============================================ */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 * 3. Remove gray overlay on links for iOS.
 */
html {
  line-height: 1.15;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
  -webkit-tap-highlight-color: transparent;
  /* 3*/
}

/* Sections */
/* ============================================ */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

/* Vertical rhythm */
/* ============================================ */
p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl {
  margin: 0;
}

/* Headings */
/* ============================================ */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  line-height: inherit;
  font-weight: inherit;
  margin: 0;
}

/* Lists (enumeration) */
/* ============================================ */
ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Lists (definition) */
/* ============================================ */
dt {
  font-weight: bold;
}

dd {
  margin-left: 0;
}

/* Grouping content */
/* ============================================ */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */
  border-top-width: 1px;
  margin: 0;
  clear: both;
  color: inherit;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace;
  /* 1 */
  font-size: inherit;
  /* 2 */
}

address {
  font-style: inherit;
}

/* Text-level semantics */
/* ============================================ */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
  text-decoration: none;
  color: inherit;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  text-decoration: underline;
  /* 2 */
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
  /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace;
  /* 1 */
  font-size: inherit;
  /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content */
/* ============================================ */
/**
 * Prevent vertical alignment issues.
 */
img,
embed,
object,
iframe {
  vertical-align: bottom;
}

/* Forms */
/* ============================================ */
/**
 * Reset form fields to make them styleable
 */
button,
input,
optgroup,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  background: transparent;
  padding: 0;
  margin: 0;
  outline: 0;
  border-radius: 0;
  text-align: inherit;
}

/**
 * Reset radio and checkbox appearance to preserve their look in iOS.
 */
[type=checkbox] {
  -webkit-appearance: checkbox;
  -moz-appearance: checkbox;
       appearance: checkbox;
}

[type=radio] {
  -webkit-appearance: radio;
  -moz-appearance: radio;
       appearance: radio;
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
  /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
  /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}

button[disabled],
[type=button][disabled],
[type=reset][disabled],
[type=submit][disabled] {
  cursor: default;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Remove arrow in IE10 & IE11
 */
select::-ms-expand {
  display: none;
}

/**
 * Remove padding
 */
option {
  padding: 0;
}

/**
 * Reset to invisible
 */
fieldset {
  margin: 0;
  padding: 0;
  min-width: 0;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  color: inherit;
  /* 2 */
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  padding: 0;
  /* 3 */
  white-space: normal;
  /* 1 */
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the outline style in Safari.
 */
[type=search] {
  outline-offset: -2px;
  /* 1 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */
}

/**
 * Clickable labels
 */
label[for] {
  cursor: pointer;
}

/* Interactive */
/* ============================================ */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/*
 * Remove outline for editable content.
 */
[contenteditable] {
  outline: none;
}

/* Table */
/* ============================================ */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption {
  text-align: left;
}

td,
th {
  vertical-align: top;
  padding: 0;
}

th {
  text-align: left;
  font-weight: bold;
}

/* Misc */
/* ============================================ */
/**
 * Add the correct display in IE 10+.
 */
template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */
[hidden] {
  display: none;
}

.link-btn {
  width: -moz-fit-content;
  width: fit-content;
  min-width: 15rem;
  height: 4.6rem;
  padding: 1.2rem 1.2rem 1.2rem var(--size-3);
  color: var(--white);
  background: var(--accent-c);
  border: solid 1px var(--accent-c);
  border-radius: 2.4rem;
  transition: all 0.4s cubic-bezier(0.5, 1, 0.89, 1);
}
.link-btn span {
  margin-left: var(--size-3);
  padding: 0.8rem 1.2rem;
  background: var(--white);
  border-radius: 1.6rem;
  transition: all 0.4s cubic-bezier(0.5, 1, 0.89, 1);
}
.link-btn span svg path {
  fill: var(--accent-c);
  transition: all 0.4s cubic-bezier(0.5, 1, 0.89, 1);
}
.link-btn:hover {
  color: var(--accent-c);
  background: var(--white);
}
.link-btn:hover span {
  background: var(--accent-c);
}
.link-btn:hover span svg path {
  fill: var(--white);
}
.link-btn__reverse {
  width: -moz-fit-content;
  width: fit-content;
  min-width: 15rem;
  height: 4.6rem;
  padding: 1.2rem 1.2rem 1.2rem var(--size-3);
  color: var(--accent-c);
  background: var(--white);
  border: solid 1px var(--accent-c);
  border-radius: 2.4rem;
  transition: all 0.4s cubic-bezier(0.5, 1, 0.89, 1);
}
.link-btn__reverse span {
  margin-left: var(--size-3);
  padding: 0.8rem 1.2rem;
  background: var(--accent-c);
  border-radius: 1.6rem;
  transition: all 0.4s cubic-bezier(0.5, 1, 0.89, 1);
}
.link-btn__reverse span svg path {
  fill: var(--white);
  transition: all 0.4s cubic-bezier(0.5, 1, 0.89, 1);
}
.link-btn__reverse:hover {
  color: var(--white);
  background: var(--accent-c);
}
.link-btn__reverse:hover span {
  background: var(--white);
}
.link-btn__reverse:hover span svg path {
  fill: var(--accent-c);
}
.link-btn.none {
  background: rgba(51, 51, 51, 0.48);
  border: unset;
  color: rgba(255, 255, 255, 0.48);
  pointer-events: none !important;
}
.link-btn.none span {
  background: rgba(51, 51, 51, 0.08);
}
.link-btn.none span svg path {
  fill: rgba(51, 51, 51, 0.24);
}
.link-arrow {
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.8rem 1.2rem;
  background: var(--white);
  border-radius: 1.6rem;
  transition: all 0.4s cubic-bezier(0.5, 1, 0.89, 1);
}
.link-arrow svg path {
  fill: var(--accent-c);
  transition: all 0.4s cubic-bezier(0.5, 1, 0.89, 1);
}
.link-arrow:hover {
  background: var(--accent-c);
}
.link-arrow:hover svg path {
  fill: var(--white);
}
.link-arrow__reverse {
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.4rem 0.8rem;
  background: var(--accent-c);
  border-radius: 1.6rem;
  transition: all 0.4s cubic-bezier(0.5, 1, 0.89, 1);
}
.link-arrow__reverse svg {
  width: 1.2rem;
}
.link-arrow__reverse svg path {
  fill: var(--white);
  transition: all 0.4s cubic-bezier(0.5, 1, 0.89, 1);
}
.link-arrow__reverse:hover {
  background: var(--white);
}
.link-arrow__reverse:hover svg path {
  fill: var(--accent-c);
}

.hum-btn {
  width: var(--size-10);
  height: var(--size-10);
  background: var(--accent-c);
  border: solid 1px var(--accent-c);
  position: relative;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.5, 1, 0.89, 1);
}
.hum-btn span {
  width: var(--size-6);
  margin: auto;
  position: absolute;
  transition: all 0.2s cubic-bezier(0.5, 1, 0.89, 1);
}
.hum-btn span:first-child {
  top: 45%;
  border-top: solid 1px var(--white);
}
.hum-btn span:last-child {
  top: 55%;
  border-top: solid 1px var(--white);
}
.hum-btn:hover {
  background: var(--white);
}
.hum-btn:hover span {
  border-top: solid 1px var(--accent-c);
}
.hum-btn.active span:first-child {
  top: 50%;
  transform: rotate(-30deg);
}
.hum-btn.active span:last-child {
  top: 50%;
  transform: rotate(30deg);
}

img {
  width: 100%;
  height: auto;
}

.img {
  position: relative;
  overflow: hidden;
}
.img img {
  transition: transform 0.4s cubic-bezier(0.5, 1, 0.89, 1);
}
.img-cover {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

html :where(img[class*=wp-image-]) {
  width: auto !important;
  height: auto !important;
  max-width: unset !important;
}

.contact section {
  width: 100%;
  max-width: 98rem;
  margin: 0 auto;
}
@media screen and (max-width: 1300px) {
  .contact section {
    max-width: calc(100% - (var(--size-10)) * 2);
  }
}
@media screen and (max-width: 767px) {
  .contact section {
    max-width: 100%;
  }
}
.contact-list {
  max-width: 98rem !important;
}
.contact-list-item {
  padding: 2rem 0;
}
@media screen and (max-width: 959px) {
  .contact-list-item {
    flex-direction: column;
  }
}
.contact-list-item dt {
  width: 25.714% !important;
  margin-top: 0.575rem;
  margin-bottom: 0.575rem;
}
.contact-list-item dt .ttl {
  width: 71.428%;
  font-size: 1.6rem;
  font-weight: bold;
}
.contact-list-item dt .required {
  padding: 0.4rem 1.2rem;
  font-weight: bold;
  color: var(--white);
  background: var(--accent-c);
  border-radius: 0.2rem;
}
@media screen and (max-width: 959px) {
  .contact-list-item dt {
    width: 100% !important;
    margin: 0 0 var(--size-2) 0;
    padding: 0;
  }
  .contact-list-item dt .ttl {
    width: auto;
    margin-right: auto;
  }
  .contact-list-item dt .required {
    padding: 0.2rem 0.8rem;
    font-size: 1.2rem;
  }
}
.contact-list-item.detail dt {
  margin-top: unset;
}
.contact-list-item dd {
  width: 74.286% !important;
}
.contact-list-item dd [data-name=your-name],
.contact-list-item dd [data-name=your-furigana],
.contact-list-item dd [data-name=tel],
.contact-list-item dd [data-name=your-email],
.contact-list-item dd [data-name=detail] {
  width: 100%;
}
.contact-list-item dd [data-name=your-name] > input, .contact-list-item dd [data-name=your-name] > textarea,
.contact-list-item dd [data-name=your-furigana] > input,
.contact-list-item dd [data-name=your-furigana] > textarea,
.contact-list-item dd [data-name=tel] > input,
.contact-list-item dd [data-name=tel] > textarea,
.contact-list-item dd [data-name=your-email] > input,
.contact-list-item dd [data-name=your-email] > textarea,
.contact-list-item dd [data-name=detail] > input,
.contact-list-item dd [data-name=detail] > textarea {
  width: 100%;
  padding: 0.8rem 1.6rem;
  background: rgba(51, 51, 51, 0.06);
  border-radius: 0.2rem;
  font-size: 1.6rem !important;
  line-height: 1.75;
}
@media screen and (max-width: 959px) {
  .contact-list-item dd {
    width: 100% !important;
  }
  .contact-list-item dd input {
    padding: 1.2rem 1.6rem;
  }
}
.contact-list-item.last {
  border-bottom: solid 1px rgba(34, 34, 34, 0.16);
}
.contact-list-item.last dt {
  width: auto !important;
}
.contact-list-item.last dd [data-name=acceptance-344] input[type=checkbox] {
  width: 2.4rem;
  height: 2.4rem;
  margin-right: var(--size-1);
  padding: 0;
  border: solid 1px rgba(27, 30, 41, 0.32);
  border-radius: 0.2rem;
  position: relative;
  -moz-appearance: none;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
}
.contact-list-item.last dd [data-name=acceptance-344] input[type=checkbox]::before {
  content: "";
  width: 1.6rem;
  height: 1.6rem;
  margin: auto;
  background: var(--accent-c);
  border-radius: 0.2rem;
  opacity: 0;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.contact-list-item.last dd [data-name=acceptance-344] input[type=checkbox]:checked::before {
  content: "";
  opacity: 1;
}
.contact-list-item.last dd [data-name=acceptance-344] span {
  margin: 0 !important;
  font-size: 1.6rem;
  line-height: 1.75;
}
.contact-list-item.last dd [data-name=acceptance-344] + span {
  vertical-align: middle;
}
.contact-list-item.last dd [data-name=acceptance-344] + span a {
  display: inline-block;
  position: relative;
  border-bottom: solid 1px rgba(51, 51, 51, 0.32);
}
.contact-list-item.last dd [data-name=acceptance-344] + span a::before {
  content: attr(data);
  display: block;
}
.contact-list-item.last dd [data-name=acceptance-344] + span a::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  background-color: var(--base-c);
  transition: width 300ms;
  width: 0;
}
.contact-list-item.last dd [data-name=acceptance-344] + span a:hover::after {
  width: 100%;
}
@media screen and (max-width: 959px) {
  .contact-list-item.last {
    align-items: flex-start;
  }
  .contact-list-item.last dd {
    width: auto !important;
    align-items: flex-start;
  }
  .contact-list-item.last dd [data-name=acceptance-344] input[type=checkbox] {
    margin-right: 1.2rem;
  }
  .contact-list-item.last dd [data-name=acceptance-344] span {
    width: -moz-fit-content;
    width: fit-content;
  }
  .contact-list-item.last dd [data-name=acceptance-344] + span {
    width: calc(100% - 3.6rem);
    vertical-align: text-top;
  }
}
.contact .cap {
  display: block;
  font-size: var(--base-size);
  line-height: 1.75;
}
.contact .link-btn-contact {
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
}
.contact .link-btn-contact::before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  background: var(--accent-c);
  border: solid 1px var(--accent-c);
  border-radius: 2.4rem;
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.4s cubic-bezier(0.5, 1, 0.89, 1);
}
.contact .link-btn-contact input {
  width: -moz-fit-content;
  width: fit-content;
  min-width: 15rem;
  height: 4.6rem;
  padding: 1.2rem 1.2rem 1.2rem var(--size-3);
  line-height: 1.35;
  color: var(--white);
  position: relative;
  transition: all 0.4s cubic-bezier(0.5, 1, 0.89, 1);
  z-index: 2;
}
.contact .link-btn-contact .arrow {
  padding: 0.8rem 1.2rem;
  background: var(--white);
  border: solid 1px var(--accent-c);
  border-radius: 1.6rem;
  position: absolute;
  right: 1.2rem;
  transition: all 0.4s cubic-bezier(0.5, 1, 0.89, 1);
  z-index: 1;
}
.contact .link-btn-contact .arrow svg path {
  fill: var(--accent-c);
  transition: all 0.4s cubic-bezier(0.5, 1, 0.89, 1);
}
.contact .link-btn-contact:hover::before {
  background: var(--white);
}
.contact .link-btn-contact:hover input {
  color: var(--accent-c);
}
.contact .link-btn-contact:hover .arrow {
  background: var(--accent-c);
}
.contact .link-btn-contact:hover .arrow svg path {
  fill: var(--white);
}

.wpcf7-spinner {
  display: none !important;
}

.wpcf7-not-valid-tip {
  margin-top: var(--size-1);
  font-size: 1.2rem !important;
  font-weight: bold !important;
  line-height: 1;
  color: var(--accent-c);
}
@media screen and (max-width: 959px) {
  .wpcf7-not-valid-tip {
    margin-top: 1.2rem;
  }
}

.wpcf7 form .wpcf7-response-output {
  display: none !important;
}

.thanks section {
  width: 100%;
  max-width: 98rem;
  margin: 0 auto;
}
.thanks section .link-btn {
  margin-right: auto;
  margin-left: auto;
}

.mv {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  position: relative;
}
.mv::before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  margin: auto;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 25%, #333 97%);
  background-blend-mode: multiply;
  z-index: 2;
}
.mv-copy {
  width: 100%;
  padding: 0 var(--size-6);
  position: absolute;
  bottom: 13rem;
  opacity: 0;
  z-index: 10;
}
.mv-copy span {
  font-weight: bold;
  letter-spacing: 0.04em;
  color: var(--white);
}
.mv-copy span.main {
  font-size: clamp(5.6rem, 4.266vw, 6.4rem);
  line-height: 1.125;
}
.mv-copy span.sub {
  font-size: var(--base-size);
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .mv-copy {
    padding: 0 clamp(1.6rem, 5.215vw, 4rem);
  }
  .mv-copy span.main {
    font-size: min(9.032vw, 5.6rem);
    margin-bottom: clamp(1.6rem, 3.129vw, 2.4rem);
  }
  .mv-copy span.sub {
    font-size: clamp(1.2rem, 1.825vw, 1.4rem);
  }
}
.mv .news {
  width: 100%;
  height: var(--size-10);
  margin: 0 auto;
  padding: 0 var(--size-6);
  position: absolute;
  bottom: 0;
  z-index: 10;
}
.mv .news::before {
  content: "";
  width: calc(100% - var(--size-11));
  margin: auto;
  display: block;
  border-top: solid 1px var(--white);
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .mv .news {
    padding: 0 clamp(1.6rem, 5.215vw, 4rem);
  }
  .mv .news::before {
    width: calc(100% - clamp(1.6rem, 5.215vw, 4rem) * 2);
  }
}
.mv .news p {
  color: var(--white);
  position: relative;
  z-index: 2;
}
.mv .news p.ttl {
  margin-right: var(--size-4);
  padding-right: var(--size-4);
}
.mv .news p.ttl::after {
  content: "";
  height: var(--size-6);
  margin: auto;
  display: block;
  border-right: solid 1px var(--white);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .mv .news p.ttl {
    margin-right: var(--size-3);
    padding-right: var(--size-3);
  }
}
.mv .news a {
  color: var(--white);
  position: relative;
}
.mv .news a.main {
  width: 100%;
  height: 100%;
  transition: all 0.4s cubic-bezier(0.5, 1, 0.89, 1);
}
.mv .news a.main .date,
.mv .news a.main .text {
  color: var(--white);
}
.mv .news a.main .text {
  width: -moz-fit-content;
  width: fit-content;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  overflow-wrap: break-word;
  word-break: break-word;
  position: relative;
}
.mv .news a.main .text::before {
  content: attr(data);
  display: block;
}
.mv .news a.main .text::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  background-color: var(--white);
  transition: width 300ms;
  width: 0;
}
.mv .news a.main:hover .text::after {
  width: 100%;
}
.mv .news a.main:hover + .link-arrow {
  background: var(--accent-c);
}
.mv .news a.main:hover + .link-arrow svg path {
  fill: var(--white);
}
@media screen and (max-width: 767px) {
  .mv .news a.main {
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
  }
  .mv .news a.main .text {
    margin: 0.4rem 0 0 0;
  }
}
.mv .news a.link-arrow {
  margin-left: var(--size-2);
}
.mv .news a.link-only {
  height: 100%;
  margin-left: var(--size-4);
  padding: var(--size-4);
}
.mv .news a.link-only span {
  width: -moz-max-content;
  width: max-content;
  padding-bottom: 0.2rem;
  color: var(--white);
  position: relative;
}
.mv .news a.link-only span::before {
  content: attr(data);
  display: block;
}
.mv .news a.link-only span::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  background-color: var(--white);
  transition: width 300ms;
  width: 0;
}
.mv .news a.link-only::after {
  content: "";
  height: var(--size-6);
  margin: auto;
  display: block;
  border-right: solid 1px var(--white);
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  z-index: 2;
}
.mv .news a.link-only:hover span::after {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .mv .news a.link-only {
    display: none;
  }
}
.mv-slide {
  width: 100%;
  height: 100%;
}
.mv-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 480px) {
  .mv-slide .swiper-slide.sp-position img {
    -o-object-position: 40%;
       object-position: 40%;
  }
}

nav ul li:nth-child(-n+5) {
  margin-right: var(--size-3);
  position: relative;
}
nav ul li:nth-child(-n+5)::before {
  content: attr(data);
  display: block;
}
nav ul li:nth-child(-n+5)::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  background-color: var(--base-c);
  transition: width 300ms;
  width: 0;
}
@media screen and (max-width: 1024px) {
  nav ul li:nth-child(-n+5) {
    display: none;
  }
}
nav ul li:nth-child(-n+5):hover::after {
  width: 100%;
}
@media screen and (max-width: 600px) {
  nav ul li:nth-child(-n+7) {
    display: none;
  }
}
nav ul li a {
  height: 100%;
  display: block;
}

.list {
  width: 100%;
  max-width: 98rem;
  margin: 0 auto;
}
@media screen and (max-width: 1300px) {
  .list {
    max-width: calc(100% - (var(--size-10)) * 2);
  }
}
@media screen and (max-width: 767px) {
  .list {
    max-width: 100%;
  }
}
.list-item {
  border-top: solid 1px rgba(34, 34, 34, 0.16);
}
.list-item dt,
.list-item dd > p,
.list-item dd span {
  font-family: var(--ja-font);
  font-weight: normal;
  font-size: var(--base-size);
  line-height: 1.5;
  overflow-wrap: break-word;
}
.list-item dt {
  width: 30%;
}
.list-item dd {
  width: 70%;
}
@media screen and (max-width: 600px) {
  .list-item {
    flex-direction: column;
  }
  .list-item dt {
    width: 100%;
    padding: 0;
  }
  .list-item dd {
    width: 100%;
  }
}
.list-wide {
  padding: 0 var(--size-10);
}
@media screen and (max-width: 767px) {
  .list-wide {
    margin-top: var(--size-8);
    margin-bottom: var(--size-15);
    padding: 0;
  }
}
.list-wide-item {
  border-top: solid 1px rgba(34, 34, 34, 0.16);
}
.list-wide-item:last-child {
  border-bottom: solid 1px rgba(34, 34, 34, 0.16);
}
.list-wide-item dt,
.list-wide-item dd > p {
  font-weight: normal;
  font-size: var(--base-size);
  line-height: 1.75;
}
@media screen and (max-width: 600px) {
  .list-wide-item dt,
  .list-wide-item dd {
    padding: 0;
  }
}

.flex {
  display: flex;
}
.flex-center {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.flex-start {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.flex-end {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.flex.between {
  justify-content: space-between;
}
.flex.stretch {
  display: flex;
  flex-wrap: wrap;
  justify-content: stretch;
}

.nowrap {
  flex-wrap: nowrap;
}

.wrap {
  flex-wrap: wrap;
}

.reverse {
  flex-direction: row-reverse;
}

.column {
  flex-direction: column;
}

.bk {
  display: block;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
}
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto;
}
.grid-5 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: auto;
}
.grid-6 {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: auto;
}
@media screen and (max-width: 959px) {
  .grid-2 {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: auto;
  }
  .grid-3, .grid-4, .grid-6 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }
}
@media screen and (max-width: 480px) {
  .grid-3, .grid-4, .grid-6 {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: auto;
  }
}

.alg-center {
  align-items: center;
}
.alg-start {
  align-items: flex-start;
}
.alg-end {
  align-items: flex-end;
}

.m-auto {
  margin-right: auto;
  margin-left: auto;
}
.m-t__1 {
  margin-top: var(--size-1);
}
.m-t__2 {
  margin-top: var(--size-2);
}
.m-t__3 {
  margin-top: var(--size-3);
}
.m-t__4 {
  margin-top: var(--size-4);
}
.m-t__5 {
  margin-top: var(--size-5);
}
.m-t__6 {
  margin-top: var(--size-6);
}
.m-t__7 {
  margin-top: var(--size-7);
}
.m-t__8 {
  margin-top: var(--size-8);
}
.m-t__9 {
  margin-top: var(--size-9);
}
.m-t__10 {
  margin-top: var(--size-10);
}
.m-t__11 {
  margin-top: var(--size-11);
}
.m-t__12 {
  margin-top: var(--size-12);
}
.m-t__13 {
  margin-top: var(--size-13);
}
.m-t__14 {
  margin-top: var(--size-14);
}
.m-t__15 {
  margin-top: var(--size-15);
}
.m-t__16 {
  margin-top: var(--size-16);
}
.m-t__17 {
  margin-top: var(--size-17);
}
.m-t__18 {
  margin-top: var(--size-18);
}
.m-t__19 {
  margin-top: var(--size-19);
}
.m-t__20 {
  margin-top: var(--size-20);
}
@media screen and (max-width: 1200px) {
  .m-t__1 {
    margin-top: clamp(0.4rem, 0.667vw, 0.8rem);
  }
  .m-t__2 {
    margin-top: clamp(0.8rem, 1.333vw, 1.6rem);
  }
  .m-t__3 {
    margin-top: clamp(1.6rem, 2vw, 2.4rem);
  }
  .m-t__4 {
    margin-top: clamp(2.4rem, 2.667vw, 3.2rem);
  }
  .m-t__5 {
    margin-top: clamp(3.2rem, 3.333vw, 4rem);
  }
  .m-t__6 {
    margin-top: clamp(4rem, 4vw, 4.8rem);
  }
  .m-t__7 {
    margin-top: clamp(4.8rem, 4.667vw, 5.6rem);
  }
  .m-t__8 {
    margin-top: clamp(5.6rem, 5.333vw, 6.4rem);
  }
  .m-t__9 {
    margin-top: clamp(6.4rem, 6vw, 7.2rem);
  }
  .m-t__10 {
    margin-top: clamp(7.2rem, 6.667vw, 8rem);
  }
  .m-t__11 {
    margin-top: clamp(8rem, 7.333vw, 8.8rem);
  }
  .m-t__12 {
    margin-top: clamp(8.8rem, 8vw, 9.6rem);
  }
  .m-t__13 {
    margin-top: clamp(9.6rem, 8.667vw, 10.4rem);
  }
  .m-t__14 {
    margin-top: clamp(10.4rem, 9.333vw, 11.2rem);
  }
  .m-t__15 {
    margin-top: clamp(11.2rem, 10vw, 12rem);
  }
  .m-t__16 {
    margin-top: clamp(12rem, 10.667vw, 12.8rem);
  }
  .m-t__17 {
    margin-top: clamp(12.8rem, 11.333vw, 13.6rem);
  }
  .m-t__18 {
    margin-top: clamp(13.6rem, 12vw, 14.4rem);
  }
  .m-t__19 {
    margin-top: clamp(14.4rem, 12.667vw, 15.2rem);
  }
  .m-t__20 {
    margin-top: clamp(15.2rem, 13.333vw, 16rem);
  }
}
.m-b__1 {
  margin-bottom: var(--size-1);
}
.m-b__2 {
  margin-bottom: var(--size-2);
}
.m-b__3 {
  margin-bottom: var(--size-3);
}
.m-b__4 {
  margin-bottom: var(--size-4);
}
.m-b__5 {
  margin-bottom: var(--size-5);
}
.m-b__6 {
  margin-bottom: var(--size-6);
}
.m-b__7 {
  margin-bottom: var(--size-7);
}
.m-b__8 {
  margin-bottom: var(--size-8);
}
.m-b__9 {
  margin-bottom: var(--size-9);
}
.m-b__10 {
  margin-bottom: var(--size-10);
}
.m-b__11 {
  margin-bottom: var(--size-11);
}
.m-b__12 {
  margin-bottom: var(--size-12);
}
.m-b__13 {
  margin-bottom: var(--size-13);
}
.m-b__14 {
  margin-bottom: var(--size-14);
}
.m-b__15 {
  margin-bottom: var(--size-15);
}
.m-b__16 {
  margin-bottom: var(--size-16);
}
.m-b__17 {
  margin-bottom: var(--size-17);
}
.m-b__18 {
  margin-bottom: var(--size-18);
}
.m-b__19 {
  margin-bottom: var(--size-19);
}
.m-b__20 {
  margin-bottom: var(--size-20);
}
@media screen and (max-width: 1200px) {
  .m-b__1 {
    margin-bottom: clamp(0.4rem, 0.667vw, 0.8rem);
  }
  .m-b__2 {
    margin-bottom: clamp(0.8rem, 1.333vw, 1.6rem);
  }
  .m-b__3 {
    margin-bottom: clamp(1.6rem, 2vw, 2.4rem);
  }
  .m-b__4 {
    margin-bottom: clamp(2.4rem, 2.667vw, 3.2rem);
  }
  .m-b__5 {
    margin-bottom: clamp(3.2rem, 3.333vw, 4rem);
  }
  .m-b__6 {
    margin-bottom: clamp(4rem, 4vw, 4.8rem);
  }
  .m-b__7 {
    margin-bottom: clamp(4.8rem, 4.667vw, 5.6rem);
  }
  .m-b__8 {
    margin-bottom: clamp(5.6rem, 5.333vw, 6.4rem);
  }
  .m-b__9 {
    margin-bottom: clamp(6.4rem, 6vw, 7.2rem);
  }
  .m-b__10 {
    margin-bottom: clamp(7.2rem, 6.667vw, 8rem);
  }
  .m-b__11 {
    margin-bottom: clamp(8rem, 7.333vw, 8.8rem);
  }
  .m-b__12 {
    margin-bottom: clamp(8.8rem, 8vw, 9.6rem);
  }
  .m-b__13 {
    margin-bottom: clamp(9.6rem, 8.667vw, 10.4rem);
  }
  .m-b__14 {
    margin-bottom: clamp(10.4rem, 9.333vw, 11.2rem);
  }
  .m-b__15 {
    margin-bottom: clamp(11.2rem, 10vw, 12rem);
  }
  .m-b__16 {
    margin-bottom: clamp(12rem, 10.667vw, 12.8rem);
  }
  .m-b__17 {
    margin-bottom: clamp(12.8rem, 11.333vw, 13.6rem);
  }
  .m-b__18 {
    margin-bottom: clamp(13.6rem, 12vw, 14.4rem);
  }
  .m-b__19 {
    margin-bottom: clamp(14.4rem, 12.667vw, 15.2rem);
  }
  .m-b__20 {
    margin-bottom: clamp(15.2rem, 13.333vw, 16rem);
  }
}
.m-r__1 {
  margin-right: var(--size-1);
}
.m-r__2 {
  margin-right: var(--size-2);
}
.m-r__3 {
  margin-right: var(--size-3);
}
.m-r__4 {
  margin-right: var(--size-4);
}
.m-r__5 {
  margin-right: var(--size-5);
}
.m-r__6 {
  margin-right: var(--size-6);
}
.m-r__7 {
  margin-right: var(--size-7);
}
.m-r__8 {
  margin-right: var(--size-8);
}
.m-r__9 {
  margin-right: var(--size-9);
}
.m-r__10 {
  margin-right: var(--size-10);
}
.m-r__11 {
  margin-right: var(--size-11);
}
.m-r__12 {
  margin-right: var(--size-12);
}
.m-r__13 {
  margin-right: var(--size-13);
}
.m-r__14 {
  margin-right: var(--size-14);
}
.m-r__15 {
  margin-right: var(--size-15);
}
.m-r__16 {
  margin-right: var(--size-16);
}
.m-r__17 {
  margin-right: var(--size-17);
}
.m-r__18 {
  margin-right: var(--size-18);
}
.m-r__19 {
  margin-right: var(--size-19);
}
.m-r__20 {
  margin-right: var(--size-20);
}
@media screen and (max-width: 1200px) {
  .m-r__1 {
    margin-right: clamp(0.4rem, 0.667vw, 0.8rem);
  }
  .m-r__2 {
    margin-right: clamp(0.8rem, 1.333vw, 1.6rem);
  }
  .m-r__3 {
    margin-right: clamp(1.6rem, 2vw, 2.4rem);
  }
  .m-r__4 {
    margin-right: clamp(2.4rem, 2.667vw, 3.2rem);
  }
  .m-r__5 {
    margin-right: clamp(3.2rem, 3.333vw, 4rem);
  }
  .m-r__6 {
    margin-right: clamp(4rem, 4vw, 4.8rem);
  }
  .m-r__7 {
    margin-right: clamp(4.8rem, 4.667vw, 5.6rem);
  }
  .m-r__8 {
    margin-right: clamp(5.6rem, 5.333vw, 6.4rem);
  }
  .m-r__9 {
    margin-right: clamp(6.4rem, 6vw, 7.2rem);
  }
  .m-r__10 {
    margin-right: clamp(7.2rem, 6.667vw, 8rem);
  }
  .m-r__11 {
    margin-right: clamp(8rem, 7.333vw, 8.8rem);
  }
  .m-r__12 {
    margin-right: clamp(8.8rem, 8vw, 9.6rem);
  }
  .m-r__13 {
    margin-right: clamp(9.6rem, 8.667vw, 10.4rem);
  }
  .m-r__14 {
    margin-right: clamp(10.4rem, 9.333vw, 11.2rem);
  }
  .m-r__15 {
    margin-right: clamp(11.2rem, 10vw, 12rem);
  }
  .m-r__16 {
    margin-right: clamp(12rem, 10.667vw, 12.8rem);
  }
  .m-r__17 {
    margin-right: clamp(12.8rem, 11.333vw, 13.6rem);
  }
  .m-r__18 {
    margin-right: clamp(13.6rem, 12vw, 14.4rem);
  }
  .m-r__19 {
    margin-right: clamp(14.4rem, 12.667vw, 15.2rem);
  }
  .m-r__20 {
    margin-right: clamp(15.2rem, 13.333vw, 16rem);
  }
}
.m-l__1 {
  margin-left: var(--size-1);
}
.m-l__2 {
  margin-left: var(--size-2);
}
.m-l__3 {
  margin-left: var(--size-3);
}
.m-l__4 {
  margin-left: var(--size-4);
}
.m-l__5 {
  margin-left: var(--size-5);
}
.m-l__6 {
  margin-left: var(--size-6);
}
.m-l__7 {
  margin-left: var(--size-7);
}
.m-l__8 {
  margin-left: var(--size-8);
}
.m-l__9 {
  margin-left: var(--size-9);
}
.m-l__10 {
  margin-left: var(--size-10);
}
.m-l__11 {
  margin-left: var(--size-11);
}
.m-l__12 {
  margin-left: var(--size-12);
}
.m-l__13 {
  margin-left: var(--size-13);
}
.m-l__14 {
  margin-left: var(--size-14);
}
.m-l__15 {
  margin-left: var(--size-15);
}
.m-l__16 {
  margin-left: var(--size-16);
}
.m-l__17 {
  margin-left: var(--size-17);
}
.m-l__18 {
  margin-left: var(--size-18);
}
.m-l__19 {
  margin-left: var(--size-19);
}
.m-l__20 {
  margin-left: var(--size-20);
}
@media screen and (max-width: 1200px) {
  .m-l__1 {
    margin-left: clamp(0.4rem, 0.667vw, 0.8rem);
  }
  .m-l__2 {
    margin-left: clamp(0.8rem, 1.333vw, 1.6rem);
  }
  .m-l__3 {
    margin-left: clamp(1.6rem, 2vw, 2.4rem);
  }
  .m-l__4 {
    margin-left: clamp(2.4rem, 2.667vw, 3.2rem);
  }
  .m-l__5 {
    margin-left: clamp(3.2rem, 3.333vw, 4rem);
  }
  .m-l__6 {
    margin-left: clamp(4rem, 4vw, 4.8rem);
  }
  .m-l__7 {
    margin-left: clamp(4.8rem, 4.667vw, 5.6rem);
  }
  .m-l__8 {
    margin-left: clamp(5.6rem, 5.333vw, 6.4rem);
  }
  .m-l__9 {
    margin-left: clamp(6.4rem, 6vw, 7.2rem);
  }
  .m-l__10 {
    margin-left: clamp(7.2rem, 6.667vw, 8rem);
  }
  .m-l__11 {
    margin-left: clamp(8rem, 7.333vw, 8.8rem);
  }
  .m-l__12 {
    margin-left: clamp(8.8rem, 8vw, 9.6rem);
  }
  .m-l__13 {
    margin-left: clamp(9.6rem, 8.667vw, 10.4rem);
  }
  .m-l__14 {
    margin-left: clamp(10.4rem, 9.333vw, 11.2rem);
  }
  .m-l__15 {
    margin-left: clamp(11.2rem, 10vw, 12rem);
  }
  .m-l__16 {
    margin-left: clamp(12rem, 10.667vw, 12.8rem);
  }
  .m-l__17 {
    margin-left: clamp(12.8rem, 11.333vw, 13.6rem);
  }
  .m-l__18 {
    margin-left: clamp(13.6rem, 12vw, 14.4rem);
  }
  .m-l__19 {
    margin-left: clamp(14.4rem, 12.667vw, 15.2rem);
  }
  .m-l__20 {
    margin-left: clamp(15.2rem, 13.333vw, 16rem);
  }
}

.p-t__1 {
  padding-top: var(--size-1);
}
.p-t__2 {
  padding-top: var(--size-2);
}
.p-t__3 {
  padding-top: var(--size-3);
}
.p-t__4 {
  padding-top: var(--size-4);
}
.p-t__5 {
  padding-top: var(--size-5);
}
.p-t__6 {
  padding-top: var(--size-6);
}
.p-t__7 {
  padding-top: var(--size-7);
}
.p-t__8 {
  padding-top: var(--size-8);
}
.p-t__9 {
  padding-top: var(--size-9);
}
.p-t__10 {
  padding-top: var(--size-10);
}
.p-t__11 {
  padding-top: var(--size-11);
}
.p-t__12 {
  padding-top: var(--size-12);
}
.p-t__13 {
  padding-top: var(--size-13);
}
.p-t__14 {
  padding-top: var(--size-14);
}
.p-t__15 {
  padding-top: var(--size-15);
}
.p-t__16 {
  padding-top: var(--size-16);
}
.p-t__17 {
  padding-top: var(--size-17);
}
.p-t__18 {
  padding-top: var(--size-18);
}
.p-t__19 {
  padding-top: var(--size-19);
}
.p-t__20 {
  padding-top: var(--size-20);
}
@media screen and (max-width: 1200px) {
  .p-t__1 {
    padding-top: clamp(0.4rem, 0.667vw, 0.8rem);
  }
  .p-t__2 {
    padding-top: clamp(0.8rem, 1.333vw, 1.6rem);
  }
  .p-t__3 {
    padding-top: clamp(1.6rem, 2vw, 2.4rem);
  }
  .p-t__4 {
    padding-top: clamp(2.4rem, 2.667vw, 3.2rem);
  }
  .p-t__5 {
    padding-top: clamp(3.2rem, 3.333vw, 4rem);
  }
  .p-t__6 {
    padding-top: clamp(4rem, 4vw, 4.8rem);
  }
  .p-t__7 {
    padding-top: clamp(4.8rem, 4.667vw, 5.6rem);
  }
  .p-t__8 {
    padding-top: clamp(5.6rem, 5.333vw, 6.4rem);
  }
  .p-t__9 {
    padding-top: clamp(6.4rem, 6vw, 7.2rem);
  }
  .p-t__10 {
    padding-top: clamp(7.2rem, 6.667vw, 8rem);
  }
  .p-t__11 {
    padding-top: clamp(8rem, 7.333vw, 8.8rem);
  }
  .p-t__12 {
    padding-top: clamp(8.8rem, 8vw, 9.6rem);
  }
  .p-t__13 {
    padding-top: clamp(9.6rem, 8.667vw, 10.4rem);
  }
  .p-t__14 {
    padding-top: clamp(10.4rem, 9.333vw, 11.2rem);
  }
  .p-t__15 {
    padding-top: clamp(11.2rem, 10vw, 12rem);
  }
  .p-t__16 {
    padding-top: clamp(12rem, 10.667vw, 12.8rem);
  }
  .p-t__17 {
    padding-top: clamp(12.8rem, 11.333vw, 13.6rem);
  }
  .p-t__18 {
    padding-top: clamp(13.6rem, 12vw, 14.4rem);
  }
  .p-t__19 {
    padding-top: clamp(14.4rem, 12.667vw, 15.2rem);
  }
  .p-t__20 {
    padding-top: clamp(15.2rem, 13.333vw, 16rem);
  }
}
.p-b__1 {
  padding-bottom: var(--size-1);
}
.p-b__2 {
  padding-bottom: var(--size-2);
}
.p-b__3 {
  padding-bottom: var(--size-3);
}
.p-b__4 {
  padding-bottom: var(--size-4);
}
.p-b__5 {
  padding-bottom: var(--size-5);
}
.p-b__6 {
  padding-bottom: var(--size-6);
}
.p-b__7 {
  padding-bottom: var(--size-7);
}
.p-b__8 {
  padding-bottom: var(--size-8);
}
.p-b__9 {
  padding-bottom: var(--size-9);
}
.p-b__10 {
  padding-bottom: var(--size-10);
}
.p-b__11 {
  padding-bottom: var(--size-11);
}
.p-b__12 {
  padding-bottom: var(--size-12);
}
.p-b__13 {
  padding-bottom: var(--size-13);
}
.p-b__14 {
  padding-bottom: var(--size-14);
}
.p-b__15 {
  padding-bottom: var(--size-15);
}
.p-b__16 {
  padding-bottom: var(--size-16);
}
.p-b__17 {
  padding-bottom: var(--size-17);
}
.p-b__18 {
  padding-bottom: var(--size-18);
}
.p-b__19 {
  padding-bottom: var(--size-19);
}
.p-b__20 {
  padding-bottom: var(--size-20);
}
@media screen and (max-width: 1200px) {
  .p-b__1 {
    padding-bottom: clamp(0.4rem, 0.667vw, 0.8rem);
  }
  .p-b__2 {
    padding-bottom: clamp(0.8rem, 1.333vw, 1.6rem);
  }
  .p-b__3 {
    padding-bottom: clamp(1.6rem, 2vw, 2.4rem);
  }
  .p-b__4 {
    padding-bottom: clamp(2.4rem, 2.667vw, 3.2rem);
  }
  .p-b__5 {
    padding-bottom: clamp(3.2rem, 3.333vw, 4rem);
  }
  .p-b__6 {
    padding-bottom: clamp(4rem, 4vw, 4.8rem);
  }
  .p-b__7 {
    padding-bottom: clamp(4.8rem, 4.667vw, 5.6rem);
  }
  .p-b__8 {
    padding-bottom: clamp(5.6rem, 5.333vw, 6.4rem);
  }
  .p-b__9 {
    padding-bottom: clamp(6.4rem, 6vw, 7.2rem);
  }
  .p-b__10 {
    padding-bottom: clamp(7.2rem, 6.667vw, 8rem);
  }
  .p-b__11 {
    padding-bottom: clamp(8rem, 7.333vw, 8.8rem);
  }
  .p-b__12 {
    padding-bottom: clamp(8.8rem, 8vw, 9.6rem);
  }
  .p-b__13 {
    padding-bottom: clamp(9.6rem, 8.667vw, 10.4rem);
  }
  .p-b__14 {
    padding-bottom: clamp(10.4rem, 9.333vw, 11.2rem);
  }
  .p-b__15 {
    padding-bottom: clamp(11.2rem, 10vw, 12rem);
  }
  .p-b__16 {
    padding-bottom: clamp(12rem, 10.667vw, 12.8rem);
  }
  .p-b__17 {
    padding-bottom: clamp(12.8rem, 11.333vw, 13.6rem);
  }
  .p-b__18 {
    padding-bottom: clamp(13.6rem, 12vw, 14.4rem);
  }
  .p-b__19 {
    padding-bottom: clamp(14.4rem, 12.667vw, 15.2rem);
  }
  .p-b__20 {
    padding-bottom: clamp(15.2rem, 13.333vw, 16rem);
  }
}
.p-r__1 {
  padding-right: var(--size-1);
}
.p-r__2 {
  padding-right: var(--size-2);
}
.p-r__3 {
  padding-right: var(--size-3);
}
.p-r__4 {
  padding-right: var(--size-4);
}
.p-r__5 {
  padding-right: var(--size-5);
}
.p-r__6 {
  padding-right: var(--size-6);
}
.p-r__7 {
  padding-right: var(--size-7);
}
.p-r__8 {
  padding-right: var(--size-8);
}
.p-r__9 {
  padding-right: var(--size-9);
}
.p-r__10 {
  padding-right: var(--size-10);
}
.p-r__11 {
  padding-right: var(--size-11);
}
.p-r__12 {
  padding-right: var(--size-12);
}
.p-r__13 {
  padding-right: var(--size-13);
}
.p-r__14 {
  padding-right: var(--size-14);
}
.p-r__15 {
  padding-right: var(--size-15);
}
.p-r__16 {
  padding-right: var(--size-16);
}
.p-r__17 {
  padding-right: var(--size-17);
}
.p-r__18 {
  padding-right: var(--size-18);
}
.p-r__19 {
  padding-right: var(--size-19);
}
.p-r__20 {
  padding-right: var(--size-20);
}
@media screen and (max-width: 1200px) {
  .p-r__1 {
    padding-right: clamp(0.4rem, 0.667vw, 0.8rem);
  }
  .p-r__2 {
    padding-right: clamp(0.8rem, 1.333vw, 1.6rem);
  }
  .p-r__3 {
    padding-right: clamp(1.6rem, 2vw, 2.4rem);
  }
  .p-r__4 {
    padding-right: clamp(2.4rem, 2.667vw, 3.2rem);
  }
  .p-r__5 {
    padding-right: clamp(3.2rem, 3.333vw, 4rem);
  }
  .p-r__6 {
    padding-right: clamp(4rem, 4vw, 4.8rem);
  }
  .p-r__7 {
    padding-right: clamp(4.8rem, 4.667vw, 5.6rem);
  }
  .p-r__8 {
    padding-right: clamp(5.6rem, 5.333vw, 6.4rem);
  }
  .p-r__9 {
    padding-right: clamp(6.4rem, 6vw, 7.2rem);
  }
  .p-r__10 {
    padding-right: clamp(7.2rem, 6.667vw, 8rem);
  }
  .p-r__11 {
    padding-right: clamp(8rem, 7.333vw, 8.8rem);
  }
  .p-r__12 {
    padding-right: clamp(8.8rem, 8vw, 9.6rem);
  }
  .p-r__13 {
    padding-right: clamp(9.6rem, 8.667vw, 10.4rem);
  }
  .p-r__14 {
    padding-right: clamp(10.4rem, 9.333vw, 11.2rem);
  }
  .p-r__15 {
    padding-right: clamp(11.2rem, 10vw, 12rem);
  }
  .p-r__16 {
    padding-right: clamp(12rem, 10.667vw, 12.8rem);
  }
  .p-r__17 {
    padding-right: clamp(12.8rem, 11.333vw, 13.6rem);
  }
  .p-r__18 {
    padding-right: clamp(13.6rem, 12vw, 14.4rem);
  }
  .p-r__19 {
    padding-right: clamp(14.4rem, 12.667vw, 15.2rem);
  }
  .p-r__20 {
    padding-right: clamp(15.2rem, 13.333vw, 16rem);
  }
}
.p-l__1 {
  padding-left: var(--size-1);
}
.p-l__2 {
  padding-left: var(--size-2);
}
.p-l__3 {
  padding-left: var(--size-3);
}
.p-l__4 {
  padding-left: var(--size-4);
}
.p-l__5 {
  padding-left: var(--size-5);
}
.p-l__6 {
  padding-left: var(--size-6);
}
.p-l__7 {
  padding-left: var(--size-7);
}
.p-l__8 {
  padding-left: var(--size-8);
}
.p-l__9 {
  padding-left: var(--size-9);
}
.p-l__10 {
  padding-left: var(--size-10);
}
.p-l__11 {
  padding-left: var(--size-11);
}
.p-l__12 {
  padding-left: var(--size-12);
}
.p-l__13 {
  padding-left: var(--size-13);
}
.p-l__14 {
  padding-left: var(--size-14);
}
.p-l__15 {
  padding-left: var(--size-15);
}
.p-l__16 {
  padding-left: var(--size-16);
}
.p-l__17 {
  padding-left: var(--size-17);
}
.p-l__18 {
  padding-left: var(--size-18);
}
.p-l__19 {
  padding-left: var(--size-19);
}
.p-l__20 {
  padding-left: var(--size-20);
}
@media screen and (max-width: 1200px) {
  .p-l__1 {
    padding-left: clamp(0.4rem, 0.667vw, 0.8rem);
  }
  .p-l__2 {
    padding-left: clamp(0.8rem, 1.333vw, 1.6rem);
  }
  .p-l__3 {
    padding-left: clamp(1.6rem, 2vw, 2.4rem);
  }
  .p-l__4 {
    padding-left: clamp(2.4rem, 2.667vw, 3.2rem);
  }
  .p-l__5 {
    padding-left: clamp(3.2rem, 3.333vw, 4rem);
  }
  .p-l__6 {
    padding-left: clamp(4rem, 4vw, 4.8rem);
  }
  .p-l__7 {
    padding-left: clamp(4.8rem, 4.667vw, 5.6rem);
  }
  .p-l__8 {
    padding-left: clamp(5.6rem, 5.333vw, 6.4rem);
  }
  .p-l__9 {
    padding-left: clamp(6.4rem, 6vw, 7.2rem);
  }
  .p-l__10 {
    padding-left: clamp(7.2rem, 6.667vw, 8rem);
  }
  .p-l__11 {
    padding-left: clamp(8rem, 7.333vw, 8.8rem);
  }
  .p-l__12 {
    padding-left: clamp(8.8rem, 8vw, 9.6rem);
  }
  .p-l__13 {
    padding-left: clamp(9.6rem, 8.667vw, 10.4rem);
  }
  .p-l__14 {
    padding-left: clamp(10.4rem, 9.333vw, 11.2rem);
  }
  .p-l__15 {
    padding-left: clamp(11.2rem, 10vw, 12rem);
  }
  .p-l__16 {
    padding-left: clamp(12rem, 10.667vw, 12.8rem);
  }
  .p-l__17 {
    padding-left: clamp(12.8rem, 11.333vw, 13.6rem);
  }
  .p-l__18 {
    padding-left: clamp(13.6rem, 12vw, 14.4rem);
  }
  .p-l__19 {
    padding-left: clamp(14.4rem, 12.667vw, 15.2rem);
  }
  .p-l__20 {
    padding-left: clamp(15.2rem, 13.333vw, 16rem);
  }
}

.gap-1 {
  gap: var(--size-1);
}
.gap-2 {
  gap: var(--size-2);
}
.gap-3 {
  gap: var(--size-3);
}
.gap-4 {
  gap: var(--size-4);
}
.gap-5 {
  gap: var(--size-5);
}
.gap-6 {
  gap: var(--size-6);
}
.gap-7 {
  gap: var(--size-7);
}
.gap-8 {
  gap: var(--size-8);
}
.gap-9 {
  gap: var(--size-9);
}
.gap-10 {
  gap: var(--size-10);
}
.gap-11 {
  gap: var(--size-11);
}
.gap-12 {
  gap: var(--size-12);
}
.gap-13 {
  gap: var(--size-13);
}
.gap-14 {
  gap: var(--size-14);
}
.gap-15 {
  gap: var(--size-15);
}
.gap-16 {
  gap: var(--size-16);
}
.gap-17 {
  gap: var(--size-17);
}
.gap-18 {
  gap: var(--size-18);
}
.gap-19 {
  gap: var(--size-19);
}
.gap-20 {
  gap: var(--size-20);
}
@media screen and (max-width: 1200px) {
  .gap-1 {
    gap: clamp(0.4rem, 0.667vw, 0.8rem);
  }
  .gap-2 {
    gap: clamp(0.8rem, 1.333vw, 1.6rem);
  }
  .gap-3 {
    gap: clamp(1.6rem, 2vw, 2.4rem);
  }
  .gap-4 {
    gap: clamp(2.4rem, 2.667vw, 3.2rem);
  }
  .gap-5 {
    gap: clamp(3.2rem, 3.333vw, 4rem);
  }
  .gap-6 {
    gap: clamp(4rem, 4vw, 4.8rem);
  }
  .gap-7 {
    gap: clamp(4.8rem, 4.667vw, 5.6rem);
  }
  .gap-8 {
    gap: clamp(5.6rem, 5.333vw, 6.4rem);
  }
  .gap-9 {
    gap: clamp(6.4rem, 6vw, 7.2rem);
  }
  .gap-10 {
    gap: clamp(7.2rem, 6.667vw, 8rem);
  }
  .gap-11 {
    gap: clamp(8rem, 7.333vw, 8.8rem);
  }
  .gap-12 {
    gap: clamp(8.8rem, 8vw, 9.6rem);
  }
  .gap-13 {
    gap: clamp(9.6rem, 8.667vw, 10.4rem);
  }
  .gap-14 {
    gap: clamp(10.4rem, 9.333vw, 11.2rem);
  }
  .gap-15 {
    gap: clamp(11.2rem, 10vw, 12rem);
  }
  .gap-16 {
    gap: clamp(12rem, 10.667vw, 12.8rem);
  }
  .gap-17 {
    gap: clamp(12.8rem, 11.333vw, 13.6rem);
  }
  .gap-18 {
    gap: clamp(13.6rem, 12vw, 14.4rem);
  }
  .gap-19 {
    gap: clamp(14.4rem, 12.667vw, 15.2rem);
  }
  .gap-20 {
    gap: clamp(15.2rem, 13.333vw, 16rem);
  }
}

.rel {
  position: relative;
}

.abs {
  position: absolute;
}
.abs-center {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}

.fix {
  position: fixed;
  top: 0;
  left: 0;
}

main {
  width: 100%;
}

.width {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}
.width-client {
  width: calc(100% - var(--size-10));
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 1200px) {
  .width-client {
    width: calc(100% - var(--size-9));
  }
}
@media screen and (max-width: 600px) {
  .width-client {
    width: calc(100% - var(--size-5));
  }
}
.width-page {
  width: calc(100% - var(--size-20));
  max-width: 126rem;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 1200px) {
  .width-page {
    width: 100%;
    max-width: unset;
  }
}
@media screen and (max-width: 600px) {
  .width-page {
    width: 100%;
    max-width: unset;
  }
}
.width-single {
  width: 100%;
  max-width: 96rem;
  margin-right: auto;
  margin-left: auto;
}

p,
span,
a,
h1,
h2,
h3,
h4,
dt,
dd {
  color: var(--base-c);
  font-family: YakuHanJP, "Montserrat", "Noto Sans JP", sans-serif;
}

h1,
h2 {
  font-size: var(--h2-size);
  font-weight: bold;
}
h1 .sub,
h2 .sub {
  font-size: var(--base-size);
  color: var(--accent-c);
}
h3 {
  font-size: var(--h3-size);
}

h4 {
  font-size: var(--h4-size);
}

p {
  font-size: var(--base-size);
  line-height: 1.75;
}

a {
  font-size: var(--base-size);
}

p > span,
span > span,
a > span,
h1 > span,
h2 > span,
h3 > span,
h4 > span,
div > span,
dt > span,
dd > span {
  display: inline-block;
}

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

header {
  width: 100%;
  height: var(--size-10);
  background: var(--white);
  opacity: 0;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
}
header .logo {
  width: auto;
  height: 6rem;
  display: block;
}
@media screen and (max-width: 1200px) {
  header .logo {
    height: clamp(4.8rem, 5vw, 6rem);
  }
}
header .head-nav {
  width: 32rem;
  height: 100%;
  min-height: 100vh;
  padding: var(--size-3) var(--size-2) var(--size-5) var(--size-2);
  position: fixed;
  top: var(--size-10);
  right: -32rem;
  background: #fff;
  overflow-y: scroll;
  transition: right 0.4s cubic-bezier(0.5, 1, 0.89, 1);
  z-index: 10000;
}
header .head-nav.open {
  right: 0;
  transition: right 0.4s cubic-bezier(0.5, 1, 0.89, 1);
}
header .head-nav li {
  width: 100%;
  border-bottom: solid 1px rgba(34, 34, 34, 0.16);
}
header .head-nav li ul li {
  border-bottom: unset;
}
header .head-nav li:last-child {
  border-bottom: unset;
}
header .head-nav li:last-child a {
  font-size: 1.2rem;
  text-align: right;
}
header .head-nav li a {
  width: 100%;
  display: flex;
  line-height: 1;
  transition: all 0.4s cubic-bezier(0.5, 1, 0.89, 1);
}
header .head-nav li a.none {
  opacity: 0.64;
  pointer-events: none !important;
}
header .head-nav li a .link-arrow__reverse {
  border: solid 1px var(--accent-c);
}
header .head-nav li a:hover:not(.link-arrow__reverse) {
  opacity: 0.64;
}
header .head-nav li a:hover > .link-arrow__reverse {
  background: var(--white);
}
header .head-nav li a:hover > .link-arrow__reverse svg path {
  fill: var(--accent-c);
}

.f-contact {
  padding: var(--size-10) 5rem;
  background: var(--accent-c);
}
@media screen and (max-width: 959px) {
  .f-contact {
    padding: var(--size-10) clamp(1.6rem, 6.518vw, 5rem);
    gap: var(--size-5);
    flex-direction: column;
    align-items: flex-start;
  }
}
.f-contact .cont {
  margin-left: 5.333vw;
}
.f-contact .cont h2,
.f-contact .cont p,
.f-contact .cont span {
  color: var(--white);
}
.f-contact .cont h2 {
  font-size: var(--size-5);
}
@media screen and (max-width: 959px) {
  .f-contact .cont {
    margin-left: 0;
  }
}
.f-contact .link {
  gap: var(--size-2);
}
.f-contact .link a {
  width: 26.667vw;
  max-width: 40rem;
  height: 16rem;
  font-weight: bold;
  border-radius: 0.4rem;
  transition: all 0.4s cubic-bezier(0.5, 1, 0.89, 1);
}
.f-contact .link a.form-link {
  color: var(--accent-c);
  background: var(--white);
  border: solid 1px var(--white);
}
.f-contact .link a.form-link .link {
  padding: 1.2rem var(--size-3);
  font-weight: normal;
  color: var(--white);
  background: var(--accent-c);
  border: solid 1px var(--white);
  border-radius: 0.2rem;
  transition: all 0.4s cubic-bezier(0.5, 1, 0.89, 1);
}
.f-contact .link a.form-link .link svg path {
  fill: var(--white);
  transition: all 0.4s cubic-bezier(0.5, 1, 0.89, 1);
}
.f-contact .link a.form-link:hover {
  color: var(--white);
  background: var(--accent-c);
}
.f-contact .link a.form-link:hover .link {
  color: var(--accent-c);
  background: var(--white);
}
.f-contact .link a.form-link:hover .link svg path {
  fill: var(--accent-c);
}
.f-contact .link a.tel-link {
  color: var(--white);
  border: solid 1px var(--white);
  transition: all 0.4s cubic-bezier(0.5, 1, 0.89, 1);
}
.f-contact .link a.tel-link svg {
  width: 2rem;
  margin: 0 0.6rem 0.4rem 0;
}
.f-contact .link a.tel-link svg path {
  transition: all 0.4s cubic-bezier(0.5, 1, 0.89, 1);
}
.f-contact .link a.tel-link .num {
  margin: 0;
  font-weight: bold;
  font-size: var(--h3-size);
  transition: all 0.4s cubic-bezier(0.5, 1, 0.89, 1);
}
.f-contact .link a.tel-link span {
  margin-bottom: 0.6rem;
  font-weight: normal;
  line-height: 1;
  color: var(--white);
  transition: all 0.4s cubic-bezier(0.5, 1, 0.89, 1);
}
.f-contact .link a.tel-link span.small {
  margin: 0;
  font-size: clamp(1.2rem, 0.8vw, 1.2rem);
  line-height: 1;
}
.f-contact .link a.tel-link:hover {
  color: var(--accent-c);
  background: var(--white);
}
.f-contact .link a.tel-link:hover svg path {
  fill: var(--accent-c);
}
.f-contact .link a.tel-link:hover .num {
  color: var(--accent-c);
}
.f-contact .link a.tel-link:hover span {
  color: var(--accent-c);
}
@media screen and (max-width: 959px) {
  .f-contact .link {
    width: 100%;
    justify-content: space-between;
  }
  .f-contact .link a {
    width: auto;
  }
  .f-contact .link a.form-link, .f-contact .link a.tel-link {
    width: 50%;
  }
  .f-contact .link a.form-link .link {
    width: auto;
  }
}
@media screen and (max-width: 600px) {
  .f-contact .link {
    flex-direction: column;
  }
  .f-contact .link a.form-link, .f-contact .link a.tel-link {
    width: 100%;
    max-width: unset;
  }
}
.f-main {
  padding: 5rem 5rem var(--size-2);
  background: var(--base-c);
}
@media screen and (max-width: 767px) {
  .f-main {
    padding: 5rem clamp(1.6rem, 6.518vw, 5rem) var(--size-2);
    flex-direction: column;
  }
}
.f-main-company .logo {
  width: auto;
  height: 6rem;
  display: block;
}
.f-main-company p,
.f-main-company span {
  font-size: 1.2rem;
  line-height: 1.667;
  letter-spacing: 0.015em;
  color: var(--white);
}
.f-main-nav ul {
  gap: var(--size-4);
}
.f-main-nav ul li.link-top, .f-main-nav ul li.link-other {
  width: 100%;
}
.f-main-nav ul li a {
  width: -moz-fit-content;
  width: fit-content;
  padding-bottom: 0.2rem;
  display: inline-block;
  color: var(--white);
  position: relative;
}
.f-main-nav ul li a::before {
  content: attr(data);
  display: block;
}
.f-main-nav ul li a::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  background-color: var(--white);
  transition: width 300ms;
  width: 0;
}
.f-main-nav ul li a.child {
  font-size: 1.2rem;
  opacity: 0.64;
}
.f-main-nav ul li a.child.none {
  pointer-events: none !important;
}
.f-main-nav ul li a.link-child {
  opacity: 1;
}
.f-main-nav ul li a:hover::after {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .f-main-nav {
    margin: var(--size-6) 0 0 0;
  }
  .f-main-nav ul {
    gap: unset;
  }
  .f-main-nav ul li a {
    width: 100%;
    padding-top: var(--size-3);
    padding-bottom: var(--size-3);
    border-top: solid 1px rgba(255, 255, 255, 0.16);
    border-bottom: unset;
  }
  .f-main-nav ul li a:last-child {
    padding-bottom: var(--size-3);
  }
  .f-main-nav ul li a.child {
    margin: 0;
    border-top: unset;
  }
  .f-main-nav ul li a.link-child {
    border-top: solid 1px rgba(255, 255, 255, 0.16);
  }
  .f-main-nav ul li ul {
    flex-direction: column;
  }
  .f-main-nav ul li ul li {
    width: 100%;
  }
}
.f-main small {
  width: 100%;
  text-align: center;
  font-size: 1rem;
  color: var(--white);
}

html,
body {
  font-size: 62.5% !important;
}

:root {
  --white: #fff;
  --base-c: #333333;
  --accent-c: #B2071B;
  --ja-font: "Noto Sans JP";
  --en-font: "Montserrat";
  --base-size: clamp(1.4rem, 1.333vw, 1.6rem);
  --sub-size: 1.2rem;
  --mini-size: 1rem;
  --h1-size: clamp(5.6rem, 6vw, 7.2rem);
  --h2-size: clamp(3.2rem, 3.2vw, 4.8rem);
  --h3-size: clamp(2.4rem, 2.666vw, 3.2rem);
  --h4-size: clamp(1.8rem, 2vw, 2.4rem);
  --list-border: solid 1px rgba(27, 30, 41, 0.16);
  --size-1: clamp(0.4rem, 0.667vw, 0.8rem);
  --size-2: clamp(0.8rem, 1.333vw, 1.6rem);
  --size-3: clamp(1.6rem, 2vw, 2.4rem);
  --size-4: clamp(2.4rem, 2.667vw, 3.2rem);
  --size-5: clamp(3.2rem, 3.333vw, 4rem);
  --size-6: clamp(4rem, 4vw, 4.8rem);
  --size-7: clamp(4.8rem, 4.667vw, 5.6rem);
  --size-8: clamp(5.6rem, 5.333vw, 6.4rem);
  --size-9: clamp(6.4rem, 6vw, 7.2rem);
  --size-10: clamp(7.2rem, 6.667vw, 8rem);
  --size-11: clamp(8rem, 7.333vw, 8.8rem);
  --size-12: clamp(8.8rem, 8vw, 9.6rem);
  --size-13: clamp(9.6rem, 8.667vw, 10.4rem);
  --size-14: clamp(10.4rem, 9.333vw, 11.2rem);
  --size-15: clamp(11.2rem, 10vw, 12rem);
  --size-16: clamp(12rem, 10.667vw, 12.8rem);
  --size-17: clamp(12.8rem, 11.333vw, 13.6rem);
  --size-18: clamp(13.6rem, 12vw, 14.4rem);
  --size-19: clamp(14.4rem, 12.667vw, 15.2rem);
  --size-20: clamp(15.2rem, 13.333vw, 16rem);
  --size-30: 24rem;
}

body.is-load {
  opacity: 1;
}

body::before {
  content: "";
  width: 100%;
  height: 100vh;
  display: block;
  opacity: 0;
  background: rgba(27, 30, 41, 0.72);
  position: fixed;
  top: 0;
  left: 0;
  z-index: -90;
  transition: all 0.4s cubic-bezier(0.5, 1, 0.89, 1);
}

body.block {
  overflow: hidden !important;
  position: relative;
}

body.block::before {
  opacity: 1;
  z-index: 90;
}

.about-set:nth-child(1) .img {
  width: 48%;
  margin-right: 10.667%;
}
.about-set:nth-child(1) .text p {
  margin-top: clamp(2.8rem, 2.667vw, 4rem);
}
@media screen and (max-width: 767px) {
  .about-set:nth-child(1) {
    margin-bottom: var(--size-5);
    flex-wrap: wrap;
  }
  .about-set:nth-child(1) .img {
    width: calc(100% - clamp(1.6rem, 5.215vw, 4rem) * 4);
    margin-right: 0;
  }
  .about-set:nth-child(1) .text {
    width: 100%;
    margin-top: var(--size-6);
  }
}
.about-set:nth-child(2) .img {
  width: 26.667%;
  margin: 0 12.667% 0 0;
}
.about-set:nth-child(2) .text {
  margin: 0 0 0 9.133%;
}
@media screen and (max-width: 767px) {
  .about-set:nth-child(2) {
    flex-wrap: wrap-reverse;
    margin: var(--size-5) 0;
  }
  .about-set:nth-child(2) .img {
    width: calc(100% - clamp(1.6rem, 5.215vw, 4rem) * 6);
    margin: 0 calc(clamp(1.6rem, 5.215vw, 4rem) * 2) 0 auto;
  }
  .about-set:nth-child(2) .text {
    width: 100%;
    margin: var(--size-5) 0 0 0;
  }
}
.about-set:nth-child(3) .img {
  width: 37.333%;
  margin: 0 0 0 9.133%;
}
.about-set:nth-child(3) .text {
  margin: 5.333% 0 0 12.333%;
}
@media screen and (max-width: 767px) {
  .about-set:nth-child(3) {
    flex-wrap: wrap;
  }
  .about-set:nth-child(3) .img {
    width: calc(100% - clamp(1.6rem, 5.215vw, 4rem) * 2);
    margin: 0 auto;
  }
  .about-set:nth-child(3) .text {
    width: 100%;
    margin: var(--size-5) 0 0 0;
  }
}
.about-set .img {
  border-radius: 0.4rem;
}
.about-set .text {
  height: -moz-fit-content;
  height: fit-content;
}
.about-set .text p {
  font-size: clamp(1.6rem, 1.667vw, 2rem);
  line-height: 2.333;
  letter-spacing: 0.08em;
  font-weight: bold;
  opacity: 0.16;
}
.about-set .text p.is-split {
  opacity: 1;
}
@media screen and (max-width: 767px) {
  .about-set .text {
    padding: 0 clamp(1.6rem, 5.215vw, 4rem);
  }
}

.section-reverse {
  padding: var(--size-15) 0 0;
  background: var(--base-c);
  border-radius: var(--size-5);
}
.section-reverse h2,
.section-reverse h4,
.section-reverse p,
.section-reverse span {
  color: var(--white);
}
.section-reverse .service {
  padding: 0 5rem;
}
.section-reverse .service h2 {
  margin-bottom: clamp(3.2rem, 6.667vw, 8rem);
}
@media screen and (max-width: 767px) {
  .section-reverse .service {
    padding: 0 clamp(1.6rem, 6.518vw, 5rem);
  }
}
.section-reverse .service-link-img {
  width: 42.667vw;
  aspect-ratio: 1/1;
  position: relative;
}
.section-reverse .service-link-img img {
  border-radius: 0.4rem;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 1;
  transition: all 0.4s cubic-bezier(0.5, 1, 0.89, 1);
}
.section-reverse .service-link-img img.transparent {
  opacity: 0;
}
@media screen and (max-width: 767px) {
  .section-reverse .service-link-img {
    display: none;
  }
}
.section-reverse .service-link-text {
  width: 40vw;
}
.section-reverse .service-link-text p {
  margin-bottom: 5.333vw;
}
.section-reverse .service-link-text ul {
  margin-bottom: 5.333vw;
}
.section-reverse .service-link-text ul li {
  border-top: solid 1px var(--white);
  cursor: pointer;
}
.section-reverse .service-link-text ul li a {
  padding: 3.2vw 0;
  transition: all 0.4s cubic-bezier(0.5, 1, 0.89, 1);
}
.section-reverse .service-link-text ul li a .stb {
  display: none;
}
.section-reverse .service-link-text ul li a h4 {
  transition: all 0.4s cubic-bezier(0.5, 1, 0.89, 1);
}
.section-reverse .service-link-text ul li a h4 span {
  font-size: var(--base-size);
}
.section-reverse .service-link-text ul li:last-child {
  border-bottom: solid 1px var(--white);
}
.section-reverse .service-link-text ul li:hover a h4 {
  opacity: 0.64;
}
.section-reverse .service-link-text ul li:hover a .link-arrow {
  background: var(--accent-c);
}
.section-reverse .service-link-text ul li:hover a .link-arrow svg path {
  fill: var(--white);
}
@media screen and (max-width: 767px) {
  .section-reverse .service-link-text {
    width: 100%;
  }
  .section-reverse .service-link-text p {
    margin-bottom: 4rem;
  }
  .section-reverse .service-link-text ul {
    margin-bottom: 4rem;
  }
  .section-reverse .service-link-text ul li a {
    justify-content: flex-start;
  }
  .section-reverse .service-link-text ul li a .stb {
    width: clamp(8rem, 13.037vw, 10rem);
    margin-right: var(--size-4);
    display: block;
  }
  .section-reverse .service-link-text ul li a h4 {
    align-items: flex-start;
  }
  .section-reverse .service-link-text ul li a h4 span {
    margin-bottom: 0.6rem;
  }
  .section-reverse .service-link-text ul li a .link-arrow {
    margin: 0 0 0 auto;
  }
}
@media screen and (max-width: 480px) {
  .section-reverse .service-link-text ul li a .stb {
    margin-right: var(--size-3);
  }
  .section-reverse .service-link-text ul li a h4 {
    flex-direction: column;
  }
}
.section-reverse .roll-text {
  width: 100%;
  max-width: 100vw;
  overflow: hidden;
  position: relative;
}
.section-reverse .roll-text p {
  width: -moz-max-content;
  width: max-content;
  margin: 0;
  flex-shrink: 0;
  font-size: clamp(8rem, 8vw, 12rem);
  font-weight: bold;
  line-height: 1.3;
  letter-spacing: 0;
  white-space: nowrap;
  animation: infinity-scroll-left 56s infinite linear;
}
.section-reverse .roll-text p img {
  width: clamp(20rem, 16vw, 24rem);
  height: auto;
  margin: 0 var(--size-4);
  display: inline-block;
  vertical-align: middle;
  border-radius: 0.2rem;
}
.section-reverse .works {
  height: 37.333vw;
  min-height: 56rem;
  background: url(/asset/img/top/works.webp) no-repeat;
  background-size: cover;
  background-position: center bottom;
  background-attachment: fixed;
  border-radius: 0.4rem 0.4rem var(--size-5) var(--size-5);
  position: relative;
}
.section-reverse .works::before {
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(51, 51, 51, 0.56);
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 0.4rem 0.4rem var(--size-5) var(--size-5);
}
.section-reverse .works h2,
.section-reverse .works p,
.section-reverse .works a {
  position: relative;
  z-index: 2;
}
.section-reverse .works-text {
  width: calc(100% - var(--size-20));
  margin: auto;
  position: absolute;
  right: 0;
  bottom: var(--size-8);
  left: 0;
}
@media screen and (max-width: 1200px) {
  .section-reverse .works {
    background-attachment: scroll;
  }
  .section-reverse .works-text {
    width: calc(100% - clamp(7.2rem, 6.667vw, 8rem) * 2);
  }
}
@media screen and (max-width: 600px) {
  .section-reverse .works {
    height: 80vh;
    padding: 0 clamp(1.6rem, 6.518vw, 5rem);
  }
  .section-reverse .works-text {
    width: calc(100% - clamp(1.6rem, 6.518vw, 5rem) * 2);
  }
}

.recruit {
  height: 100vh;
  padding: 0 5rem;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .recruit {
    height: auto;
    margin: var(--size-10) 0;
    padding: 0;
    flex-direction: column;
    align-items: unset;
  }
}
.recruit-text {
  margin: 0 auto;
}
.recruit-text p {
  font-size: var(--size-3);
  font-weight: bold;
  line-height: 1.667;
}
@media screen and (max-width: 767px) {
  .recruit-text {
    margin: 0 0 var(--size-6) 0;
    padding: 0 clamp(1.6rem, 6.518vw, 5rem);
  }
}
.recruit .roll {
  width: auto;
  height: 100vh;
  position: relative;
  overflow: hidden;
}
.recruit .roll-track {
  flex-shrink: 0;
  gap: var(--size-2);
  will-change: transform;
}
.recruit .roll-track:last-child {
  margin-left: var(--size-2);
}
.recruit .roll-group {
  flex-shrink: 0;
  gap: var(--size-2);
}
.recruit .roll-group img {
  width: 21.333vw;
  height: auto;
  display: block;
}
@media screen and (max-width: 767px) {
  .recruit .roll {
    height: auto;
    flex-direction: column;
  }
  .recruit .roll-track {
    height: auto;
    flex-direction: row;
    gap: var(--size-2);
  }
  .recruit .roll-track:last-child {
    margin-top: var(--size-2);
    margin-left: 0;
  }
  .recruit .roll-group {
    flex-direction: row;
    gap: var(--size-2);
  }
  .recruit .roll-group img {
    width: 30vw;
    height: auto;
  }
}

.p-main {
  padding: 0 var(--size-10);
}
@media screen and (max-width: 767px) {
  .p-main {
    padding: 0 clamp(1.6rem, 6.518vw, 5rem);
  }
}

.ttl-field {
  padding: var(--size-1) 1.2rem;
  display: inline-block;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.04em;
  color: var(--white);
  background: var(--base-c);
}
.ttl-field__reverse {
  padding: var(--size-1) 1.2rem;
  display: inline-block;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.04em;
  color: var(--base-c);
  background: var(--white);
}

.fst {
  padding-top: clamp(16rem, 12.8vw, 19.2rem);
  border-bottom: solid 1px rgba(34, 34, 34, 0.16);
  overflow-wrap: break-word;
}
@media screen and (max-width: 767px) {
  .fst {
    padding-top: clamp(12rem, 20.86vw, 16rem);
  }
}

.aioseo-breadcrumbs {
  margin-bottom: var(--size-10);
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.aioseo-breadcrumbs span {
  opacity: 0.64;
}
.aioseo-breadcrumbs span:last-child {
  opacity: 1;
}
.aioseo-breadcrumbs span:nth-child(n+2) {
  margin-left: var(--size-1);
  font-weight: 500;
}
.aioseo-breadcrumb {
  font-size: 1rem;
  font-weight: bold;
  letter-spacing: 0.04em;
  line-height: 1;
  white-space: nowrap;
}
.aioseo-breadcrumb:last-child {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  overflow-wrap: break-word;
  word-break: break-word;
}
.aioseo-breadcrumb a {
  font-size: 1rem;
  font-weight: bold;
  letter-spacing: 0.04em;
  line-height: 1;
  transition: all 0.4s cubic-bezier(0.5, 1, 0.89, 1);
}
.aioseo-breadcrumb a:hover {
  color: var(--accent-c);
}
.aioseo-breadcrumb-separator {
  display: inline-block;
  letter-spacing: 0;
  line-height: 1;
}

.aboutus h2 {
  text-align: center;
}
.aboutus-importante {
  text-align: center;
}
.aboutus-importante h3 {
  width: -moz-fit-content;
  width: fit-content;
}
.aboutus-importante h3 span {
  color: var(--white);
}
.aboutus-importante h3 .sponly {
  display: none;
}
@media screen and (max-width: 480px) {
  .aboutus-importante h3 {
    background: unset;
  }
  .aboutus-importante h3 span {
    width: -moz-fit-content;
    width: fit-content;
    padding: 0.4rem 1.2rem 0.8rem;
    display: inline-block;
    background: var(--base-c);
  }
  .aboutus-importante h3 span:first-child {
    margin-bottom: 0.2rem;
  }
  .aboutus-importante h3 .sponly {
    display: block;
  }
}
.aboutus-importante img {
  width: 70.8vw;
  margin: 0 auto;
}
.aboutus-importante-cont {
  display: none;
}
.aboutus-importante-cont dt {
  font-size: var(--h4-size);
  letter-spacing: 0.08em;
  border-bottom: solid 1px rgba(34, 34, 34, 0.16);
}
.aboutus-importante-cont dt span {
  margin-bottom: 4px;
  font-size: clamp(10px, 0.8vw, 12px);
  letter-spacing: 0;
  color: var(--accent-c);
}
.aboutus-importante-cont dd {
  text-align: left;
  font-size: var(--base-size);
  line-height: 1.75;
}
@media screen and (max-width: 767px) {
  .aboutus h2 {
    margin-bottom: var(--size-5);
  }
  .aboutus-importante {
    margin-bottom: var(--size-11);
  }
  .aboutus-importante img {
    width: 100%;
  }
  .aboutus-importante-cont {
    display: flex;
  }
}
.aboutus-reason {
  width: calc(100% + (var(--size-10)) * 2);
  margin-left: calc(var(--size-10) * -1);
  padding: 0 var(--size-20) var(--size-5);
  background: var(--base-c);
  border-radius: var(--size-5);
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 1200px) {
  .aboutus-reason {
    padding: 0 clamp(8rem, 9.333vw, 11.2rem) var(--size-5);
  }
}
@media screen and (max-width: 767px) {
  .aboutus-reason {
    width: calc(100% + clamp(1.6rem, 6.518vw, 5rem) * 2);
    margin-left: calc(clamp(1.6rem, 6.518vw, 5rem) * -1);
    padding: 0 clamp(1.6rem, 6.518vw, 5rem) var(--size-15);
  }
}
.aboutus-reason h2 {
  width: 100%;
  text-align: left;
  line-height: 1.3;
  border-bottom: solid 1px rgba(255, 255, 255, 0.16);
  background: var(--base-c);
  position: relative;
  z-index: 10;
}
.aboutus-reason h2 span {
  letter-spacing: 0.04em;
  color: var(--white);
}
.aboutus-reason-list {
  gap: var(--size-8);
  position: relative;
}
.aboutus-reason-list__item {
  width: 100%;
  padding: var(--size-10) 0;
  gap: var(--size-14);
  background: var(--base-c);
  position: relative;
  transform-origin: center top;
}
.aboutus-reason-list__item .text {
  width: 39.2vw;
}
.aboutus-reason-list__item .text h4,
.aboutus-reason-list__item .text p,
.aboutus-reason-list__item .text span {
  color: var(--white);
}
.aboutus-reason-list__item .text h4 {
  border-bottom: solid 1px rgba(255, 255, 255, 0.16);
}
.aboutus-reason-list__item .text h4 .num {
  font-size: 1rem;
}
.aboutus-reason-list__item .img {
  width: 32vw;
  border-radius: 0.4rem;
}
.aboutus-reason-list__item.item-02 {
  z-index: 2;
}
.aboutus-reason-list__item.item-03 {
  z-index: 3;
}
.aboutus-reason-list__item:nth-child(1) {
  z-index: 1;
}
.aboutus-reason-list__item:nth-child(2) {
  z-index: 2;
}
.aboutus-reason-list__item:nth-child(3) {
  z-index: 3;
}
.aboutus-reason-list__item:nth-child(4) {
  z-index: 4;
}
.aboutus-reason-list__item:nth-child(5) {
  z-index: 5;
}
.aboutus-reason-list__item:nth-child(6) {
  z-index: 6;
}
.aboutus-reason-list__item:nth-child(7) {
  z-index: 7;
}
.aboutus-reason-list__item:nth-child(8) {
  z-index: 8;
}
.aboutus-reason-list__item:nth-child(9) {
  z-index: 9;
}
.aboutus-reason-list__item:nth-child(10) {
  z-index: 10;
}
@media screen and (max-width: 1200px) {
  .aboutus-reason-list__item {
    gap: var(--size-5);
  }
  .aboutus-reason-list__item .text {
    width: 50%;
  }
  .aboutus-reason-list__item .img {
    width: 40%;
  }
}
@media screen and (max-width: 767px) {
  .aboutus-reason-list__item {
    padding: var(--size-5) 0;
    flex-direction: column;
  }
  .aboutus-reason-list__item:first-child {
    padding-top: 0;
  }
  .aboutus-reason-list__item:last-child {
    padding-bottom: 0;
  }
  .aboutus-reason-list__item .text {
    width: 100%;
  }
  .aboutus-reason-list__item .img {
    width: 100%;
  }
}
.aboutus-policy {
  width: calc(100% + (var(--size-10)) * 2);
  height: calc(100svh + (var(--size-5)) * 2);
  margin: calc(var(--size-5) * -1) 0 0 calc(var(--size-10) * -1);
  background: url(/asset/img/about/img04.webp) no-repeat;
  background-size: cover;
  background-position: 62%;
  background-attachment: fixed;
  position: relative;
}
@media screen and (max-width: 1200px) {
  .aboutus-policy {
    background-attachment: scroll;
  }
}
@media screen and (max-width: 767px) {
  .aboutus-policy {
    width: calc(100% + clamp(1.6rem, 6.518vw, 5rem) * 2);
    margin: calc(var(--size-5) * -1) 0 0 calc(clamp(1.6rem, 6.518vw, 5rem) * -1);
  }
}
.aboutus-policy::after {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  background: rgba(51, 51, 51, 0.32);
  position: absolute;
  top: 0;
  left: 0;
}
.aboutus-policy-text {
  padding: 0 var(--size-4);
  text-align: center;
  font-weight: bold;
  position: relative;
  z-index: 2;
}
.aboutus-policy-text p span {
  color: var(--white);
}

.service section {
  padding: 0 var(--size-10);
}
@media screen and (max-width: 767px) {
  .service section {
    padding: 0;
  }
}
.service-list {
  gap: 5.333vw;
}
@media screen and (max-width: 1200px) {
  .service-list {
    align-items: flex-start;
  }
}
@media screen and (max-width: 1024px) {
  .service-list {
    flex-direction: column;
    gap: var(--size-4);
  }
}
.service-list .img {
  border-radius: 0.4rem;
}
.service-list .img,
.service-list .text {
  width: 36.667vw;
}
@media screen and (max-width: 1024px) {
  .service-list .img,
  .service-list .text {
    width: 100%;
  }
}
@media screen and (max-width: 1024px) {
  .service-list:last-child .img {
    flex-direction: row;
  }
  .service-list:last-child .img img {
    width: 50%;
    height: auto;
  }
}
.service-list .text h3 {
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  flex-direction: column;
}
.service-list .text h3 span {
  display: inline-block;
  font-weight: bold;
  line-height: 1.3;
  color: var(--white);
}
.service-list .text h3 span:first-child {
  margin-bottom: 1px;
  padding: 0.5rem 1.2rem 0.7rem;
  font-size: 1.2rem;
}
.service-list .text h3 span:last-child {
  padding: var(--size-1) 1.2rem clamp(0.4rem, 0.4vw, 0.6rem);
}
.service-list .text h3 span.bg {
  width: -moz-fit-content;
  width: fit-content;
  background: var(--base-c);
}
.service .link {
  padding: 0 var(--size-10);
}
@media screen and (max-width: 767px) {
  .service .link {
    margin-top: var(--size-8);
    margin-bottom: var(--size-15);
    padding: 0;
  }
}
.service .link ul {
  gap: 5.333vw;
}
@media screen and (max-width: 959px) {
  .service .link ul {
    flex-direction: column;
    gap: unset;
  }
}
.service .link ul li {
  width: 36.667vw;
  padding: var(--size-2) 0;
  border-top: solid 1px rgba(34, 34, 34, 0.16);
  border-bottom: solid 1px rgba(34, 34, 34, 0.16);
}
@media screen and (max-width: 959px) {
  .service .link ul li {
    width: 100%;
  }
  .service .link ul li:last-child {
    border-top: unset;
  }
}
.service .link ul li p,
.service .link ul li .img {
  transition: all 0.4s cubic-bezier(0.5, 1, 0.89, 1);
}
.service .link ul li a .img {
  width: 12vw;
  border-radius: 0.2rem;
}
.service .link ul li a p {
  font-size: clamp(1.6rem, 1.6vw, 2.4rem);
}
.service .link ul li a .link-arrow {
  margin-left: auto;
  background: var(--accent-c);
  border: solid 1px var(--accent-c);
}
.service .link ul li a .link-arrow svg path {
  fill: var(--white);
}
.service .link ul li a:hover .img,
.service .link ul li a:hover p {
  opacity: 0.64;
}
.service .link ul li a:hover .link-arrow {
  background: var(--white);
}
.service .link ul li a:hover .link-arrow svg path {
  fill: var(--accent-c);
}
@media screen and (max-width: 767px) {
  .service .link ul li a .img {
    width: var(--size-15);
  }
}
@media screen and (max-width: 480px) {
  .service .link ul li a .img {
    width: clamp(8rem, 23.333vw, 11.2rem);
  }
}

.company iframe {
  width: 100%;
  aspect-ratio: 16/9;
  padding-bottom: var(--size-3);
  border-bottom: solid 1px rgba(34, 34, 34, 0.16);
}
@media screen and (max-width: 767px) {
  .company section {
    margin-bottom: var(--size-15);
  }
  .company section iframe {
    aspect-ratio: 1/1;
  }
}

.recruit {
  height: auto;
  overflow: unset;
}
.recruit section {
  padding: 0 var(--size-10);
}
@media screen and (max-width: 767px) {
  .recruit section {
    margin-bottom: var(--size-15);
    padding: 0;
  }
}
.recruit h2 {
  font-size: clamp(2.4rem, 2.667vw, 4rem);
}
.recruit-list {
  gap: var(--size-7);
  position: relative;
}
@media screen and (max-width: 1024px) {
  .recruit-list {
    gap: var(--size-8);
  }
}
.recruit-list-item {
  width: 100%;
  gap: var(--size-14);
}
.recruit-list-item .text {
  width: 39.2vw;
}
.recruit-list-item .text h4,
.recruit-list-item .text p,
.recruit-list-item .text span {
  color: var(--base-c);
}
.recruit-list-item .text h4 {
  border-bottom: solid 1px rgba(34, 34, 34, 0.16);
}
.recruit-list-item .text h4 .num {
  font-size: 1rem;
}
.recruit-list-item .img {
  width: 32vw;
  border-radius: 0.4rem;
}
@media screen and (max-width: 1200px) {
  .recruit-list-item {
    gap: var(--size-5);
  }
  .recruit-list-item .text {
    width: 50%;
  }
  .recruit-list-item .img {
    width: 40%;
  }
}
@media screen and (max-width: 1024px) {
  .recruit-list-item {
    padding: 0;
    flex-direction: column;
  }
  .recruit-list-item:first-child {
    padding-top: 0;
  }
  .recruit-list-item:last-child {
    padding-bottom: 0;
  }
  .recruit-list-item .text {
    width: 100%;
  }
  .recruit-list-item .img {
    width: 100%;
  }
}
.recruit .interview {
  gap: 5.333vw;
}
@media screen and (max-width: 959px) {
  .recruit .interview {
    flex-direction: column;
  }
}
@media screen and (max-width: 1024px) {
  .recruit .interview {
    gap: var(--size-4);
    align-items: start;
  }
}
.recruit .interview .img {
  width: 34.133vw;
}
@media screen and (max-width: 959px) {
  .recruit .interview .img {
    width: 100%;
  }
}
.recruit .interview .text {
  gap: var(--size-4);
}
@media screen and (max-width: 959px) {
  .recruit .interview .text {
    gap: var(--size-3);
  }
}
.recruit .interview .text h3 {
  line-height: 1;
  color: var(--white);
}
.recruit .interview .text h3.bg {
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.5rem 1.2rem;
  background: var(--base-c);
}
.recruit .interview .text h3 span {
  font-size: 75%;
  color: var(--white);
}
.recruit .interview .text p {
  font-size: var(--h4-size);
  line-height: 1.667;
}
.recruit .info {
  max-width: unset;
  padding: 0;
}
.recruit .info .list-item:last-child {
  border-bottom: solid 1px rgba(34, 34, 34, 0.16);
}
.recruit .info + a {
  margin: var(--size-7) auto 0;
}

.interview section {
  padding: 0 var(--size-10);
}
@media screen and (max-width: 767px) {
  .interview section {
    margin-bottom: var(--size-15);
    padding: 0;
  }
}
.interview section h2 {
  line-height: 1;
}
.interview section h2 span {
  padding: 0 0 0.2rem 0.2rem;
  font-size: 75%;
}
.interview section h3 {
  display: inline-block;
}
.interview section h3.bg span {
  width: -moz-fit-content;
  width: fit-content;
  padding: 0 1.2rem;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0.04em;
  background: var(--accent-c);
  color: var(--white);
}
.interview section h3.bg span:nth-child(3) {
  padding-right: 0;
}
.interview section h3.bg span:last-child {
  padding-left: 0;
}
@media screen and (max-width: 480px) {
  .interview section h3.bg br {
    display: none;
  }
  .interview section h3.bg span {
    display: flex;
    flex-direction: column;
  }
  .interview section h3.bg span:nth-child(3) {
    padding-right: 1.2rem;
  }
  .interview section h3.bg span:last-child {
    padding-left: 1.2rem;
  }
}
.interview section .img {
  border-radius: 0.4rem;
}
.interview section .ttl-question {
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.2rem 0.8rem 0.4rem;
  display: inline-block;
  font-size: clamp(1.8rem, 2vw, 2.4rem);
  font-weight: bold;
  color: var(--white);
  background: var(--accent-c);
  border-radius: 0.2rem;
}
.interview section .ttl h3 {
  font-weight: bold;
  line-height: 1.35;
}
.interview section .question01 {
  gap: 5.333vw;
}
.interview section .question01 .img {
  width: 30vw;
}
.interview section .question01 .text {
  width: 43.333vw;
}
@media screen and (max-width: 1024px) {
  .interview section .question01 {
    flex-direction: column-reverse;
    gap: var(--size-3);
  }
  .interview section .question01 .img,
  .interview section .question01 .text {
    width: 100%;
  }
}
.interview section a {
  margin: 0 auto;
}

.faq .icon {
  min-width: 2rem;
  min-height: 2rem;
  height: 2rem;
  margin: 0.2rem 0.8rem 0 0;
  padding-bottom: 0.05rem;
  font-size: var(--base-size);
  letter-spacing: 0;
  line-height: 1;
  color: var(--white);
  border-radius: 0.2rem;
}
.faq .icon.question {
  background: var(--base-c);
}
.faq .icon.answer {
  padding-top: 0.2rem;
  background: var(--accent-c);
}
@media screen and (max-width: 600px) {
  .faq .icon.answer {
    padding-top: 0;
  }
}

.work .clickable {
  flex-wrap: wrap;
  border-bottom: solid 1px rgba(34, 34, 34, 0.16);
}
.work .clickable label {
  padding: var(--size-1) clamp(0.8rem, 1.333vw, 1.6rem) var(--size-1) clamp(1.2rem, 1.333vw, 1.6rem);
  background: var(--base-c);
  border-radius: 3rem;
  transition: all 0.4s cubic-bezier(0.5, 1, 0.89, 1);
  cursor: pointer;
}
.work .clickable label p {
  font-family: var(--ja-font);
  color: var(--white);
  transition: all 0.4s cubic-bezier(0.5, 1, 0.89, 1);
}
.work .clickable label .count {
  width: 1.6rem;
  height: 1.6rem;
  padding: 0;
  background: var(--white);
  border-radius: 50%;
  font-style: normal;
  font-family: var(--en-font);
  line-height: 1;
  color: var(--white);
  transition: all 0.4s cubic-bezier(0.5, 1, 0.89, 1);
}
.work .clickable label .count b {
  font-style: normal;
  font-family: var(--en-font);
  color: var(--base-c);
  transition: all 0.4s cubic-bezier(0.5, 1, 0.89, 1);
}
.work .clickable label:hover {
  background: var(--accent-c);
}
.work .clickable label:hover p {
  color: var(--white);
}
.work .clickable label:hover .count {
  background: var(--white);
}
.work .clickable label:hover .count b {
  color: var(--accent-c);
}
.work .clickable input {
  display: none;
}
.work-list {
  gap: var(--size-6) var(--size-3);
}
.work-list li {
  min-width: 0;
}
.work-list li:hover .img img {
  transform: scale(1.08);
}
.work-list li p,
.work-list li span {
  font-family: var(--ja-font);
}
.work-list .img {
  aspect-ratio: 16/9;
  position: relative;
  border-radius: 0.4rem;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.5, 1, 0.89, 1);
}
.work-list .img img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.4s cubic-bezier(0.5, 1, 0.89, 1);
}
.work-list-label {
  padding: clamp(0.6rem, 0.667vw, 0.8rem) var(--size-2);
  font-size: clamp(1.2rem, 0.9333vw, 1.4rem);
  line-height: 1;
  color: var(--white);
  background: var(--base-c);
  border-radius: 3rem;
  position: absolute;
  top: var(--size-1);
  left: clamp(0.8rem, 0.8vw, 1.2rem);
  z-index: 5;
}
.work-list-ttl, .work-list-address, .work-list-date {
  line-height: 1;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  overflow-wrap: break-word;
  word-break: break-word;
}
.work-list-ttl {
  display: inline-block;
  font-size: clamp(1.6rem, 1.333vw, 2rem);
  line-height: 1;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  overflow-wrap: break-word;
  word-break: break-word;
}
.work-detail section {
  width: 100%;
  max-width: 98rem;
  margin: 0 auto;
}
.work-detail .work-list-label {
  padding: var(--size-1) var(--size-2);
  display: inline-block;
  position: relative;
  top: unset;
  left: unset;
}
.work-detail .swiper-slide {
  aspect-ratio: 16/9;
  border-radius: 0.4rem;
  background: rgba(51, 51, 51, 0.06);
}
.work-detail .swiper-slide img {
  -o-object-fit: contain;
     object-fit: contain;
  display: flex;
  height: 100%;
  width: 100%;
}
.work-detail .work-thumb {
  margin-top: 0.4rem;
}
.work-detail .work-thumb .swiper-slide {
  cursor: pointer;
}
.work-detail .work-thumb .swiper-slide img {
  -o-object-fit: cover;
     object-fit: cover;
  display: flex;
  height: 100%;
  width: 100%;
}
.work-detail .work-thumb .swiper-slide:hover {
  opacity: 0.64;
}
.work-detail .list-item:first-child {
  border-top: solid 1px rgba(34, 34, 34, 0.16);
}
.work-detail .list-item:last-child {
  border-bottom: solid 1px rgba(34, 34, 34, 0.16);
}
.work-detail dl + .link-btn {
  margin-right: auto;
  margin-left: auto;
}

.news ul li:last-child {
  border-bottom: solid 1px rgba(34, 34, 34, 0.16);
}
.news ul li a div {
  width: 100%;
}
.news ul li a div span {
  width: auto;
  line-height: 1;
  transition: all 0.4s cubic-bezier(0.5, 1, 0.89, 1);
}
.news ul li a div span:last-child {
  line-height: 1;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  overflow-wrap: break-word;
  word-break: break-word;
  transition: all 0.4s cubic-bezier(0.5, 1, 0.89, 1);
}
.news ul li a .link-arrow {
  border: solid 1px var(--accent-c);
}
@media screen and (max-width: 600px) {
  .news ul li a {
    flex-direction: row;
  }
  .news ul li a div {
    flex-direction: column;
    align-items: flex-start;
  }
  .news ul li a div span:first-child {
    margin: 0 0 0.6rem 0;
    padding: 0;
  }
  .news ul li a div span:last-child {
    padding-right: var(--size-4);
  }
}
.news ul li a:hover div span {
  opacity: 0.64;
}
.news ul li a:hover .link-arrow {
  background: var(--accent-c);
}
.news ul li a:hover .link-arrow svg path {
  fill: var(--white);
}
.news-detail section {
  width: 100%;
  max-width: 98rem;
  margin: 0 auto;
}
.news-detail section p a {
  position: relative;
}
.news-detail section p a::before {
  content: attr(data);
  display: block;
}
.news-detail section p a::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  background-color: var(--base-c);
  transition: width 300ms;
  width: 0;
}
.news-detail section p a:hover::after {
  width: 100%;
}
@media screen and (max-width: 959px) {
  .news-detail section p a {
    border-bottom: solid 1px var(--base-c);
  }
  .news-detail section p a:hover::after {
    width: unset;
  }
}
.news-detail section .link-btn {
  margin-right: auto;
  margin-left: auto;
}
.news-detail p {
  overflow-wrap: break-word;
}

.sign section {
  width: 100%;
  max-width: 98rem;
  margin: 0 auto;
}
@media screen and (max-width: 1300px) {
  .sign section {
    max-width: calc(100% - (var(--size-10)) * 2);
  }
}
@media screen and (max-width: 767px) {
  .sign section {
    max-width: 100%;
  }
}

.privacypolicy .list-item {
  border-top: unset;
}
.privacypolicy .list-item dt {
  width: 100%;
  line-height: 1;
  letter-spacing: 0.04em;
  border-top: unset;
  border-bottom: solid 1px rgba(34, 34, 34, 0.16);
}
.privacypolicy .list-item dt h4 {
  font-family: var(--ja-font);
}
.privacypolicy .list-item dd {
  width: 100%;
}
@media screen and (max-width: 600px) {
  .privacypolicy .list-item dt {
    margin-bottom: var(--size-3);
    padding-bottom: var(--size-3);
  }
}

.pagination {
  display: flex;
  justify-content: center;
  gap: var(--size-1);
}
.pagination .next,
.pagination .prev {
  display: none;
}

.screen-reader-text {
  display: none;
}

.nav-links .next,
.nav-links .prev {
  display: none !important;
}

.nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: var(--en-font);
}

.nav-links {
  gap: var(--size-1);
}

.page-numbers {
  width: 2.4rem;
  height: 2.4rem;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: var(--en-font);
  font-size: 1.4rem;
  line-height: 1;
  border: solid 1px var(--base-c);
  border-radius: 0.2rem;
  position: relative;
  opacity: 0.32;
  transition: all 0.4s cubic-bezier(0.5, 1, 0.89, 1);
}
.page-numbers.current {
  color: var(--white);
  background: var(--base-c);
  opacity: 1;
}
.page-numbers:hover {
  color: var(--white);
  background: var(--base-c);
  opacity: 1;
}/*# sourceMappingURL=style.css.map */