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

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

* a {
  transition: color 0.4s cubic-bezier(0.5, 1, 0.89, 1);
}
* a:hover {
  color: var(--main-c);
}
* a:hover .img img {
  transform: scale(1.08);
}

:root {
  --white: #fff;
  --base-c: #1B1E29;
  --accent-c: #E60013;
  --h1-c: linear-gradient(90deg, #3D3B94 0%, #0B67BD 100%);
  --main-c: #0B67BD;
  --main-gd: #3D3B94;
  --gray-c: #D9D9D9;
  --gray-c2: #ECECED;
  --bg-anti-c: rgba(217, 217, 217, 0.16);
  --ja-font: "Zen Kaku Gothic New";
  --en-font: "Outfit";
  --weight-b: bold;
  --weight-m: 500;
  --weight-r: 400;
  --base-size: clamp(1.4rem, 1.333vw, 1.6rem);
  --h1-sub-size: clamp(1.2rem, 1.166vw, 1.4rem);
  --h1-size: clamp(5.6rem, 6vw, 7.2rem);
  --h2-size: clamp(3.2rem, 3.333vw, 4rem);
  --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: 0.8rem;
  --size-2: 1.6rem;
  --size-3: 2.4rem;
  --size-4: 3.2rem;
  --size-5: 4rem;
  --size-6: 4.8rem;
  --size-7: 5.6rem;
  --size-8: 6.4rem;
  --size-9: 7.2rem;
  --size-10: 8rem;
  --size-11: 8.8rem;
  --size-12: 9.6rem;
  --size-13: 10.4rem;
  --size-14: 11.2rem;
  --size-15: 12rem;
  --size-16: 12.8rem;
  --size-17: 13.6rem;
  --size-18: 14.4rem;
  --size-19: 15.2rem;
  --size-20: 16rem;
  --size-30: 24rem;
}

body {
  opacity: 0;
  background: url(/asset/img/common/noise.png) repeat;
  background-size: 10rem 10rem;
  position: relative;
  z-index: -1;
}
body.is-load {
  opacity: 1;
}
body {
  /* スクロールは有効にしたままバーを隠す */
  overflow-x: hidden !important;
  overflow-y: auto !important;
  /* Chrome, Safari, Edge, Opera用 */
}
body::-webkit-scrollbar {
  display: none !important;
}
body {
  /* Firefox用 */
  scrollbar-width: none !important;
  /* IE, Edge(旧)用 */
  -ms-overflow-style: none !important;
}
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.8s cubic-bezier(0.5, 1, 0.89, 1);
}
body.block {
  overflow: hidden !important;
  position: relative;
}
body.block::before {
  opacity: 1;
  z-index: 90;
}

#cursor {
  width: var(--size-5);
  height: var(--size-5);
  margin: -2rem 0 0 -2rem;
  background: unset;
  border: solid 1px var(--main-c);
  border-radius: 50%;
  position: fixed;
  opacity: 0;
  pointer-events: none;
  transition: background 0.4s cubic-bezier(0.5, 1, 0.89, 1), border 0.4s cubic-bezier(0.5, 1, 0.89, 1), transform 0.4s cubic-bezier(0.5, 1, 0.89, 1);
  mix-blend-mode: multiply;
  z-index: 1000;
}
#cursor::before, #cursor::after {
  content: "";
  width: var(--size-5);
  height: var(--size-5);
  margin: -2rem 0 0 -2rem;
  background: unset;
  border: solid 1px var(--main-c);
  border-radius: 50%;
  position: fixed;
  opacity: 0;
  transform: translate(calc(50% - 1px), calc(50% - 1px));
  pointer-events: none;
  transition: background 0.4s cubic-bezier(0.5, 1, 0.89, 1), border 0.4s cubic-bezier(0.5, 1, 0.89, 1), transform 0.4s cubic-bezier(0.5, 1, 0.89, 1);
  z-index: 999;
}
#cursor.active {
  background: rgba(11, 103, 189, 0.48);
  border: rgba(11, 103, 189, 0.48);
  transform: scale(1.6);
}

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

.btn-nml {
  min-width: var(--size-30);
  width: -moz-fit-content;
  width: fit-content;
  height: var(--size-8);
  padding: var(--size-1) var(--size-1) var(--size-1) var(--size-3);
  font-weight: var(--weight-b);
  line-height: 1;
  background: var(--white);
}
@media screen and (max-width: 1200px) {
  .btn-nml {
    min-width: clamp(20rem, 20vw, 24rem);
    height: clamp(5.6rem, 5.333vw, 6.4rem);
  }
}
.btn-nml.gray {
  background: var(--gray-c2);
}
.btn-nml-arrow {
  width: var(--size-4);
  height: 100%;
  background: var(--main-c);
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 1200px) {
  .btn-nml-arrow {
    width: clamp(2.4rem, 2.667vw, 3.2rem);
  }
}
.btn-nml-arrow svg {
  width: 0.9rem;
  height: var(--size-1);
  aspect-ratio: 9/8;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  transition: all 0.4s cubic-bezier(0.5, 1, 0.89, 1);
}
.btn-nml-arrow svg:last-child {
  position: absolute;
  top: 0;
  bottom: 0;
  left: -200%;
  margin: auto;
}
.btn-nml:hover .btn-nml-arrow svg:first-child {
  left: 200%;
}
.btn-nml:hover .btn-nml-arrow svg:last-child {
  left: 0;
}
.btn-arrow {
  min-width: var(--size-4);
  min-height: var(--size-8);
  background: var(--main-c);
  overflow: hidden;
  position: relative;
}
@media screen and (max-width: 1200px) {
  .btn-arrow {
    min-width: clamp(2.4rem, 2.667vw, 3.2rem);
    min-height: clamp(5.6rem, 5.333vw, 6.4rem);
  }
}
.btn-arrow svg {
  width: 0.9rem;
  height: var(--size-1);
  aspect-ratio: 9/8;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  transition: all 0.4s cubic-bezier(0.5, 1, 0.89, 1);
}
.btn-arrow svg:last-child {
  position: absolute;
  top: 0;
  bottom: 0;
  left: -200%;
  margin: auto;
}
.btn-arrow-mini {
  width: var(--size-3);
  height: var(--size-5);
  background: var(--main-c);
  overflow: hidden;
  position: relative;
}
.btn-arrow-mini svg {
  width: 0.9rem;
  height: var(--size-1);
  aspect-ratio: 9/8;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  transition: all 0.4s cubic-bezier(0.5, 1, 0.89, 1);
}
.btn-arrow-mini svg:last-child {
  position: absolute;
  top: 0;
  bottom: 0;
  left: -200%;
  margin: auto;
}
.btn-contact {
  width: var(--size-18);
  height: var(--size-6);
  background: rgba(27, 30, 41, 0.64);
  color: var(--white);
  font-weight: var(--weight-b);
  transition: background-color 0.4s cubic-bezier(0.5, 1, 0.89, 1);
}
.btn-contact:hover {
  background: rgba(27, 30, 41, 0.32);
  color: var(--white);
}
@media screen and (max-width: 1200px) {
  .btn-contact {
    width: clamp(13.6rem, 12vw, 14.4rem);
  }
}
.btn-menu {
  width: var(--size-6);
  height: var(--size-6);
  padding-bottom: 0.3rem;
  gap: calc(var(--size-1) / 2);
  background: var(--accent-c);
  color: var(--white);
  position: relative;
  cursor: pointer;
}
.btn-menu p {
  font-size: 1rem;
  line-height: 1;
  letter-spacing: 0.05em;
  color: var(--white);
}
.btn-menu span {
  width: var(--size-3);
  height: 0.1rem;
  background: var(--white);
  position: relative;
  transition: all 0.25s cubic-bezier(0.5, 1, 0.89, 1);
}
.btn-menu.active span:nth-child(2) {
  display: none;
}
.btn-menu.active span:nth-child(3) {
  transform: rotate(25deg);
  transform-origin: 5% 0%;
}
.btn-menu.active span:nth-child(4) {
  transform: rotate(-25deg);
  transform-origin: 45% 0%;
}

a {
  transition: left 0.4s cubic-bezier(0.5, 1, 0.89, 1);
}
a:hover .btn-arrow svg:first-child {
  left: 200%;
}
a:hover .btn-arrow svg:last-child {
  left: 0;
}
a:hover .btn-arrow-mini svg:first-child {
  left: 200%;
}
a:hover .btn-arrow-mini svg:last-child {
  left: 0;
}

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

.p-contact .accent {
  color: var(--accent-c);
}
.p-contact .accent span {
  margin-right: 0.4rem;
  color: var(--accent-c);
}
.p-contact .accent span:last-child {
  margin-left: 0.4rem;
}
.p-contact-link {
  width: 72.916%;
  background: #fff;
  box-shadow: 0 var(--size-1) var(--size-2) 0 rgba(61, 59, 148, 0.08);
  transition: all 0.6s cubic-bezier(0.5, 1, 0.89, 1);
  position: relative;
  z-index: 4;
}
@media screen and (max-width: 480px) {
  .p-contact-link {
    width: 100%;
  }
}
.p-contact-link a {
  width: 100%;
  background: #fff;
  transition: all 0.6s cubic-bezier(0.5, 1, 0.89, 1);
  position: relative;
}
.p-contact-link a::before, .p-contact-link a::after {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.6s cubic-bezier(0.5, 1, 0.89, 1);
}
.p-contact-link a::before {
  background: #fff;
  z-index: 1;
}
.p-contact-link a::after {
  background: var(--h1-c);
  z-index: 0;
}
.p-contact-link a svg {
  position: relative;
  z-index: 2;
}
.p-contact-link a svg path {
  transition: fill 0.4s cubic-bezier(0.5, 1, 0.89, 1);
}
.p-contact-link a.tel {
  position: relative;
}
.p-contact-link a.tel p {
  transition: color 0.4s cubic-bezier(0.5, 1, 0.89, 1);
  z-index: 2;
}
.p-contact-link a.tel .main {
  font-weight: bold;
  line-height: 1;
}
.p-contact-link a.tel .main .freedial {
  width: clamp(2.8rem, 2.833vw, 3.4rem);
}
.p-contact-link a.tel .main .freedial svg path,
.p-contact-link a.tel .main .freedial svg rect {
  transition: fill 0.4s cubic-bezier(0.5, 1, 0.89, 1);
}
.p-contact-link a.tel .main span {
  transition: color 0.4s cubic-bezier(0.5, 1, 0.89, 1);
}
.p-contact-link a.tel .main span:first-child {
  margin-bottom: 0.4rem;
}
.p-contact-link a.tel .main span:last-child {
  font-family: var(--en-font);
  font-size: var(--h2-size);
  font-weight: 400;
  transition: color 0.4s cubic-bezier(0.5, 1, 0.89, 1);
}
.p-contact-link a.tel .sub {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1;
  opacity: 0.64;
  transition: color 0.4s cubic-bezier(0.5, 1, 0.89, 1);
}
.p-contact-link:hover {
  box-shadow: 0.8rem var(--size-1) var(--size-2) 0 rgba(61, 59, 148, 0.32);
}
.p-contact-link:hover a {
  opacity: 1;
  background: var(--h1-c);
}
.p-contact-link:hover a::before {
  opacity: 0;
}
.p-contact-link:hover a p {
  color: var(--white);
}
.p-contact-link:hover a p span {
  color: var(--white);
}
.p-contact-link:hover a.tel svg path {
  fill: var(--white);
}
.p-contact dl dt p {
  display: flex;
  align-items: center;
  line-height: 1;
}
.p-contact dl dt p .accent {
  font-weight: normal;
  font-size: clamp(1rem, 0.8vw, 1.2rem);
  color: var(--accent-c);
}
.p-contact dl dt p .accent span {
  margin-right: 0.4rem;
  color: var(--accent-c);
}
.p-contact dl dt p .accent span:last-child {
  margin-left: 0.4rem;
}
.p-contact dl dd input,
.p-contact dl dd textarea {
  width: 100%;
  padding: var(--size-2) var(--size-1);
  border: solid 1px rgba(27, 30, 41, 0.32);
  cursor: pointer;
}
.p-contact dl dd input[type=checkbox] {
  width: var(--size-3);
  height: var(--size-3);
  margin-right: var(--size-1);
  padding: 0;
  border: solid 1px rgba(27, 30, 41, 0.32);
  position: relative;
  -moz-appearance: none;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
}
.p-contact dl dd input[type=checkbox]::before {
  content: "";
  width: var(--size-2);
  height: var(--size-2);
  margin: auto;
  background: var(--main-c);
  opacity: 0;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  transition: opacity 0.4s cubic-bezier(0.5, 1, 0.89, 1);
}
.p-contact dl dd input[type=checkbox]:checked::before {
  content: "";
  opacity: 1;
  transition: opacity 0.4s cubic-bezier(0.5, 1, 0.89, 1);
}
.p-contact dl dd textarea {
  line-height: 1.5;
}
.p-contact dl dd p {
  line-height: 1;
}
.p-contact .btn-nml {
  padding: 0;
  cursor: pointer;
}
@media screen and (max-width: 1200px) {
  .p-contact .btn-nml {
    min-width: clamp(20rem, 20vw, 24rem);
    height: clamp(5.6rem, 5.333vw, 6.4rem);
  }
}
.p-contact .btn-nml-arrow {
  height: calc(100% - var(--size-2));
  position: absolute;
  right: var(--size-1);
  overflow: hidden;
}
.p-contact .btn-nml-arrow svg {
  width: 0.9rem;
  height: var(--size-1);
  aspect-ratio: 9/8;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  transition: all 0.4s cubic-bezier(0.5, 1, 0.89, 1);
}
.p-contact .btn-nml-arrow svg:nth-of-type(2) {
  position: absolute;
  top: 0;
  bottom: 0;
  left: -200%;
  margin: auto;
}
.p-contact .btn-nml p {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  transition: color 0.4s cubic-bezier(0.5, 1, 0.89, 1);
}
.p-contact .btn-nml:hover p {
  color: var(--main-c);
}
.p-contact .btn-nml:hover .btn-nml-arrow svg:nth-of-type(1) {
  left: 200%;
}
.p-contact .btn-nml:hover .btn-nml-arrow svg:nth-of-type(2) {
  left: 0;
}

.cap {
  line-height: 1;
}
.cap a {
  color: var(--main-c);
  border-bottom: solid 1px rgba(11, 103, 189, 0.64);
  word-wrap: break-word;
}

.wpcf7-form-control {
  width: 100%;
  height: 100%;
}
.wpcf7-form-control.wpcf7-submit {
  padding: var(--size-1) var(--size-1) var(--size-1) var(--size-3);
}
.wpcf7-form-control .wpcf7-list-item {
  margin-left: 0;
}
.wpcf7-form-control .wpcf7-list-item label {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.wpcf7-form-control-wrap {
  width: 100%;
}

.wpcf7-not-valid-tip {
  font-size: clamp(1rem, 0.8vw, 1.2rem) !important;
  margin-top: var(--size-1);
}

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

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

.mv {
  width: 100vw;
  height: calc(100vh + 10rem);
  position: relative;
}
@media screen and (max-width: 1200px) {
  .mv {
    height: calc(100vh + clamp(8rem, 8.333vw, 10rem));
  }
}
@media screen and (max-width: 1024px) {
  .mv {
    height: calc(100vh + var(--size-8));
  }
}
.mv::before {
  content: "";
  display: block;
  width: 100%;
  height: calc(100vh + 10rem);
  aspect-ratio: 375/236;
  background: linear-gradient(90deg, #3D3B94 0%, #0B67BD 100%);
  opacity: 0.32;
  mix-blend-mode: hard-light;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (max-width: 1200px) {
  .mv::before {
    height: calc(100vh + clamp(8rem, 8.333vw, 10rem));
  }
}
@media screen and (max-width: 1024px) {
  .mv::before {
    height: calc(100vh + var(--size-8));
  }
}
.mv-copy {
  width: 49.1533vw;
  position: absolute;
  top: 52.14vh;
  left: 8vw;
  z-index: 2;
  opacity: 0;
}
.mv-copy-sp {
  display: none;
  z-index: 2;
}
@media screen and (max-width: 1024px) {
  .mv-copy {
    display: none;
  }
  .mv-copy-sp {
    width: auto;
    max-width: 40rem;
    height: auto;
    margin: auto;
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: clamp(3.2rem, 3.333vw, 4rem);
    opacity: 0;
  }
}
@media screen and (max-width: 600px) {
  .mv-copy-sp {
    max-width: clamp(28rem, 66.667vw, 40rem);
  }
}
.mv-logo {
  width: 45.0833vw;
  width: auto;
  height: auto;
  aspect-ratio: 235/139;
  margin: auto;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0;
}
.mv-logo path {
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  -o-backdrop-filter: blur(3px);
  -moz-backdrop-filter: blur(3px);
  -ms-backdrop-filter: blur(3px);
}
@media screen and (max-width: 959px) {
  .mv-logo {
    width: 48vw;
    min-width: 30rem;
  }
}
.mv-video {
  width: 100%;
  height: calc(100vh + 10rem);
  position: relative;
  overflow: hidden !important;
  z-index: -1;
}
.mv-video video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 1200px) {
  .mv-video {
    height: calc(100vh + clamp(8rem, 8.333vw, 10rem));
  }
}
@media screen and (max-width: 1024px) {
  .mv-video {
    height: calc(100vh + var(--size-8));
  }
}

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

.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-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: "Outfit", "Zen Kaku Gothic New", sans-serif;
}

h1.ttl::after {
  content: "";
  width: 100%;
  display: block;
  border-bottom: var(--list-border);
}
h1.ttl .main {
  width: -moz-fit-content;
  width: fit-content;
  display: inline-flex;
  font-size: var(--h1-size);
  font-weight: var(--weight-b);
  line-height: 1;
  -webkit-text-fill-color: transparent;
}
h1.ttl .sub {
  padding-left: 1rem;
  font-size: var(--base-size);
  font-weight: var(--weight-b);
  letter-spacing: 0.02em;
  background: var(--base-c);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 1;
  position: relative;
}
h1.ttl .sub::before {
  content: "";
  width: 0.5rem;
  height: 0.3rem;
  margin: auto;
  display: block;
  background: var(--accent-c);
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
}

h2.ttl .main {
  width: -moz-fit-content;
  width: fit-content;
  display: inline-flex;
  font-size: var(--h2-size);
  font-weight: var(--weight-b);
  line-height: 1;
  letter-spacing: 0.015em;
  -webkit-text-fill-color: transparent;
}
h2.ttl .sub {
  padding-left: 1rem;
  color: var(--base-c);
  font-size: calc(var(--base-size) * 0.875);
  font-weight: var(--weight-b);
  letter-spacing: 0.02em;
  background: var(--base-c);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 1;
  position: relative;
}
h2.ttl .sub::before {
  content: "";
  width: 0.5rem;
  height: 0.3rem;
  margin: auto;
  display: block;
  background: var(--accent-c);
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
}

h3 {
  font-size: var(--h3-size);
  font-weight: var(--weight-b);
}

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

.reveal-heading {
  --progress: -10%;
  color: transparent;
  background-image: linear-gradient(90deg, var(--main-gd) 0%, var(--main-c) calc(var(--progress) - 10%), rgba(26, 26, 26, 0) calc(var(--progress) + 10%), rgba(26, 26, 26, 0) 100%);
  background-clip: text;
  -webkit-background-clip: text;
}

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

.head-logo img {
  width: clamp(24rem, 21.333vw, 32rem);
}
@media screen and (max-width: 1200px) {
  .head-logo img {
    width: clamp(20rem, 2vw, 24rem);
  }
}
@media screen and (max-width: 480px) {
  .head-logo img {
    width: clamp(16rem, 41.667vw, 20rem);
  }
}
.head-wrap {
  width: 100%;
  height: 10rem;
  background: var(--white);
  font-weight: var(--weight-b);
  z-index: 100;
  opacity: 0;
  transform: translateY(-10rem);
}
@media screen and (max-width: 1200px) {
  .head-wrap {
    height: clamp(8rem, 8.333vw, 10rem);
  }
}
@media screen and (max-width: 1024px) {
  .head-wrap {
    height: var(--size-8);
  }
}
@media screen and (max-width: 480px) {
  .head-wrap {
    padding-left: var(--size-2);
    gap: var(--size-2);
  }
}
.head-wrap nav {
  height: 100%;
}
.head-wrap nav ul {
  height: 100%;
}
.head-wrap nav ul li {
  height: 100%;
}
.head-wrap nav ul li a {
  display: flex;
  align-items: center;
  height: 100%;
}
.head-wrap nav ul li a i {
  width: 0;
  height: 0;
  margin: 0.2rem 0 0 0.4rem;
  border-style: solid;
  border-right: 0.4rem solid transparent;
  border-left: 0.4rem solid transparent;
  border-top: 0.6rem solid var(--accent-c);
  border-bottom: 0;
  aspect-ratio: 4/3;
}
.head-wrap nav ul li a + ul.drop-item {
  height: auto;
  background: #fff;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 10rem;
  transition: all 0.4s cubic-bezier(0.5, 1, 0.89, 1);
}
.head-wrap nav ul li a + ul.drop-item li a {
  width: 100%;
  position: relative;
}
.head-wrap nav ul li a + ul.drop-item:hover {
  opacity: 1;
  visibility: visible;
  transition: all 0.4s cubic-bezier(0.5, 1, 0.89, 1);
}
@media screen and (max-width: 1200px) {
  .head-wrap nav ul li a + ul.drop-item {
    top: clamp(8rem, 8.333vw, 10rem);
  }
}
.head-wrap nav ul li a.drop-link:hover + ul.drop-item {
  opacity: 1;
  visibility: visible;
  transition: all 0.8s cubic-bezier(0.5, 1, 0.89, 1);
}
@media screen and (max-width: 1024px) {
  .head-wrap nav ul {
    display: none;
  }
}
.head-nav {
  width: 32rem;
  padding: var(--size-3) var(--size-2) var(--size-5) var(--size-2);
  position: fixed;
  top: 10rem;
  right: -32rem;
  background: #fff;
  overflow-y: scroll;
  transition: right 0.4s cubic-bezier(0.5, 1, 0.89, 1);
  z-index: 10000;
}
@media screen and (max-width: 1200px) {
  .head-nav {
    top: clamp(8rem, 8.333vw, 10rem);
  }
}
@media screen and (max-width: 1024px) {
  .head-nav {
    top: var(--size-8);
  }
}
.head-nav.open {
  right: 0;
  transition: right 0.4s cubic-bezier(0.5, 1, 0.89, 1);
}
.head-nav li {
  width: 100%;
  border-bottom: var(--list-border);
}
.head-nav li:first-child {
  border-bottom: unset;
}
.head-nav li:first-child .drop-item {
  border-bottom: var(--list-border);
}
.head-nav li:last-child {
  border-bottom: unset;
}
.head-nav li:last-child a {
  justify-content: flex-end;
  font-size: 1.2em;
  opacity: 0.64;
}
.head-nav li:last-child:hover a {
  opacity: 1;
}
.head-nav li:nth-of-type(2) {
  border-top: var(--list-border);
}
.head-nav li ul li {
  border-top: unset !important;
  border-bottom: unset;
}
.head-nav li ul li:last-child a {
  justify-content: space-between;
  font-size: var(--base-size);
  opacity: 1;
}
.head-nav li a {
  display: flex;
  width: 100%;
}

.foot-contact {
  background: var(--base-c);
  position: relative;
  overflow: hidden;
}
.foot-contact h2 {
  border-bottom: solid 1px rgba(255, 255, 255, 0.16);
  position: relative;
  z-index: 4;
}
.foot-contact h2.ttl {
  width: 100%;
  display: inline-flex;
  font-size: var(--h1-size);
  font-weight: var(--weight-b);
  line-height: 1;
  background: var(--white);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.foot-contact h2.ttl .sub {
  padding-left: 1rem;
  font-size: var(--base-size);
  font-weight: var(--weight-b);
  letter-spacing: 0.02em;
  background: var(--white);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 1;
  position: relative;
}
.foot-contact h2.ttl .sub::before {
  content: "";
  width: 0.5rem;
  height: 0.3rem;
  margin: auto;
  display: block;
  background: var(--accent-c);
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
}
.foot-contact p {
  color: #fff;
  position: relative;
  z-index: 4;
}
.foot-contact .link {
  position: relative;
  z-index: 4;
}
.foot-contact .link a {
  width: 100%;
  height: -webkit-fill-available;
  height: -moz-available;
  height: stretch;
  max-height: 25rem;
  background: #fff;
  transition: all 0.6s cubic-bezier(0.5, 1, 0.89, 1);
  position: relative;
}
.foot-contact .link a::before, .foot-contact .link a::after {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.6s cubic-bezier(0.5, 1, 0.89, 1);
}
.foot-contact .link a::before {
  background: #fff;
  z-index: 1;
}
.foot-contact .link a::after {
  background: var(--h1-c);
  z-index: 0;
}
.foot-contact .link a i {
  line-height: 0;
}
.foot-contact .link a p {
  line-height: 1;
  color: var(--base-c);
  transition: color 0.4s cubic-bezier(0.5, 1, 0.89, 1);
}
.foot-contact .link a svg {
  position: relative;
  z-index: 2;
}
.foot-contact .link a svg path {
  transition: fill 0.4s cubic-bezier(0.5, 1, 0.89, 1);
}
.foot-contact .link a.mail svg {
  width: 4.4rem;
  height: auto;
}
.foot-contact .link a.mail .main {
  font-size: var(--h3-size);
  font-weight: 500;
  line-height: 1;
  border-bottom: solid 1px var(--base-c);
  transition: all 0.4s cubic-bezier(0.5, 1, 0.89, 1);
}
.foot-contact .link a.tel .main {
  font-weight: bold;
  line-height: 1;
  transition: color 0.4s cubic-bezier(0.5, 1, 0.89, 1);
}
.foot-contact .link a.tel .main .freedial {
  width: clamp(2.8rem, 2.833vw, 3.4rem);
}
.foot-contact .link a.tel .main span:first-child {
  margin-bottom: 0.6rem;
  font-family: var(--ja-font);
  font-size: var(--base-size);
  font-weight: bold;
}
.foot-contact .link a.tel .main span {
  font-family: var(--en-font);
  font-size: var(--h2-size);
  font-weight: 400;
  transition: color 0.4s cubic-bezier(0.5, 1, 0.89, 1);
}
.foot-contact .link a.tel .sub {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1;
  opacity: 0.64;
  transition: color 0.4s cubic-bezier(0.5, 1, 0.89, 1);
}
.foot-contact .link a:hover {
  opacity: 1;
}
.foot-contact .link a:hover::before {
  opacity: 0;
}
.foot-contact .link a:hover p {
  color: var(--white);
}
.foot-contact .link a:hover p span {
  color: var(--white);
}
.foot-contact .link a:hover.mail .main {
  border-bottom: solid 1px var(--white);
}
.foot-contact .link a:hover.mail svg path {
  fill: var(--white);
}
.foot-contact .link a:hover.tel svg path {
  fill: var(--white);
}
@media screen and (max-width: 767px) {
  .foot-contact .link {
    flex-direction: column;
  }
  .foot-contact .link a {
    height: auto;
  }
}
.foot-contact .logo {
  width: auto;
  height: 100%;
  top: 0;
  right: 0;
  z-index: 0;
}
.foot-contact .logo svg {
  width: inherit;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  margin: auto;
}
.foot-contact .logo::before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  background: linear-gradient(245deg, rgba(27, 30, 41, 0) 0%, #1B1E29 100%);
  background-blend-mode: luminosity, normal;
  z-index: 3;
}
@media screen and (max-width: 767px) {
  .foot-contact .logo {
    min-width: 100%;
    height: 100%;
  }
  .foot-contact .logo svg {
    right: -50%;
  }
}
.foot-copy {
  border-top: var(--list-border);
  border-bottom: var(--list-border);
}
.foot-copy img {
  width: 37.666vw;
  min-width: 52rem;
}
@media screen and (max-width: 600px) {
  .foot-copy img {
    width: 91.666vw;
    min-width: unset;
    max-width: 100%;
  }
}
.foot-nav {
  border-bottom: var(--list-border);
}
@media screen and (max-width: 959px) {
  .foot-nav {
    flex-direction: column;
    gap: var(--size-5);
  }
}
.foot-nav .satellite-link {
  width: -moz-fit-content;
  width: fit-content;
  padding: var(--size-1) var(--size-2) !important;
}
.foot-nav .satellite-link:hover svg path {
  fill: var(--main-c);
  transition: fill 0.4s cubic-bezier(0.5, 1, 0.89, 1);
}
.foot-nav .satellite-link svg {
  width: 1.8rem;
  height: 1.8rem;
  margin-left: 0.4rem;
}
.foot-nav .satellite-link svg path {
  transition: fill 0.4s cubic-bezier(0.5, 1, 0.89, 1);
}
.foot-nav .common .logo {
  width: 17.3rem;
}
.foot-nav .common .address p {
  line-height: 1.5;
}
@media screen and (max-width: 1200px) {
  .foot-nav .common .address {
    gap: var(--size-3);
  }
}
@media screen and (max-width: 600px) {
  .foot-nav .common .address {
    flex-wrap: wrap;
    gap: var(--size-2);
  }
}
.foot-nav nav {
  height: -moz-fit-content;
  height: fit-content;
  gap: var(--size-2) var(--size-3);
}
@media screen and (max-width: 959px) {
  .foot-nav nav {
    gap: 0 clamp(1.6rem, 2vw, 2.4rem);
  }
}
.foot-nav nav a {
  width: 100%;
  display: flex;
  line-height: 1;
}
@media screen and (max-width: 959px) {
  .foot-nav nav > a {
    padding-bottom: var(--size-2);
    border-bottom: var(--list-border);
  }
}
.foot-nav nav ul li ul li a {
  padding-left: 1.2rem;
  opacity: 0.64;
  position: relative;
  transition: opacity 0.4s cubic-bezier(0.5, 1, 0.89, 1);
}
.foot-nav nav ul li ul li a::before {
  content: "";
  width: 0.8rem;
  height: 0.1rem;
  margin: auto;
  display: block;
  background: var(--base-c);
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  opacity: 0.64;
}
.foot-nav nav ul li ul li a:hover {
  opacity: 1;
}
@media screen and (max-width: 959px) {
  .foot-nav nav ul {
    width: 100%;
    flex-direction: column;
    margin-top: var(--size-2);
    gap: var(--size-2);
  }
  .foot-nav nav ul a {
    padding-bottom: var(--size-2);
  }
  .foot-nav nav ul a.link-ttl {
    padding-bottom: 0;
  }
  .foot-nav nav ul li {
    width: 100%;
    border-bottom: var(--list-border);
  }
  .foot-nav nav ul li ul {
    margin-top: 0;
    flex-direction: row;
    gap: var(--size-4);
  }
  .foot-nav nav ul li ul li {
    width: auto;
    border-bottom: unset;
  }
  .foot-nav nav ul li ul li a::before {
    bottom: var(--size-2);
  }
}
@media screen and (max-width: 600px) {
  .foot-nav nav ul {
    gap: var(--size-2);
  }
  .foot-nav nav ul li {
    gap: var(--size-2);
  }
  .foot-nav nav ul li ul {
    flex-direction: column;
    gap: 0;
  }
}
.foot-link {
  border-bottom: var(--list-border);
}
.foot-link li a {
  width: 100%;
  height: 100%;
  display: block;
  border: var(--list-border);
  transition: opacity 0.4s cubic-bezier(0.5, 1, 0.89, 1);
}
.foot-link li a:hover {
  opacity: 0.64;
}

small {
  font-family: var(--en-font);
  font-size: 1rem;
  letter-spacing: 0.02em;
  line-height: 1;
  opacity: 0.64;
}

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

* a {
  transition: color 0.4s cubic-bezier(0.5, 1, 0.89, 1);
}

* a:hover {
  color: var(--main-c);
}

* a:hover .img img {
  transform: scale(1.08);
}

:root {
  --white: #fff;
  --base-c: #1B1E29;
  --accent-c: #E60013;
  --h1-c: linear-gradient(90deg, #3D3B94 0%, #0B67BD 100%);
  --main-c: #0B67BD;
  --main-gd: #3D3B94;
  --gray-c: #D9D9D9;
  --gray-c2: #ECECED;
  --bg-anti-c: rgba(217, 217, 217, 0.16);
  --ja-font: "Zen Kaku Gothic New";
  --en-font: "Outfit";
  --weight-b: bold;
  --weight-m: 500;
  --weight-r: 400;
  --base-size: clamp(1.4rem, 1.333vw, 1.6rem);
  --h1-sub-size: clamp(1.2rem, 1.166vw, 1.4rem);
  --h1-size: clamp(5.6rem, 6vw, 7.2rem);
  --h2-size: clamp(3.2rem, 3.333vw, 4rem);
  --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: 0.8rem;
  --size-2: 1.6rem;
  --size-3: 2.4rem;
  --size-4: 3.2rem;
  --size-5: 4rem;
  --size-6: 4.8rem;
  --size-7: 5.6rem;
  --size-8: 6.4rem;
  --size-9: 7.2rem;
  --size-10: 8rem;
  --size-11: 8.8rem;
  --size-12: 9.6rem;
  --size-13: 10.4rem;
  --size-14: 11.2rem;
  --size-15: 12rem;
  --size-16: 12.8rem;
  --size-17: 13.6rem;
  --size-18: 14.4rem;
  --size-19: 15.2rem;
  --size-20: 16rem;
  --size-30: 24rem;
}

body {
  opacity: 0;
  background: url(/asset/img/common/noise.png) repeat;
  background-size: 10rem 10rem;
  position: relative;
  z-index: -1;
}

body.is-load {
  opacity: 1;
}

body {
  /* スクロールは有効にしたままバーを隠す */
  overflow-x: hidden !important;
  overflow-y: auto !important;
  /* Chrome, Safari, Edge, Opera用 */
}

body::-webkit-scrollbar {
  display: none !important;
}

body {
  /* Firefox用 */
  scrollbar-width: none !important;
  /* IE, Edge(旧)用 */
  -ms-overflow-style: none !important;
}

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.8s cubic-bezier(0.5, 1, 0.89, 1);
}

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

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

#cursor {
  width: var(--size-5);
  height: var(--size-5);
  margin: -2rem 0 0 -2rem;
  background: unset;
  border: solid 1px var(--main-c);
  border-radius: 50%;
  position: fixed;
  opacity: 0;
  pointer-events: none;
  transition: background 0.4s cubic-bezier(0.5, 1, 0.89, 1), border 0.4s cubic-bezier(0.5, 1, 0.89, 1), transform 0.4s cubic-bezier(0.5, 1, 0.89, 1);
  mix-blend-mode: multiply;
  z-index: 1000;
}

#cursor::before, #cursor::after {
  content: "";
  width: var(--size-5);
  height: var(--size-5);
  margin: -2rem 0 0 -2rem;
  background: unset;
  border: solid 1px var(--main-c);
  border-radius: 50%;
  position: fixed;
  opacity: 0;
  transform: translate(calc(50% - 1px), calc(50% - 1px));
  pointer-events: none;
  transition: background 0.4s cubic-bezier(0.5, 1, 0.89, 1), border 0.4s cubic-bezier(0.5, 1, 0.89, 1), transform 0.4s cubic-bezier(0.5, 1, 0.89, 1);
  z-index: 999;
}

#cursor.active {
  background: rgba(11, 103, 189, 0.48);
  border: rgba(11, 103, 189, 0.48);
  transform: scale(1.6);
}

h2.ttl::after {
  content: "";
  width: 100%;
  display: block;
  border-bottom: var(--list-border);
}
h2.ttl .main {
  width: -moz-fit-content;
  width: fit-content;
  display: inline-flex;
  font-size: var(--h1-size);
  font-weight: var(--weight-b);
  line-height: 1;
}
h2.ttl .sub {
  padding-left: 1rem;
  font-size: var(--base-size);
  font-weight: var(--weight-b);
  letter-spacing: 0.02em;
  position: relative;
}
h2.ttl .sub::before {
  content: "";
  width: 0.5rem;
  height: 0.3rem;
  margin: auto;
  display: block;
  background: var(--accent-c);
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
}

h3.ttl .main {
  width: -moz-fit-content;
  width: fit-content;
  display: inline-flex;
  font-size: var(--h2-size);
  font-weight: var(--weight-b);
  line-height: 1;
  letter-spacing: 0.015em;
}
h3.ttl .sub {
  padding-left: 1rem;
  color: var(--base-c);
  font-size: calc(var(--base-size) * 0.875);
  font-weight: var(--weight-b);
  letter-spacing: 0.02em;
  background: var(--base-c);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
}
h3.ttl .sub::before {
  content: "";
  width: 0.5rem;
  height: 0.3rem;
  margin: auto;
  display: block;
  background: var(--accent-c);
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
}

@media screen and (max-width: 959px) {
  .about {
    margin-bottom: var(--size-4);
  }
}
.about div img {
  width: 39.133%;
  height: 100%;
}
.about div .text {
  width: 47.066%;
}
@media screen and (max-width: 959px) {
  .about div {
    flex-direction: column;
    gap: var(--size-5);
  }
  .about div img {
    width: 100%;
    height: auto;
  }
  .about div .text {
    width: 100%;
  }
}

.scroll-text {
  min-width: calc(100% + var(--size-5));
  position: relative;
  right: calc(var(--size-5));
  opacity: 0.08;
  overflow: hidden;
}
.scroll-text p {
  font-size: var(--size-20);
  font-weight: var(--weight-b);
  line-height: 1.3;
  letter-spacing: 0;
  background: var(--h1-c);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  white-space: nowrap;
  animation: infinity-scroll-left 40s infinite linear;
}
@media screen and (max-width: 1200px) {
  .scroll-text p {
    font-size: clamp(var(--size-15), 13.333vw, var(--size-20));
  }
}
@media screen and (max-width: 959px) {
  .scroll-text p {
    font-size: clamp(var(--size-12), 12.513vw, var(--size-15));
  }
}

.service {
  height: calc(100% + 10rem);
  background: linear-gradient(143deg, rgba(11, 103, 189, 0.12) 32.2%, rgba(255, 255, 255, 0) 100%);
  background-blend-mode: luminosity, normal;
}
.service h3 {
  width: -moz-fit-content;
  width: fit-content;
  background: var(--h1-c);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media screen and (max-width: 959px) {
  .service h3 .main {
    font-size: clamp(2.8rem, 3.336vw, 3.2rem);
  }
}
.service h3 .sub {
  padding: 0;
  background: var(--base-c);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0.24;
}
.service h3 .sub::before {
  display: none;
}
.service .pin {
  position: relative;
  overflow: hidden;
}
.service .pin-sp {
  display: none;
}
@media screen and (max-width: 959px) {
  .service .pin {
    display: none;
  }
  .service .pin-sp {
    display: flex;
  }
}
.service .pin-wrap {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.service .pin-cont {
  margin-top: var(--header-height, 0px);
  height: calc(100vh - var(--header-height, 0px));
}
.service .pin-spacer {
  inset: unset !important;
}
.service .pin-left {
  width: 38.666vw;
  height: 100%;
  position: relative;
}
.service .pin-nav-item {
  width: 38.666vw;
  height: -moz-fit-content;
  height: fit-content;
  margin: auto;
  opacity: 0;
  position: absolute;
  top: 0;
  bottom: 0;
  pointer-events: none;
  transition: opacity 0.8s cubic-bezier(0.5, 1, 0.89, 1);
}
.service .pin-nav-item.is-active {
  opacity: 1;
  pointer-events: all;
}
.service .pin-nav-text p {
  font-size: 1.4rem;
}
.service .pin-right {
  width: 48vw;
  height: calc(85.308vh - var(--header-height));
  overflow: hidden;
}
.service .pin-img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  inset: 0;
}
.service .pin-img.img1 {
  z-index: 1;
}
.service .pin-img.img2 {
  z-index: 2;
}
.service .pin-img.img3 {
  z-index: 3;
}
.service .pin-img-wrap {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.service .pin-img.is-active {
  visibility: visible;
}
.service .pin-link {
  height: 100%;
  position: relative;
  opacity: 0.32;
  transition: all 0.8s cubic-bezier(0.5, 1, 0.89, 1);
}
.service .pin-link:hover {
  opacity: 1;
}
.service .pin-link a {
  width: 100%;
  height: 100%;
  display: block;
}
.service .pin-link.is-active {
  opacity: 1;
}
.service .pin-link.is-active::after {
  content: "";
  display: block;
  width: var(--size-6);
  height: var(--size-6);
  border: solid 2px var(--main-c);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: -10%;
  margin: auto;
}
.service .pin-link img {
  width: var(--size-5);
  aspect-ratio: 1/1;
}
.service .pin-last {
  margin-right: var(--size-1);
}
.service .btn-nml.gray {
  margin-right: auto;
  margin-left: auto;
  position: relative;
}

.works {
  margin-bottom: 12rem;
}
.works .img {
  aspect-ratio: 45/34;
  position: relative;
}
.works .img img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.works .img .label {
  font-size: 1.2rem;
  line-height: 1;
  letter-spacing: 0.02em;
  color: #fff;
  background: var(--main-c);
  position: absolute;
  top: var(--size-1);
  left: var(--size-1);
  z-index: 2;
}
@media screen and (max-width: 959px) {
  .works ul {
    margin-bottom: var(--size-6);
  }
}
.works ul li p {
  line-height: 1;
}
.works ul li p.name {
  font-weight: bold;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  overflow-wrap: break-word;
  word-break: break-word;
}
.works ul li p.address {
  font-size: 1.4rem;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  overflow-wrap: break-word;
  word-break: break-word;
}
.works ul li p.date {
  display: block;
  text-align: right;
  font-size: 1.4rem;
}
@media screen and (max-width: 959px) {
  .works > a {
    margin-top: var(--size-6);
  }
}

@media screen and (max-width: 767px) {
  .faq-flow {
    flex-direction: column;
  }
}
.faq-flow .bg {
  width: 100%;
}
.faq-flow .bg:hover {
  opacity: 1;
}
.faq-flow .bg::after {
  content: "";
  width: 100%;
  height: 100%;
  margin: auto;
  opacity: 0.72;
  background: linear-gradient(180deg, rgba(27, 30, 41, 0) 0%, #1B1E29 100%);
  position: absolute;
  bottom: 0;
  left: 0;
  transition: opacity 0.8s cubic-bezier(0.5, 1, 0.89, 1);
}
.faq-flow .bg:hover::after {
  opacity: 0;
}
.faq-flow .bg h3 {
  width: auto;
  color: #fff;
  position: relative;
  z-index: 2;
}
.faq-flow .bg h3.ttl {
  background: var(--white);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.faq-flow .bg h3 .sub {
  color: #fff;
  background: var(--white);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.faq-flow .bg h3 + span {
  margin-left: auto;
  position: relative;
  z-index: 2;
}

.faq {
  aspect-ratio: 349/190;
  background: url(/asset/img/top/faq.webp) no-repeat;
  background-size: cover;
  position: relative;
}

.flow {
  aspect-ratio: 349/190;
  background: url(/asset/img/top/flow.webp) no-repeat;
  background-size: cover;
  position: relative;
}

.news ul {
  width: 62.93%;
}
.news ul li {
  border-bottom: var(--list-border);
}
.news ul li:hover p.title {
  color: var(--main-c);
}
.news ul li:first-child {
  border-top: var(--list-border);
}
.news ul li p {
  line-height: 1;
}
.news ul li p.date {
  font-size: 1.2rem;
  opacity: 0.64;
}
.news ul li p.title {
  width: 89.936%;
  font-size: 1.4rem;
  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: color 0.4s cubic-bezier(0.5, 1, 0.89, 1);
}
@media screen and (max-width: 959px) {
  .news {
    flex-direction: column;
  }
  .news > div {
    width: 100%;
    flex-direction: row;
    margin-bottom: 3.2rem;
  }
  .news > div a {
    margin-top: 0;
  }
  .news ul {
    width: 100%;
  }
  .news ul li p.title {
    width: 100%;
  }
}

html {
  scroll-padding-top: 15rem;
}
@media screen and (max-width: 1200px) {
  html {
    scroll-padding-top: clamp(13rem, 10vw, 15rem);
  }
}
@media screen and (max-width: 1024px) {
  html {
    scroll-padding-top: var(--size-9);
  }
}

h1.ttl .main {
  margin-left: var(--size-10);
}
h1.ttl .sub {
  margin-left: var(--size-10);
}
@media screen and (max-width: 1200px) {
  h1.ttl .main {
    margin-left: 0;
  }
  h1.ttl .sub {
    margin-left: 0;
  }
}

h2 .main {
  font-size: var(--h3-size);
  font-weight: bold;
}
h2 .sub {
  font-size: calc(var(--base-size) * 0.875);
  opacity: 0.24;
}

.p-aboutus ul {
  gap: var(--size-6) var(--size-10);
}
.p-aboutus ul li {
  border-bottom: var(--list-border);
}
.p-aboutus ul li .anchor p {
  font-size: var(--h4-size);
  font-weight: bold;
}

.p-message .img {
  width: 50.793%;
}
.p-message .img img {
  aspect-ratio: 4/3;
}
.p-message .text {
  width: 42.857%;
}
.p-message .text .name span {
  font-size: var(--base-size);
}
@media screen and (max-width: 959px) {
  .p-message-wrap {
    flex-direction: column;
    gap: var(--size-3);
  }
  .p-message .img,
  .p-message .text {
    width: 100%;
  }
}

.p-history-list {
  width: 100%;
  max-width: 98rem;
}
.p-history-list ul li {
  position: relative;
}
.p-history-list ul li::before {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  display: block;
  position: absolute;
  top: 1rem;
  left: var(--size-10);
  background: var(--main-c);
}
.p-history-list ul li::after {
  content: "";
  width: 0.1rem;
  height: 100%;
  position: absolute;
  top: 1.5rem;
  left: calc(var(--size-10) + 0.15rem);
  background: rgba(27, 30, 41, 0.16);
}
.p-history-list ul li p.year {
  min-width: var(--size-7);
  font-family: var(--en-font);
  font-size: var(--size-3);
  line-height: 1;
  position: relative;
}
.p-history-list ul li p.year::before {
  content: "";
  width: var(--size-13);
  height: 1px;
  display: block;
  border-bottom: dashed 1px rgba(27, 30, 41, 0.32);
  position: absolute;
  top: 0;
  bottom: 0;
  left: 6.4rem;
  margin: auto;
}
.p-history-list ul li p.month {
  color: var(--main-c);
  font-weight: var(--weight-b);
  line-height: 1.5;
}
@media screen and (max-width: 600px) {
  .p-history-list ul li {
    gap: var(--size-10);
  }
  .p-history-list ul li p.year::before {
    width: var(--size-8);
  }
}
.p-history-list .event {
  flex-wrap: wrap;
}
.p-history-list .event div {
  width: 100%;
}
@media screen and (max-width: 959px) {
  .p-history-list .event div {
    flex-direction: column;
  }
  .p-history-list .event div .copy {
    padding-left: clamp(0.4rem, 0.667vw, 0.8rem);
  }
}

.p-projects h3 .main {
  font-size: var(--h3-size);
}
.p-projects-list {
  width: 100%;
}
.p-projects-list-item {
  border-bottom: var(--list-border);
}
.p-projects-list-item:first-child {
  border-top: var(--list-border);
}
.p-projects-list-item p {
  font-family: var(--ja-font);
}
.p-projects-list-item p.name {
  font-weight: bold;
  font-size: clamp(1.65rem, 1.333vw, 2rem);
  line-height: 1.2;
}
.p-projects-list-item p.name span {
  font-weight: normal;
  font-size: var(--base-size);
}
@media screen and (max-width: 767px) {
  .p-projects-list-item {
    flex-direction: column;
    align-items: start;
  }
  .p-projects-list-item p.date {
    margin-top: 0.4rem;
  }
}

.relation h4 {
  display: inline-flex;
  font-weight: bold;
}
.relation ul {
  row-gap: 0;
}
.relation ul li {
  border-top: var(--list-border);
}
.relation ul li:nth-child(3), .relation ul li:nth-child(4) {
  border-bottom: var(--list-border);
}
.relation ul li a {
  width: 100%;
}
.relation ul li a .img {
  width: 27.118%;
}
.relation ul li a p {
  margin: 0 auto 0 var(--size-3);
  font-size: var(--h4-size);
  font-weight: var(--weight-m);
}
@media screen and (max-width: 959px) {
  .relation ul li:nth-child(3) {
    border-bottom: unset;
  }
  .relation ul li:nth-child(4) {
    border-bottom: var(--list-border);
  }
}

.p-service h2 {
  border-bottom: var(--list-border);
}
.p-service h2 .main {
  width: -moz-fit-content;
  width: fit-content;
  display: inline-flex;
}
.p-service .text {
  width: 49.206%;
}
.p-service .img {
  width: 44.444%;
}
.p-service .other {
  border-top: var(--list-border);
}
.p-service .other h4 {
  font-weight: var(--weight-m);
}
.p-service .other .img {
  width: 100%;
  margin: auto 0 0 0;
}
@media screen and (max-width: 959px) {
  .p-service div.flex {
    flex-direction: column-reverse;
    gap: var(--size-4);
  }
  .p-service div.flex:nth-of-type(4) {
    flex-direction: column;
  }
  .p-service div.flex .text {
    width: 100%;
  }
  .p-service div.flex .img {
    width: 100%;
  }
  .p-service .other {
    flex-direction: column !important;
    gap: var(--size-6) !important;
  }
  .p-service .other div.flex {
    flex-direction: column !important;
    gap: 0;
  }
}

.flow-list-item {
  transition: opacity 0.4s cubic-bezier(0.5, 1, 0.89, 1);
}
.flow-list-item .label {
  font-family: var(--en-font);
  font-size: var(--base-size);
  font-weight: var(--weight-m);
  letter-spacing: 0.02em;
  color: #fff;
  background: var(--main-c);
  position: relative;
}
.flow-list-item .label::after {
  content: "";
  width: 0.1rem;
  height: var(--lineHeight, 0) !important;
  margin: auto;
  background: rgba(27, 30, 41, 0.32);
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  transform-origin: top;
  transition: background-color 0.4s cubic-bezier(0.5, 1, 0.89, 1);
  z-index: -1;
}
.flow-list-item__detail {
  width: 100%;
}
.flow-list-item__detail .text {
  width: 45.396%;
}
.flow-list-item__detail .text h3 {
  flex-wrap: wrap;
  letter-spacing: 0.04em;
}
.flow-list-item__detail .text h3 .cap {
  font-size: var(--base-size);
}
.flow-list-item__detail .img {
  width: 38.095%;
  max-width: 48rem;
}
@media screen and (max-width: 959px) {
  .flow-list-item__detail {
    flex-direction: column;
    gap: var(--size-4);
  }
  .flow-list-item__detail .text {
    width: 100%;
  }
  .flow-list-item__detail .img {
    width: 100%;
    max-width: 100%;
  }
}

.p-works .clickable {
  margin-bottom: var(--size-1);
  border-bottom: var(--list-border);
}
.p-works .clickable li {
  font-weight: bold;
  position: relative;
}
.p-works .clickable li::after {
  content: "";
  display: block;
  height: 100%;
  border-right: var(--list-border);
  position: absolute;
  top: 0;
  right: 0;
}
.p-works .clickable li:last-child::after {
  display: none;
}
.p-works .clickable li label {
  font-size: var(--base-size);
  line-height: 1;
  position: relative;
  cursor: pointer;
}
.p-works .clickable li label p {
  transition: color 0.4s cubic-bezier(0.5, 1, 0.89, 1);
}
.p-works .clickable li label [type=radio] {
  display: none;
}
.p-works .clickable li label [type=radio]:checked + p {
  color: var(--main-c);
}
.p-works .clickable li label:hover p {
  color: var(--main-c);
}
.p-works .clickable li .count {
  font-size: 1.2rem;
}
.p-works .clickable li .count i {
  font-style: normal;
}
.p-works .clickable li .count i:first-child {
  padding-right: 0.4rem;
}
.p-works .clickable li .count i:last-child {
  padding-left: 0.4rem;
}
@media screen and (max-width: 480px) {
  .p-works .clickable {
    margin-bottom: var(--size-2);
    padding-bottom: var(--size-2);
    flex-direction: column;
    align-items: start;
    gap: var(--size-1);
  }
  .p-works .clickable li::after {
    display: none;
  }
}
.p-works .cap {
  line-height: 1.3;
  opacity: 0.64;
}
.p-works .cap span {
  font-weight: bold;
  opacity: 0.64;
}
.p-works .img {
  aspect-ratio: 4/3;
  position: relative;
}
.p-works .img img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-works .img .label {
  font-size: 1.2rem;
  line-height: 1;
  letter-spacing: 0.02em;
  color: #fff;
  background: var(--main-c);
  position: absolute;
  top: var(--size-1);
  left: var(--size-1);
  z-index: 2;
}
@media screen and (max-width: 959px) {
  .p-works ul {
    margin-bottom: var(--size-6);
  }
}
.p-works ul li p {
  line-height: 1;
}
.p-works ul li p.name {
  font-weight: bold;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  overflow-wrap: break-word;
  word-break: break-word;
}
.p-works ul li p.address {
  font-size: 1.4rem;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  overflow-wrap: break-word;
  word-break: break-word;
}
.p-works ul li p.date {
  display: block;
  text-align: right;
  font-size: 1.4rem;
}
@media screen and (max-width: 959px) {
  .p-works > a {
    margin-top: var(--size-6);
  }
}
.p-works-detail .label {
  display: inline-block;
  font-size: 1.2rem;
  line-height: 1;
  letter-spacing: 0.02em;
  color: #fff;
  background: var(--main-c);
}
.p-works-detail .bf-ar {
  position: relative;
}
.p-works-detail .bf-ar .arrow svg {
  width: var(--size-3);
  height: var(--size-6);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  z-index: 2;
}
.p-works-detail .bf-ar .bf-img,
.p-works-detail .bf-ar .ar-img {
  width: 50%;
}
.p-works-detail .bf-ar .bf-img img,
.p-works-detail .bf-ar .ar-img img {
  width: 100%;
  aspect-ratio: 8/5;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-works-detail .bf-ar .bf-img h3,
.p-works-detail .bf-ar .ar-img h3 {
  font-family: var(--en-font);
  font-size: var(--h4-size);
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.04em;
  color: #fff;
}
.p-works-detail .bf-ar .bf-img {
  background: rgba(27, 30, 41, 0.16);
}
.p-works-detail .bf-ar .bf-img h3 {
  color: rgba(27, 30, 41, 0.48);
}
.p-works-detail .bf-ar .ar-img {
  background: var(--main-c);
}
@media screen and (max-width: 767px) {
  .p-works-detail .bf-ar {
    flex-direction: column;
  }
  .p-works-detail .bf-ar .arrow {
    transform: rotate(90deg);
  }
  .p-works-detail .bf-ar .arrow svg {
    width: var(--size-2);
    height: var(--size-4);
    left: -0.75rem;
  }
  .p-works-detail .bf-ar .bf-img,
  .p-works-detail .bf-ar .ar-img {
    width: 100%;
    padding-top: var(--size-2);
    padding-right: var(--size-2);
    padding-left: var(--size-2);
  }
}
.p-works-detail .detail-list-item {
  border-bottom: var(--list-border);
  overflow-wrap: break-word;
}
.p-works-detail .detail-list-item:first-child {
  border-top: var(--list-border);
}
.p-works-detail .detail-list-item dt,
.p-works-detail .detail-list-item dd {
  font-family: var(--ja-font);
  font-size: var(--base-size);
  line-height: 1.75;
}
.p-works-detail .detail-list-item dt {
  width: 25.396%;
}
.p-works-detail .detail-list-item dd {
  width: 74.603%;
}
@media screen and (max-width: 767px) {
  .p-works-detail .detail-list-item {
    flex-direction: column;
  }
  .p-works-detail .detail-list-item dt {
    width: 100%;
    padding-bottom: var(--size-1);
    padding-left: 0;
  }
  .p-works-detail .detail-list-item dd {
    width: 100%;
  }
}
.p-works-detail .comment-wrap p {
  overflow-wrap: break-word;
}
.p-works-detail .comment-wrap p.comment {
  width: -moz-fit-content;
  width: fit-content;
  display: inline-flex;
  font-size: clamp(2.2rem, 1.866vw, 2.8rem);
  font-weight: bold;
  line-height: 1;
}
.p-works-detail .comment-wrap p a {
  color: var(--main-c);
  border-bottom: solid 1px rgba(11, 103, 189, 0.64);
  word-wrap: break-word;
}

.p-news li {
  border-bottom: var(--list-border);
}
.p-news li:first-child {
  border-top: var(--list-border);
}
.p-news li a:hover .news-ttl {
  color: var(--main-c);
}
.p-news li a .img {
  width: clamp(18rem, 16vw, 24rem);
  aspect-ratio: 3/2;
}
.p-news li a .img img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-news li a .news-cont {
  width: 100%;
}
.p-news li a .news-cont .news-ttl {
  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: color 0.4s cubic-bezier(0.5, 1, 0.89, 1);
}
.p-news li a .news-cont .date {
  line-height: 1;
  opacity: 0.64;
}
@media screen and (max-width: 767px) {
  .p-news li {
    padding-left: 0;
  }
  .p-news li a .news-cont {
    margin-left: clamp(2rem, 5.215vw, 4rem);
    gap: var(--size-1);
  }
  .p-news li a .news-cont .news-ttl {
    font-size: clamp(1.4rem, 2.346vw, 1.8rem);
  }
  .p-news li a .btn-arrow {
    margin-left: clamp(4rem, 9.126vw, 7rem);
  }
}
.p-news p {
  overflow-wrap: break-word;
}
.p-news p a {
  color: var(--main-c);
  border-bottom: solid 1px rgba(11, 103, 189, 0.64);
  word-wrap: break-word;
}

.p-faq dt,
.p-faq dd {
  font-size: var(--base-size);
}
.p-faq dt span,
.p-faq dd span {
  width: var(--size-4);
  height: var(--size-4);
  aspect-ratio: 1/1;
  font-weight: bold;
}
@media screen and (max-width: 1200px) {
  .p-faq dt span,
  .p-faq dd span {
    width: var(--size-3);
    height: var(--size-3);
  }
}
.p-faq dt p,
.p-faq dd p {
  padding-top: 0.4rem;
}
@media screen and (max-width: 1200px) {
  .p-faq dt p,
  .p-faq dd p {
    padding-top: 0;
  }
}
.p-faq dt span {
  background: var(--main-c);
  color: #fff;
}
.p-faq dd span {
  background: var(--gray-c);
  color: var(--main-c);
}
.p-faq div {
  width: 100%;
}
.p-faq div:nth-child(even) {
  background: rgba(217, 217, 217, 0.16);
}

.p-recruit .list-item,
.p-company .list-item {
  border-bottom: var(--list-border);
}
.p-recruit .list-item:first-child,
.p-company .list-item:first-child {
  border-top: var(--list-border);
}
.p-recruit .list-item dt,
.p-recruit .list-item dd,
.p-company .list-item dt,
.p-company .list-item dd {
  font-family: var(--ja-font);
  font-size: var(--base-size);
  line-height: 1.75;
}
.p-recruit .list-item dt,
.p-company .list-item dt {
  width: 25.396%;
}
.p-recruit .list-item dd,
.p-company .list-item dd {
  width: 74.603%;
}
.p-recruit .list-item dd iframe,
.p-company .list-item dd iframe {
  width: 100%;
  aspect-ratio: 11/4;
}
@media screen and (max-width: 767px) {
  .p-recruit .list-item,
  .p-company .list-item {
    flex-direction: column;
  }
  .p-recruit .list-item dt,
  .p-company .list-item dt {
    width: 100%;
    padding-bottom: var(--size-1);
    padding-left: 0;
  }
  .p-recruit .list-item dd,
  .p-company .list-item dd {
    width: 100%;
  }
}
.p-recruit .list-item .num,
.p-company .list-item .num {
  font-size: 1.2rem;
  line-height: calc(clamp(1.4rem, 1.333vw, 1.6rem) * 1.75);
  vertical-align: top;
  white-space: pre;
}
.p-recruit .list-item .num span:first-child,
.p-company .list-item .num span:first-child {
  margin-right: 0.4rem;
}
.p-recruit .list-item .num span:last-child,
.p-company .list-item .num span:last-child {
  margin-right: 0.4rem;
  margin-left: 0.4rem;
}

.p-privacy h2 {
  font-size: var(--h4-size);
}

.pagination {
  display: flex;
  justify-content: center;
}
.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);
}

.page-numbers {
  width: 3rem;
  height: 3rem;
  margin-right: var(--size-1);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: var(--base-size);
  line-height: 1;
  position: relative;
  transition: all 0.4s cubic-bezier(0.5, 1, 0.89, 1);
}
.page-numbers:last-child {
  margin-right: 0;
}
.page-numbers.current {
  color: #fff;
  background: var(--main-c);
}
.page-numbers:hover {
  width: 3rem;
  height: 3rem;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  background: var(--main-c);
  transition: all 0.4s cubic-bezier(0.5, 1, 0.89, 1);
}

.aioseo-breadcrumbs {
  width: -moz-fit-content;
  width: fit-content;
  margin: var(--size-4) 0 0 var(--size-10);
  font-size: 1.2rem;
  background: unset !important;
}
.aioseo-breadcrumb:last-child {
  color: var(--main-c);
}
.aioseo-breadcrumb a {
  font-size: 1.2rem;
}
.aioseo-breadcrumb-separator {
  padding: 0 var(--size-1);
  font-size: 1rem;
}
@media screen and (max-width: 1200px) {
  .aioseo-breadcrumbs {
    margin-left: 0;
  }
}/*# sourceMappingURL=style.css.map */