:root {
  --font-primary: "Noto Serif JP", serif;
  --font-en: "EB Garamond", serif;
  --font-family-base: var(--font-primary);
  --font-weight-base: 400;
  --lineheight-base: 1.5;
  --font-size-base: 1.4rem;
  --body-text-color: #222;
  --color-primary: #ca0034;
  --color-gray: #f3f2f1;
  --scale: min(calc(100vw / 1600), calc(100vh / 1100));
  --input-border-color: #000;
  --input-border-width: 1px;
  --input-font-size: 1.6rem;
  --input-font-weight: 400;
  --input-background: #fff;
  --input-color: var(--body-text-color);
  --input-height: 5rem;
  --input-line-height: 1.5;
  --input-padding-x: 2rem;
  --input-padding-y: 1rem;
  --input-placeholder-color: #ccc;
  --input-disabled-bg: #1E1E1E;
  --btn-font-family: var(--font-family-base);
  --btn-font-weight: 400;
  --btn-border-width: 1px;
  --btn-color: var(--body-text-color);
  --btn-disabled-opacity: 0.8;
}
@media (min-width: 768px) {
  :root {
    --font-size-base: 1.6rem;
  }
}

* {
  box-sizing: border-box;
  letter-spacing: 0.05em;
}

html {
  font-size: 2.6666666667vw;
  overflow-x: clip;
  scrollbar-gutter: stable;
}
@media (min-width: 768px) {
  html {
    font-size: 0.625vw;
  }
}
html.noscroll {
  position: fixed;
  left: 0;
  right: 0;
  width: 100%;
  overflow-y: scroll;
  overflow-x: clip;
}

body {
  background-color: var(--color-gray);
  color: var(--body-text-color);
  margin: 0;
  font-family: var(--font-family-base);
  font-weight: 400;
  font-size: var(--font-size-base);
  line-height: var(--lineheight-base);
  text-align: left;
  position: relative;
  overflow-x: clip;
}
body.noscroll {
  overflow: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
}

ol,
ul,
dl {
  list-style-type: none;
  margin: 0;
  padding-left: 0;
}

b,
strong {
  font-weight: 700;
}

a {
  background-color: transparent;
  color: inherit;
  text-decoration: none;
}

img {
  vertical-align: middle;
  border-style: none;
  max-width: 100%;
  height: auto;
}

table {
  border-collapse: collapse;
}

th {
  font-weight: inherit;
  text-align: inherit;
  text-align: -webkit-match-parent;
}

input,
button,
select,
optgroup,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

select {
  word-wrap: normal;
}

button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
     -moz-appearance: button;
          appearance: button;
}

textarea {
  overflow: auto;
  resize: vertical;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  outline-offset: -2px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
          appearance: none;
}

[hidden] {
  display: none !important;
}

.aligncenter {
  text-align: center;
}

.alignright {
  text-align: right;
}

.alignleft {
  text-align: left;
}

figure {
  margin: 0;
  padding: 0;
}

img.aligncenter {
  display: block;
  margin: auto;
}
img.alignright {
  display: block;
  margin-left: auto;
}
img.alignleft {
  display: block;
  margin-right: auto;
}

.container {
  margin: 0 auto;
  max-width: 123rem;
  padding-inline: 1.5rem;
  width: 100%;
}

.inner {
  width: 100%;
  padding-inline: 1.5rem;
}
@media (min-width: 768px) {
  .inner {
    padding-inline: 5rem;
  }
}

.animate_animated {
  animation-duration: 1.5s;
  animation-fill-mode: both;
  animation-timing-function: ease;
}

.animate__imageScale {
  animation-name: imageScale;
}

.fade-in-up {
  animation-name: fadeInUp;
}

@keyframes imageScale {
  0% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes runImage {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeInUp {
  0% {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.btn {
  display: inline-block;
  font-family: var(--btn-font-family);
  font-weight: var(--btn-font-weight);
  color: var(--btn-color);
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  background-color: transparent;
  border: var(--btn-border-width) solid transparent;
}
.btn:focus, .btn.focus {
  outline: 0;
}
.btn.disabled, .btn:disabled {
  opacity: var(--btn-disabled-opacity);
}
.btn:not(:disabled):not(.disabled) {
  cursor: pointer;
}

.btn-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 5.5rem;
  background-color: #FFF;
  font-size: 1.5rem;
  line-height: 1;
}
@media (min-width: 768px) {
  .btn-submit {
    width: 36rem;
    height: 6rem;
    font-size: 1.6rem;
    transition: 0.3s ease opacity;
  }
  .btn-submit:hover {
    opacity: 0.8;
  }
}

.p-header {
  position: relative;
  z-index: 1000;
  top: 1.6rem;
  left: 1.75rem;
}
@media (min-width: 768px) {
  .p-header {
    position: absolute;
    top: 3rem;
    left: 3rem;
  }
}
.p-header__logo {
  display: block;
  width: 20rem;
  height: 3rem;
}
@media (min-width: 768px) {
  .p-header__logo {
    width: 37.4rem;
    height: 5.5rem;
  }
}
.p-header__logo img {
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
}

.p-menu {
  position: fixed;
  z-index: -99;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: 0.3s ease all;
  overflow: hidden;
}
.p-menu.is-active {
  z-index: 999;
  pointer-events: all;
  opacity: 1;
}
@media (min-width: 768px) {
  .p-menu {
    background: rgba(20, 18, 16, 0.65);
    backdrop-filter: blur(4px);
    transition: opacity 0.2s;
  }
}

.p-nav {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4.5rem;
}
@media (max-width: 767px) {
  .p-nav {
    width: 100%;
    height: 100%;
    background: #FFF url("../images/bg_menu_sp.png") no-repeat center;
    background-size: 100% 7rem;
  }
}
@media (min-width: 768px) {
  .p-nav {
    width: 40rem;
    height: 50rem;
    padding: 5rem;
    background: #FFF url("../images/bg_menu.png") no-repeat center;
    background-size: 90% auto;
  }
}
.p-nav__btn-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 2rem;
  color: #9a9490;
  cursor: pointer;
  width: 3.2rem;
  height: 3.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s;
  z-index: 1;
  line-height: 1;
}
@media (max-width: 767px) {
  .p-nav__btn-close {
    display: none;
  }
}
.p-nav__item {
  font-size: 2rem;
  text-align: center;
  letter-spacing: 0.05em;
}

.p-hamburger {
  display: block;
  position: fixed;
  z-index: 1000;
  right: 0;
  top: 0;
  width: 6rem;
  height: 6rem;
  cursor: pointer;
  caret-color: transparent;
}
.p-hamburger span {
  display: block;
  position: absolute;
  right: 1.75rem;
  width: 3rem;
  height: 1px;
  background-color: #000;
  transition: 0.3s all ease;
}
.p-hamburger span:nth-child(1) {
  top: 2.6rem;
}
.p-hamburger span:nth-child(2) {
  top: 2.9rem;
  opacity: 0;
}
.p-hamburger span:nth-child(3) {
  top: 3.3rem;
}
.p-hamburger.is-active span:nth-child(1) {
  opacity: 0;
}
.p-hamburger.is-active span:nth-child(2) {
  opacity: 1;
}
.p-hamburger.is-active span:nth-child(3) {
  opacity: 0;
}

.p-footer {
  position: relative;
  z-index: 2;
  padding-inline: 1.5rem;
  padding-block: 5rem 5rem;
  background-color: #222;
}
@media (min-width: 768px) {
  .p-footer {
    padding-block: 10rem 10rem;
  }
}
.p-footer__logo {
  margin-bottom: 3.5rem;
  width: 20rem;
  aspect-ratio: 400/58;
  margin-inline: auto;
}
@media (min-width: 768px) {
  .p-footer__logo {
    margin-bottom: 6.4rem;
    width: 37.5rem;
    aspect-ratio: 375/54;
  }
}
.p-footer__logo img {
  display: block;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  cursor: pointer;
}
.p-footer__copyright {
  font-family: var(--font-en);
  font-size: 1rem;
  line-height: 1;
  text-align: center;
  color: #CCC;
  text-align: center;
}
@media (min-width: 768px) {
  .p-footer__copyright {
    font-size: 1.4rem;
  }
}

.form-control {
  background-color: var(--input-background);
  background-clip: padding-box;
  border: var(--input-border-width) solid var(--input-border-color);
  color: var(--input-color);
  display: block;
  font-family: var(--font-family-base);
  font-size: var(--input-font-size);
  font-weight: var(--input-font-weight);
  line-height: var(--input-line-height);
  padding: var(--input-padding-y) var(--input-padding-x);
  height: var(--input-height);
  width: 100%;
}
.form-control::-ms-expand {
  background-color: transparent;
  border: 0;
}
.form-control:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 var(--input-color);
}
.form-control::-moz-placeholder {
  color: var(--input-placeholder-color);
  opacity: 1;
}
.form-control::placeholder {
  color: var(--input-placeholder-color);
  opacity: 1;
}
.form-control:disabled, .form-control[readonly] {
  background-color: var(--input-disabled-bg);
  opacity: 1;
}

input[type=date].form-control,
input[type=time].form-control,
input[type=datetime-local].form-control,
input[type=month].form-control {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.c-input {
  width: 100%;
  height: 5.5rem;
  padding: 1rem 2rem;
  background-color: #DDD;
  border: 1px solid #DDD;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.7142857143;
  color: var(--body-text-color);
  outline: none;
}
@media (min-width: 768px) {
  .c-input {
    width: 36rem;
    height: 6rem;
    padding: 1rem 2rem;
    font-size: 1.6rem;
  }
}
.c-input::-moz-placeholder {
  color: #9C9C9C;
}
.c-input::placeholder {
  color: #9C9C9C;
}
.c-input:focus {
  background-color: #FFF;
}
.c-input.error {
  border-color: #f94b4b;
}

textarea.c-input {
  height: 29rem;
}
@media (min-width: 768px) {
  textarea.c-input {
    width: 100%;
    height: 25rem;
  }
}

.c-select {
  position: relative;
  width: 100%;
  height: 5.5rem;
}
@media (min-width: 768px) {
  .c-select {
    width: 36rem;
    height: 6rem;
  }
}
.c-select select {
  width: 100%;
  height: 100%;
  padding-block: 1rem;
  padding-inline: 2rem 4.5rem;
  background-color: #DDD;
  border: 0;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.7142857143;
  color: var(--body-text-color);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}
@media (min-width: 768px) {
  .c-select select {
    padding-block: 1rem;
    padding-inline: 2rem 4.5rem;
    font-size: 1.6rem;
  }
}
.c-select::before {
  position: absolute;
  top: 1.8rem;
  right: 2rem;
  width: 2rem;
  aspect-ratio: 1/1;
  background: url("../images/icon_plus_02.png") no-repeat center;
  background-size: 2rem;
  pointer-events: none;
  content: "";
}
@media (min-width: 768px) {
  .c-select::before {
    top: 2.4rem;
    right: 2.4rem;
    width: 1.3rem;
    background-size: 1.3rem;
  }
}

.p-form {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media (min-width: 768px) {
  .p-form {
    gap: 1rem;
  }
}
.p-form__row {
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .p-form__row {
    flex-direction: row;
    align-items: flex-start;
  }
}
.p-form__head {
  width: 100%;
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
  line-height: 1.5;
}
@media (min-width: 768px) {
  .p-form__head {
    width: 16.5rem;
    margin-bottom: 0;
    padding-top: 1.8rem;
    font-size: 1.6rem;
  }
}
.p-form__content {
  width: 100%;
}
@media (min-width: 768px) {
  .p-form__content {
    width: calc(100% - 16.5rem);
  }
}
.p-form__box {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}
@media (min-width: 768px) {
  .p-form__box {
    gap: 1rem;
    justify-content: space-between;
    flex-direction: row;
    align-items: center;
    margin-top: 1.5rem;
  }
}
.p-form__txt {
  font-size: 1.1rem;
  line-height: 1.25;
}
@media (max-width: 767px) {
  .p-form__txt {
    letter-spacing: 0;
  }
}
@media (min-width: 768px) {
  .p-form__txt {
    font-size: 1.4rem;
  }
}
.p-form__txt .link {
  position: relative;
  display: inline-block;
  text-decoration: none !important;
}
.p-form__txt .link::after {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: #969696;
  opacity: 1;
  transition: 0.3s ease opacity;
  content: "";
}
@media (min-width: 768px) {
  .p-form__txt .link::after {
    bottom: -0.4rem;
  }
}
@media (min-width: 768px) {
  .p-form__txt .link {
    cursor: pointer;
  }
  .p-form__txt .link:hover::after {
    opacity: 0;
  }
}
.p-form__note {
  font-size: 1.2rem;
  line-height: 1;
}
@media (min-width: 768px) {
  .p-form__note {
    font-size: 1.4rem;
  }
}
.p-form__btns {
  margin-top: 3rem;
}
@media (min-width: 768px) {
  .p-form__btns {
    margin-top: 4.5rem;
    padding-left: 16.5rem;
  }
}
.p-form .error-style label.error {
  margin-top: 0;
}
@media (min-width: 768px) {
  .p-form .error-style label.error {
    margin-left: 0;
  }
}
.p-form label.error {
  display: inline-block;
  margin-top: 0.5rem;
  color: #f53b3b;
}
@media (min-width: 768px) {
  .p-form label.error {
    margin-top: 0;
    margin-left: 1rem;
  }
}

.cf-inline-success {
  display: flex;
  gap: 1rem;
  align-items: center;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 0.06em;
}

.cf-inline-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.8rem;
  height: 2.8rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.8);
  flex-shrink: 0;
}

.hline01 {
  display: flex;
  flex-direction: column;
  width: -moz-fit-content;
  width: fit-content;
  font-family: var(--font-en);
}
.hline01.--center {
  margin-inline: auto;
}
.hline01.--center .hline01__sub {
  text-align: center;
}
.hline01.--center .hline01__ttl {
  text-align: center;
}
.hline01__sub {
  margin-bottom: 1.5rem;
  color: var(--color-primary);
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.1em;
}
@media (min-width: 768px) {
  .hline01__sub {
    font-size: 2rem;
  }
}
.hline01__ttl {
  font-size: 7rem;
  line-height: 1;
  font-weight: 400;
  letter-spacing: 0;
}
@media (min-width: 768px) {
  .hline01__ttl {
    font-size: 10rem;
  }
}

@media (max-width: 767px) {
  .pc {
    display: none !important;
  }
}

@media (min-width: 768px) {
  .sp {
    display: none !important;
  }
}

.nospace::before, .nospace::after {
  content: "";
  display: block flow;
  inline-size: 0;
  block-size: 1px;
}
.nospace::before {
  margin-block-end: calc((1 - var(--lh, var(--lineheight-base))) * 0.5em);
}
.nospace::after {
  margin-block-start: calc((1 - var(--lh, var(--lineheight-base))) * 0.5em);
}

.p-circle-top {
  position: fixed;
  z-index: -1;
  border-radius: 50vw;
  background-color: #FFF;
  transform-origin: center center;
  transform: translate(-50%, -50%) scale(1);
  pointer-events: none;
}
@media (max-width: 767px) {
  .p-circle-top {
    left: 50%;
    top: 2.2rem;
    width: calc(100% - 4.4rem);
    height: 49rem;
    transform: translateX(-50%) scale(1);
  }
}
@media (min-width: 768px) {
  .p-circle-top {
    left: 50%;
    top: 50%;
    width: calc(100% - 100px);
    height: calc(100vh - 100px);
    transform: translate(-50%, -50%) scale(1);
  }
}

.p-keyv {
  position: relative;
  z-index: 2;
  width: 100%;
  margin-bottom: 3.5rem;
  padding-top: 18rem;
}
@media (min-width: 768px) {
  .p-keyv {
    margin-bottom: 29rem;
    padding-top: 0;
  }
}
.p-keyv__inner {
  display: flex;
  padding-inline: 1.75rem;
}
@media (min-width: 768px) {
  .p-keyv__inner {
    justify-content: space-between;
    padding-top: 13rem;
    padding-inline: 3rem;
  }
}
.p-keyv__hline {
  display: block;
  margin-bottom: 2rem;
  font-weight: 500;
  font-size: 4rem;
  line-height: 1.25;
  letter-spacing: 0.05em;
  white-space: nowrap;
}
@media (min-width: 768px) {
  .p-keyv__hline {
    margin-bottom: 3rem;
    font-size: 7rem;
    line-height: 1.2222222222;
  }
}
@media (min-width: 1200px) {
  .p-keyv__hline {
    font-size: 6rem;
  }
}
@media (min-width: 1700px) {
  .p-keyv__hline {
    margin-bottom: 4rem;
    font-size: min(9rem, 90px);
  }
}
.p-keyv__hline .--style-1 {
  letter-spacing: -0.09em;
}
.p-keyv__hline .--style-2 {
  letter-spacing: -0.0009em;
}
.p-keyv__ttl {
  margin-bottom: 7rem;
  font-family: var(--font-en);
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 1.6666666667;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-primary);
}
@media (min-width: 768px) {
  .p-keyv__ttl {
    font-size: min(1.6rem, 16px);
    line-height: 2;
    margin-bottom: min(5rem, 50px);
  }
}
@media (min-width: 1700px) {
  .p-keyv__ttl {
    margin-bottom: min(7rem, 70px);
  }
}
.p-keyv__txt {
  position: relative;
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 2;
  text-align: justify;
}
@media (min-width: 768px) {
  .p-keyv__txt {
    font-size: min(1.8rem, 18px);
    line-height: 2.5555555556;
    text-align: left;
  }
}

.p-nav-top {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .p-nav-top {
    margin-top: 7.5rem;
  }
}
.p-nav-top__item {
  font-family: var(--font-en);
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 2.7777777778;
  color: var(--body-text-color);
  text-transform: uppercase;
  text-decoration: none !important;
  cursor: pointer;
  transform-origin: left center;
  transition: 0.3s ease all;
  letter-spacing: 0.07em;
}
.p-nav-top__item:hover {
  transform: scale(1.4);
  color: var(--color-primary);
}
@media (max-width: 767px) {
  .p-nav-top {
    display: none;
  }
}

.p-intro {
  position: relative;
  z-index: 2;
  overflow: hidden;
  padding-block: 6rem 0;
  margin-bottom: 5rem;
}
@media (min-width: 768px) {
  .p-intro {
    min-height: 27rem;
    margin-bottom: 0;
    padding-block: 3rem;
  }
}
.p-intro__hline {
  display: block;
  width: 100%;
  margin-bottom: 1.5rem;
  padding: 2rem 1rem;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1;
  color: #FFF;
  background-color: #222;
  text-align: center;
  text-decoration: none !important;
}
@media (min-width: 768px) {
  .p-intro__hline {
    margin-bottom: 4rem;
    font-size: 2.4rem;
  }
}
.p-intro__txt {
  position: relative;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 2;
  text-align: center;
}
@media (min-width: 768px) {
  .p-intro__txt {
    font-size: 1.6rem;
  }
}
.p-intro__box {
  display: flex;
  position: absolute;
  z-index: -1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.p-intro__line {
  display: flex;
  flex-shrink: 0;
  gap: 5rem;
  padding-right: 5rem;
  animation: runImage 10s linear infinite;
  will-change: transform;
  backface-visibility: hidden;
}
@media (min-width: 768px) {
  .p-intro__line {
    gap: 2rem;
    padding-right: 2rem;
    animation-duration: 20s;
  }
}
.p-intro__line img {
  display: block;
  flex-shrink: 0;
  width: 45rem;
  aspect-ratio: 900/147;
}
@media (min-width: 768px) {
  .p-intro__line img {
    width: 183.5rem;
    aspect-ratio: 1835/270;
  }
}

.p-strength {
  padding-top: 1.5rem;
  will-change: transform;
  backface-visibility: hidden;
  transform: translateZ(0);
}
@media (min-width: 768px) {
  .p-strength {
    padding-top: 13rem;
  }
}
.p-strength__hline {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-bottom: 3rem;
  padding-inline: 1.5rem;
}
.p-strength__hline::after {
  position: absolute;
  bottom: 0;
  left: 1.5rem;
  width: calc(100% - 3rem);
  height: 1px;
  background-color: #000;
  content: "";
}
@media (min-width: 768px) {
  .p-strength__hline {
    padding-bottom: 5.5rem;
    padding-inline: 5rem;
  }
  .p-strength__hline::after {
    left: 5rem;
    width: calc(100% - 10rem);
  }
}

.list-strength {
  position: relative;
  z-index: 3;
  height: 113rem;
  padding-top: 1rem;
  overflow: hidden;
}
@media (min-width: 768px) {
  .list-strength {
    padding-top: 3rem;
    height: 99rem;
  }
}
.list-strength__item {
  display: flex;
  flex-direction: column;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  padding-block: 3rem;
}
@media (max-width: 767px) {
  .list-strength__item {
    justify-content: center;
    padding-inline: 1.5rem;
  }
  .list-strength__item::after {
    position: absolute;
    bottom: 1px;
    left: 1.5rem;
    width: calc(100% - 3rem);
    height: 1px;
    background-color: #000;
    content: "";
  }
}
@media (min-width: 768px) {
  .list-strength__item {
    flex-direction: row;
    align-items: center;
    padding-left: 19rem;
    padding-right: 5rem;
  }
  .list-strength__item:not(:last-child) .list-strength__content {
    border-bottom: 1px solid #000;
  }
}
.list-strength__item.--item-1 {
  z-index: 1;
  height: 36rem;
  clip-path: inset(0 0 0 0);
}
@media (min-width: 768px) {
  .list-strength__item.--item-1 {
    height: 33rem;
  }
}
.list-strength__item.--item-2 {
  z-index: 2;
  height: 33rem;
  clip-path: inset(0 0 0 0);
}
@media (min-width: 768px) {
  .list-strength__item.--item-2 {
    height: 33rem;
  }
}
.list-strength__item.--item-3 {
  z-index: 3;
  height: 44rem;
}
@media (min-width: 768px) {
  .list-strength__item.--item-3 {
    height: 33rem;
  }
  .list-strength__item.--item-3::after {
    position: absolute;
    bottom: 0;
    left: 5rem;
    width: calc(100% - 10rem);
    height: 1px;
    background-color: #000;
    content: "";
  }
}
.list-strength__num {
  position: relative;
  z-index: 6;
  width: 100%;
  margin-bottom: 0.5rem;
  color: #FFF;
  font-family: var(--font-en);
  font-size: 10rem;
  letter-spacing: -0.05em;
  line-height: 1;
}
@media (min-width: 768px) {
  .list-strength__num {
    position: relative;
    top: -2.8rem;
    width: 23rem;
    margin-bottom: 0;
    font-size: 20rem;
  }
}
.list-strength__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 6;
  width: 100%;
  height: 100%;
}
@media (min-width: 768px) {
  .list-strength__content {
    width: calc(100% - 23rem);
  }
}
.list-strength__ttl {
  position: relative;
  z-index: 2;
  margin-bottom: 1.5rem;
  font-size: 2.7rem;
  font-weight: 500;
  line-height: 1.3703703704;
}
@media (max-width: 767px) {
  .list-strength__ttl {
    white-space: nowrap;
  }
}
@media (min-width: 768px) {
  .list-strength__ttl {
    margin-bottom: 5.7rem;
    font-size: 3.6rem;
    line-height: 1.1111111111;
  }
}
@media (min-width: 768px) {
  .list-strength__ttl.--style-1 {
    letter-spacing: 0;
  }
}
.list-strength__txt {
  position: relative;
  z-index: 2;
  font-size: 1.3rem;
  line-height: 1.9230769231;
  font-weight: 400;
}
@media (min-width: 768px) {
  .list-strength__txt {
    font-size: 1.6rem;
    line-height: 2.25;
  }
}

.p-work {
  position: relative;
  padding-top: 6rem;
  padding-bottom: 12rem;
  overflow: hidden;
}
@media (min-width: 768px) {
  .p-work {
    padding-top: 11.5rem;
    padding-bottom: 12rem;
  }
}
.p-work.is-bg-white::before {
  background-color: #FFF;
}
.p-work::before {
  position: absolute;
  z-index: -5;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-gray);
  transition: 0.3s background-color ease;
  content: "";
}
.p-work__inner {
  position: relative;
  z-index: 2;
  padding-inline: 1.5rem;
}
@media (min-width: 768px) {
  .p-work__inner {
    padding-inline: 2.5rem;
  }
}
.p-work__head {
  position: relative;
  z-index: 1;
  margin-bottom: 4rem;
}
@media (min-width: 768px) {
  .p-work__head {
    margin-bottom: 5rem;
  }
}
.p-work__hline {
  margin-bottom: 3.5rem;
}
@media (min-width: 768px) {
  .p-work__hline {
    margin-bottom: 7.5rem;
  }
}
.p-work__ttl {
  margin-bottom: 2rem;
  text-align: center;
  font-weight: 500;
  font-size: 2.4rem;
  letter-spacing: 0;
}
@media (min-width: 768px) {
  .p-work__ttl {
    margin-bottom: 5rem;
    font-size: 3.6rem;
  }
}
.p-work__txt {
  font-size: 1.3rem;
  line-height: 1.9230769231;
  font-weight: 400;
}
@media (min-width: 768px) {
  .p-work__txt {
    font-size: 1.6rem;
    line-height: 2.5;
    text-align: center;
  }
}
@media (max-width: 767px) {
  .p-work__list {
    margin-inline: -1.5rem;
  }
}
@media (min-width: 768px) {
  .p-work .splide {
    visibility: visible;
  }
}
@media (min-width: 768px) {
  .p-work .splide__list {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    row-gap: 4rem;
    -moz-column-gap: 2rem;
         column-gap: 2rem;
  }
}
@media (max-width: 767px) {
  .p-work .splide__slide {
    opacity: 0.5;
    width: 32rem !important;
    transition: 0.2s ease opacity;
  }
  .p-work .splide__slide.is-active {
    opacity: 1;
  }
}
.p-work .splide__pagination {
  position: relative;
  display: flex;
  width: calc(100% - 3rem);
  padding: 0;
  gap: 0;
  bottom: -4.5rem;
  margin-inline: 1.5rem;
}
.p-work .splide__pagination::after {
  position: absolute;
  left: 0;
  top: 0.3rem;
  width: 100%;
  height: 1px;
  background-color: #222;
  content: "";
}
.p-work .splide__pagination li {
  flex: 1;
  display: flex;
  border: 0;
  border-radius: 0;
}
.p-work .splide__pagination__page {
  width: 100%;
  height: 0.6rem;
  margin: 0;
  border: 0;
  border-radius: 0;
  background-color: transparent;
  transform: none;
  opacity: 1;
  transition: 0.2s ease background-color;
}
.p-work .splide__pagination__page.is-active {
  transform: none;
  background-color: var(--color-primary);
}
@media (min-width: 768px) {
  .p-work .splide__pagination {
    display: none;
  }
}

.p-archiev {
  position: relative;
  z-index: 2;
}
@media (min-width: 768px) {
  .p-archiev {
    cursor: pointer;
  }
  .p-archiev:hover .p-archiev__image img {
    transform: scale(1.1);
  }
}
.p-archiev__image {
  width: 100%;
  aspect-ratio: 50/34;
  overflow: hidden;
}
.p-archiev__image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transform-origin: center;
  will-change: transform;
  transition: 0.3s ease transform;
}
.p-archiev__content {
  padding-top: 2.2rem;
}
@media (min-width: 768px) {
  .p-archiev__content {
    padding: 2.5rem 3rem 3rem 3rem;
  }
}
.p-archiev__head {
  position: relative;
  margin-bottom: 1.7rem;
}
@media (min-width: 768px) {
  .p-archiev__head {
    margin-bottom: 2rem;
  }
}
.p-archiev__btn {
  position: absolute;
  right: 0;
  top: -0.4rem;
  width: 3rem;
  height: 3rem;
}
@media (min-width: 768px) {
  .p-archiev__btn {
    top: 0;
    width: 4rem;
    height: 4rem;
  }
}
.p-archiev__btn::after {
  position: absolute;
  right: 0;
  top: 0.6rem;
  width: 2.1rem;
  aspect-ratio: 1/1;
  background: url("../images/icon_plus.png") no-repeat center;
  background-size: 2.1rem;
  content: "";
}
.p-archiev__hline {
  margin-bottom: 0.8rem;
  padding-right: 3rem;
  font-size: 2.5rem;
  line-height: 1;
  font-family: var(--font-en);
  letter-spacing: 0;
  white-space: nowrap;
}
@media (max-width: 767px) {
  .p-archiev__hline.--style-1 {
    position: relative;
    top: 0.2rem;
    font-size: 2.2rem;
  }
}
@media (min-width: 768px) {
  .p-archiev__hline {
    padding-right: 4rem;
    font-size: 3rem;
  }
}
.p-archiev__ttl {
  font-size: 1.5rem;
  line-height: 1.5;
}
@media (min-width: 768px) {
  .p-archiev__ttl {
    font-size: 1.8rem;
  }
}
.p-archiev__txt {
  margin-bottom: 1rem;
  font-size: 1.2rem;
}
@media (min-width: 768px) {
  .p-archiev__txt {
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
  }
}
.p-archiev__list {
  display: flex;
  width: -moz-fit-content;
  width: fit-content;
}
@media (max-width: 767px) {
  .p-archiev__list {
    position: relative;
    flex-wrap: wrap;
  }
  .p-archiev__list::before {
    position: absolute;
    left: 0;
    top: 0;
    width: 1px;
    height: calc(100% - 1px);
    background-color: #222;
    content: "";
  }
}
@media (min-width: 768px) {
  .p-archiev__list {
    border-top: 1px solid #222;
    border-left: 1px solid #222;
    border-right: 0;
  }
}
.p-archiev__list li {
  position: relative;
  padding: 0.2rem 0.6rem;
  font-size: 1.3rem;
}
@media (max-width: 767px) {
  .p-archiev__list li {
    top: -1px;
    border-right: 1px solid #222;
    border-bottom: 1px solid #222;
    border-top: 1px solid #222;
  }
  .p-archiev__list li.--w-1 {
    width: 7rem;
  }
  .p-archiev__list li.--style-1 {
    border-top: 0;
  }
}
@media (min-width: 768px) {
  .p-archiev__list li {
    padding: 0.3rem 1.2rem;
    border-right: 1px solid #222;
    border-bottom: 1px solid #222;
    font-size: 1.5rem;
  }
}

.p-service {
  position: relative;
  z-index: 2;
  padding-block: 7rem 6rem;
  background-color: var(--color-gray);
}
@media (min-width: 768px) {
  .p-service {
    padding-block: 10rem 10rem;
  }
}
.p-service__hline {
  width: 100%;
  margin-bottom: 4rem;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid #222;
}
@media (min-width: 768px) {
  .p-service__hline {
    margin-bottom: 9rem;
    padding-bottom: 5.5rem;
  }
}
.p-service__content {
  margin-bottom: 5rem;
  padding-bottom: 7rem;
  border-bottom: 1px solid #222;
}
@media (min-width: 768px) {
  .p-service__content {
    margin-bottom: 9.3rem;
    padding-bottom: 12rem;
  }
}
.p-service__box {
  margin-bottom: 3.5rem;
}
@media (min-width: 768px) {
  .p-service__box {
    margin-bottom: 7.5rem;
  }
}
.p-service__ttl {
  margin-bottom: 2.3rem;
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1.4583333333;
  letter-spacing: 0;
}
@media (min-width: 768px) {
  .p-service__ttl {
    margin-bottom: 5.2rem;
    font-size: 3.6rem;
  }
}
.p-service__txt {
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 1.9230769231;
}
@media (min-width: 768px) {
  .p-service__txt {
    font-size: 1.6rem;
  }
}
.p-service__list {
  position: relative;
  display: flex;
  flex-direction: column;
}
.p-service__note {
  margin-top: 4rem;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 2;
  text-align: center;
}
@media (min-width: 768px) {
  .p-service__note {
    margin-top: 6rem;
    font-size: 1.6rem;
  }
}

.p-stage {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: stretch;
}
.p-stage__head {
  position: relative;
  width: 5rem;
}
@media (min-width: 768px) {
  .p-stage__head {
    width: 12rem;
  }
}
.p-stage__head::before {
  position: absolute;
  z-index: 0;
  left: 0.8rem;
  top: 1.4rem;
  width: 1.1rem;
  aspect-ratio: 1/1;
  border-radius: 1.5rem;
  background-color: #222;
  content: "";
}
@media (min-width: 768px) {
  .p-stage__head::before {
    left: 5.6rem;
    top: 1.8rem;
    width: 1.3rem;
  }
}
.p-stage__head::after {
  position: absolute;
  z-index: 0;
  top: 2rem;
  left: 1.3rem;
  width: 1px;
  height: 100%;
  background-color: #222;
  content: "";
}
@media (min-width: 768px) {
  .p-stage__head::after {
    top: 2rem;
    left: 6.2rem;
  }
}
.p-stage__tag {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  z-index: 1;
  left: 0;
  top: 7.5rem;
  width: 2.6rem;
  height: 13.2rem;
  writing-mode: vertical-rl;
  font-size: 1.5rem;
}
@media (min-width: 768px) {
  .p-stage__tag {
    left: 4.7rem;
    top: 10.8rem;
    width: 3rem;
    height: 16rem;
    font-size: 1.8rem;
  }
}
.p-stage__tag::before {
  display: block;
  position: absolute;
  z-index: -1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  clip-path: polygon(50% 0, 100% 1rem, 100% calc(100% - 1rem), 50% 100%, 0 calc(100% - 1rem), 0 1rem);
  background-color: #222;
  content: "";
}
.p-stage__tag::after {
  display: block;
  position: absolute;
  z-index: 0;
  left: 1px;
  top: 1px;
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  clip-path: polygon(50% 0, 100% 1rem, 100% calc(100% - 1rem), 50% 100%, 0 calc(100% - 1rem), 0 1rem);
  background-color: var(--color-gray);
  content: "";
}
.p-stage__tag .ttl {
  position: relative;
  z-index: 1;
  left: -0.05rem;
}
@media (min-width: 768px) {
  .p-stage__tag .ttl {
    left: -0.05rem;
  }
}
.p-stage__content {
  width: calc(100% - 5rem);
  padding-bottom: 4.3rem;
}
@media (min-width: 768px) {
  .p-stage__content {
    width: calc(100% - 12rem);
    padding-bottom: 9.5rem;
  }
}
.p-stage__content.--style-1 {
  padding-bottom: 0;
}
@media (min-width: 768px) {
  .p-stage__content.--style-1 {
    padding-bottom: 6.5rem;
  }
}
.p-stage__box {
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) {
  .p-stage__box {
    margin-bottom: 2.5rem;
  }
}
.p-stage__hline {
  margin-bottom: 0.7rem;
  color: var(--color-primary);
  font-family: var(--font-en);
  font-weight: 400;
  font-size: 2.5rem;
  line-height: 1;
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .p-stage__hline {
    margin-bottom: 0.6rem;
    font-size: 3rem;
  }
}
.p-stage__hline .num {
  margin-right: 0.3rem;
  font-size: 3.4rem;
}
@media (min-width: 768px) {
  .p-stage__hline .num {
    margin-right: 0.6rem;
    font-size: 4.2rem;
  }
}
.p-stage__sub {
  margin-bottom: 1.1rem;
  font-size: 1.5rem;
  line-height: 1.5;
  font-weight: 400;
}
@media (min-width: 768px) {
  .p-stage__sub {
    margin-bottom: 2.5rem;
    font-size: 1.8rem;
  }
}
.p-stage__cate {
  display: flex;
  align-items: center;
  justify-content: center;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 17.5rem;
  min-height: 2.5rem;
  padding: 0.5rem;
  border: 1px solid #222;
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 1;
}
@media (min-width: 768px) {
  .p-stage__cate {
    min-width: 21rem;
    min-height: 3rem;
    font-size: 1.5rem;
  }
}
.p-stage__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}
@media (min-width: 768px) {
  .p-stage__list {
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 1rem;
  }
}
.p-stage__list li {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 4rem;
  background-color: #FFF;
  font-size: 1.3rem;
  line-height: 1;
}
@media (min-width: 768px) {
  .p-stage__list li {
    min-height: 8rem;
    font-size: 2.2rem;
  }
}

.p-info {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 768px) {
  .p-info {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}
.p-info__item {
  display: flex;
  flex-direction: column;
  padding-block: 3rem 2rem;
  padding-inline: 2rem;
  background-color: #FFF;
}
@media (min-width: 768px) {
  .p-info__item {
    padding-block: 7rem 4rem;
    padding-inline: 4rem;
  }
}
.p-info__head {
  margin-bottom: 2.3rem;
}
@media (min-width: 768px) {
  .p-info__head {
    margin-bottom: 4.3rem;
  }
}
.p-info__image {
  display: block;
  overflow: hidden;
  margin-inline: auto;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .p-info__image {
    margin-bottom: 3rem;
  }
}
.p-info__image.w-1 {
  width: 11.4rem;
  aspect-ratio: 332/248;
}
@media (min-width: 768px) {
  .p-info__image.w-1 {
    width: 16.6rem;
  }
}
.p-info__image.w-2 {
  width: 11.8rem;
  aspect-ratio: 316/248;
}
@media (min-width: 768px) {
  .p-info__image.w-2 {
    width: 15.8rem;
  }
}
.p-info__image.w-3 {
  width: 13.8rem;
  aspect-ratio: 402/260;
}
@media (min-width: 768px) {
  .p-info__image.w-3 {
    width: 20.1rem;
    margin-top: -1rem;
    margin-bottom: 2.5rem;
  }
}
.p-info__image.w-4 {
  width: 9.9rem;
  aspect-ratio: 293/298;
}
@media (min-width: 768px) {
  .p-info__image.w-4 {
    width: 14.65rem;
    margin-top: -2.5rem;
  }
}
.p-info__image img {
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
  height: 100%;
}
.p-info__ttl {
  margin-bottom: 1rem;
  color: var(--color-primary);
  font-family: var(--font-en);
  font-size: 2.5rem;
  line-height: 1;
  font-weight: 400;
  text-align: center;
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .p-info__ttl {
    font-size: 3rem;
  }
}
.p-info__sub {
  font-size: 1.5rem;
  line-height: 1;
  font-weight: 400;
  text-align: center;
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .p-info__sub {
    font-size: 1.8rem;
  }
}
.p-info__txt {
  font-size: 1.3rem;
  line-height: 1.5384615385;
  font-weight: 400;
  letter-spacing: 0;
}
@media (min-width: 768px) {
  .p-info__txt {
    font-size: 1.5rem;
    line-height: 2;
  }
}

.p-about {
  position: relative;
  z-index: 2;
  padding-block: 7rem 7rem;
  background-color: #FFF;
}
@media (min-width: 768px) {
  .p-about {
    padding-block: 10rem;
  }
}
@media (max-width: 767px) {
  .p-about__hline {
    width: 100%;
    border-bottom: 1px solid #222;
    margin-bottom: 4.5rem;
    padding-bottom: 4rem;
  }
}
@media (min-width: 768px) {
  .p-about__hline {
    margin-bottom: 8.5rem;
  }
}
.p-about__content {
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid #222;
}
@media (min-width: 768px) {
  .p-about__content {
    flex-direction: row;
  }
}
.p-about__col-1 {
  width: 100%;
}
@media (max-width: 767px) {
  .p-about__col-1 {
    padding-bottom: 5rem;
    border-bottom: 1px solid #222;
  }
}
@media (min-width: 768px) {
  .p-about__col-1 {
    width: 50%;
    border-right: 1px solid #222;
  }
}
.p-about__col-2 {
  width: 100%;
}
@media (max-width: 767px) {
  .p-about__col-2 {
    padding-block: 4.5rem 4rem;
  }
}
@media (min-width: 768px) {
  .p-about__col-2 {
    width: 50%;
    padding-left: 4.5rem;
  }
}
.p-about__col-2 .p-about__ttl {
  margin-bottom: 4rem;
}
@media (min-width: 768px) {
  .p-about__col-2 .p-about__ttl {
    position: relative;
    top: -0.5rem;
    margin-bottom: 5.5rem;
  }
}
.p-about__ttl {
  font-size: 2.5rem;
  line-height: 1;
  text-align: center;
  font-family: var(--font-en);
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .p-about__ttl {
    font-size: 2.4rem;
    text-align: left;
    letter-spacing: 0.1em;
  }
}
.p-about__txt {
  font-size: 1.3rem;
  line-height: 1.9230769231;
  font-weight: 400;
  letter-spacing: 0;
}
@media (min-width: 768px) {
  .p-about__txt {
    font-size: 1.6rem;
    line-height: 2.25;
  }
}
.p-about__txt.--style-1 {
  margin-bottom: 2.5rem;
}
@media (min-width: 768px) {
  .p-about__txt.--style-1 {
    margin-bottom: 3rem;
  }
}
.p-about__txt.--style-2 {
  margin-bottom: 2.5rem;
}
@media (min-width: 768px) {
  .p-about__txt.--style-2 {
    margin-bottom: 3.6rem;
  }
}
.p-about__philo {
  padding-bottom: 4.5rem;
  border-bottom: 1px solid #222;
}
@media (min-width: 768px) {
  .p-about__philo {
    padding-right: 4.5rem;
    padding-bottom: 8.7rem;
  }
}
.p-about__philo .p-about__ttl {
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .p-about__philo .p-about__ttl {
    position: relative;
    top: -0.5rem;
    margin-bottom: 4.5rem;
  }
}
.p-about__philo-txt {
  font-size: 3rem;
  text-align: center;
  font-family: var(--font-en);
  line-height: 1.3888888889;
  white-space: nowrap;
  letter-spacing: 0.03em;
}
@media (min-width: 768px) {
  .p-about__philo-txt {
    text-align: left;
    font-size: 3.6rem;
  }
}
.p-about__philo-txt .sub {
  opacity: 0;
}
.p-about__ceo {
  padding-top: 4rem;
}
@media (min-width: 768px) {
  .p-about__ceo {
    padding-right: 4.5rem;
    padding-block: 9.3rem 8rem;
  }
}
.p-about__ceo .p-about__ttl {
  margin-bottom: 4rem;
}
@media (min-width: 768px) {
  .p-about__ceo .p-about__ttl {
    margin-bottom: 3.6rem;
  }
}
@media (max-width: 767px) {
  .p-about__ceo .p-about__txt {
    text-align: justify;
  }
}
.p-about__ceo-block {
  display: flex;
  align-items: flex-end;
  gap: 2.4rem;
  margin-top: 3rem;
}
@media (min-width: 768px) {
  .p-about__ceo-block {
    gap: 4.9rem;
    margin-top: 4rem;
  }
}
.p-about__ceo-image {
  display: block;
  width: 15rem;
  aspect-ratio: 1/1;
  overflow: hidden;
}
@media (min-width: 768px) {
  .p-about__ceo-image {
    width: 17rem;
  }
}
.p-about__ceo-image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-about__ceo-box {
  position: relative;
  bottom: -0.4rem;
}
@media (min-width: 768px) {
  .p-about__ceo-box {
    bottom: -0.1rem;
  }
}
.p-about__ceo-box .p-about__txt {
  margin-bottom: 0.5rem;
}
.p-about__ceo-ttl {
  font-size: 1.3rem;
  font-family: var(--font-en);
  line-height: 1.3846153846;
}
@media (min-width: 768px) {
  .p-about__ceo-ttl {
    font-size: 1.4rem;
  }
}
.p-about__client {
  padding-top: 4.5rem;
}
@media (min-width: 768px) {
  .p-about__client {
    padding-top: 9.5rem;
  }
}
.p-about__client-ttl {
  margin-bottom: 4rem;
  font-size: 2.5rem;
  line-height: 1;
  text-align: center;
  font-family: var(--font-en);
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .p-about__client-ttl {
    margin-bottom: 1.8rem;
    font-size: 2rem;
    text-align: left;
  }
}

.p-profile {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  row-gap: 1.4rem;
}
@media (min-width: 768px) {
  .p-profile {
    row-gap: 2rem;
  }
}
.p-profile li {
  display: flex;
}
@media (min-width: 768px) {
  .p-profile li.sp {
    display: none !important;
  }
}
.p-profile__ttl {
  position: relative;
  top: 0.2rem;
  width: 9.5rem;
  font-family: var(--font-en);
  font-size: 1.5rem;
  line-height: 1.3846153846;
}
@media (min-width: 768px) {
  .p-profile__ttl {
    width: 13.5rem;
    font-size: 1.8rem;
  }
}
.p-profile__content {
  width: calc(100% - 9.5rem);
  padding-left: 0.5rem;
}
@media (min-width: 768px) {
  .p-profile__content {
    width: calc(100% - 13.5rem);
    padding-left: 1rem;
  }
}
.p-profile__txt {
  font-size: 1.5rem;
  line-height: 1.7;
  font-weight: 400;
  letter-spacing: 0;
}
@media (min-width: 768px) {
  .p-profile__txt {
    font-size: 1.6rem;
    line-height: 1.9;
  }
}
.p-profile__map {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 68/28;
  overflow: hidden;
}
@media (max-width: 767px) {
  .p-profile__map.pc {
    display: none !important;
  }
}
@media (min-width: 768px) {
  .p-profile__map {
    aspect-ratio: 56/28;
    margin-top: 2.5rem;
  }
}
.p-profile__map iframe {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-contact {
  position: relative;
  z-index: 2;
  padding-block: 7rem 7.5rem;
  background-color: #333;
  color: #FFF;
}
@media (min-width: 768px) {
  .p-contact {
    padding-block: 10rem 10rem;
  }
}
.p-contact__hline {
  width: 100%;
  padding-bottom: 4rem;
  border-bottom: 1px solid #f3f2f1;
  color: #f3f2f1;
}
@media (min-width: 768px) {
  .p-contact__hline {
    padding-bottom: 8.8rem;
  }
}
.p-contact .hline01__sub {
  color: currentColor;
}
.p-contact__content {
  display: flex;
  flex-direction: column;
  padding-top: 4.5rem;
}
@media (min-width: 768px) {
  .p-contact__content {
    flex-direction: row;
    padding-top: 10rem;
  }
}
.p-contact__block {
  display: flex;
  flex-direction: column;
  width: 100%;
}
@media (min-width: 768px) {
  .p-contact__block {
    justify-content: space-between;
    width: 50%;
    padding-right: 2rem;
  }
}
.p-contact__box {
  margin-bottom: 5rem;
}
@media (min-width: 768px) {
  .p-contact__box {
    margin-bottom: 1rem;
    padding-top: 0.7rem;
  }
}
.p-contact__ttl-1 {
  margin-bottom: 2.5rem;
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1.1111111111;
  color: currentColor;
}
@media (min-width: 768px) {
  .p-contact__ttl-1 {
    margin-bottom: 9.5rem;
    font-size: 3.6rem;
  }
}
.p-contact__ttl-2 {
  margin-bottom: 2rem;
  font-size: 1.3rem;
  line-height: 1.9230769231;
}
@media (min-width: 768px) {
  .p-contact__ttl-2 {
    margin-bottom: 5rem;
    font-weight: 500;
    font-size: 2.4rem;
    line-height: 1.6666666667;
  }
}
.p-contact__txt {
  font-size: 1.2rem;
  line-height: 2.0833333333;
}
@media (min-width: 768px) {
  .p-contact__txt {
    font-size: 1.6rem;
  }
}
.p-contact__info {
  display: flex;
  flex-direction: column;
}
.p-contact__info .p-contact__txt {
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .p-contact__info .p-contact__txt {
    margin-bottom: 3rem;
  }
}
.p-contact__txt-info {
  font-size: 1.3rem;
  line-height: 1.9230769231;
}
@media (min-width: 768px) {
  .p-contact__txt-info {
    font-family: var(--font-en);
    font-size: 2rem;
    line-height: 1.8;
    letter-spacing: 0.1em;
  }
}
@media (max-width: 767px) {
  .p-contact__txt-info {
    font-family: var(--font-primary);
  }
}
.p-contact__txt-info .sub {
  font-family: var(--font-primary);
}
.p-contact__txt-info.--phone {
  pointer-events: none;
}
@media (max-width: 767px) {
  .p-contact__txt-info.--phone {
    pointer-events: all;
  }
}
.p-contact__form {
  width: 100%;
  padding-top: 4rem;
}
@media (min-width: 768px) {
  .p-contact__form {
    width: 50%;
    padding-top: 0;
  }
}

.modal-privacy {
  display: none;
  position: fixed;
  z-index: 2000;
  inset: 0;
  pointer-events: none;
  background: rgba(20, 18, 16, 0.65);
  backdrop-filter: blur(4px);
  transition: opacity 0.2s;
}
@media (min-width: 768px) {
  .modal-privacy {
    cursor: pointer;
  }
}
.modal-privacy.is-active {
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.2s ease;
  pointer-events: all;
  opacity: 1;
}
.modal-privacy__wrap {
  position: relative;
  display: flex;
  background-color: #FFF;
  max-height: 82vh;
  width: min(68rem, 92vw);
  overflow: hidden;
}
@media (min-width: 768px) {
  .modal-privacy__wrap {
    cursor: default;
  }
}
.modal-privacy__block {
  display: flex;
  flex-direction: column;
  padding: 3rem 2rem 3rem;
  overflow-y: auto;
  overscroll-behavior: contain;
}
@media (min-width: 768px) {
  .modal-privacy__block {
    padding: 5.6rem 5.6rem 4.8rem;
  }
}
.modal-privacy__ttl-1 {
  font-style: 400;
  font-size: 0.9rem;
  letter-spacing: 0.4em;
  color: #2c4a3e;
  margin-bottom: 1.2rem;
}
.modal-privacy__ttl-2 {
  font-size: 1.5rem;
  font-weight: 300;
  color: #141210;
  letter-spacing: 0.1em;
  line-height: 1.4;
  margin-bottom: 2.4rem;
  border-bottom: 1px solid #e0dbd4;
  padding-bottom: 2rem;
}
.modal-privacy__ttl-3 {
  font-style: normal;
  font-size: 1.2rem;
  color: #141210;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
  font-weight: 400;
}
.modal-privacy__txt {
  font-size: 1.25rem;
  color: #5a5650;
  line-height: 2.2;
  letter-spacing: 0.03em;
}
.modal-privacy__txt.--style-1 {
  margin-bottom: 3.2rem;
}
.modal-privacy__txt.--style-2 {
  margin-block: 3rem;
}
.modal-privacy__txt .mail {
  padding-bottom: 1px;
  color: #2c4a3e;
  text-decoration: none;
  border-bottom: 1px solid rgba(44, 74, 62, 0.25);
}
.modal-privacy__btn-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 2rem;
  color: #9a9490;
  cursor: pointer;
  width: 3.2rem;
  height: 3.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s;
  z-index: 1;
  line-height: 1;
}
@media (min-width: 768px) {
  .modal-privacy__btn-close {
    cursor: pointer;
    top: 2rem;
    right: 2.4rem;
    width: 3.2rem;
    height: 3.2rem;
  }
}
.modal-privacy__list {
  display: flex;
  flex-direction: column;
}
.modal-privacy__item {
  padding: 2rem 0;
  border-bottom: 1px solid #e0dbd4;
}
.modal-privacy__foot {
  padding-top: 2.4rem;
}
.modal-privacy__foot-txt {
  font-size: 1.1rem;
  color: #9a9490;
  letter-spacing: 0.06em;
  line-height: 2;
}

.p-modal-work {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 210;
  opacity: 0;
  pointer-events: none;
  transition: 0.3s ease opacity, 0.3s ease transform;
  background-color: rgba(0, 0, 0, 0.8);
}
.p-modal-work.is-active {
  pointer-events: all;
  opacity: 1;
  z-index: 2000;
}
.p-modal-work__content {
  position: relative;
  overflow: hidden;
  padding-block: 4rem 3rem;
}
@media (max-width: 767px) {
  .p-modal-work__content {
    padding-left: 1rem;
  }
}
@media (min-width: 768px) {
  .p-modal-work__content {
    padding-inline: 5rem;
  }
}
.p-modal-work__btn-close {
  display: flex;
  justify-content: center;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  cursor: pointer;
}
.p-modal-work__btn-close span {
  display: inline-block;
  position: relative;
  padding-left: 2.7rem;
  color: #FFF;
  font-family: var(--font-en);
  font-size: 1.5rem;
  font-weight: 400;
  text-transform: uppercase;
  line-height: 1;
}
@media (min-width: 768px) {
  .p-modal-work__btn-close span {
    font-size: 1.8rem;
  }
}
.p-modal-work__btn-close span::before {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1.6rem;
  height: 1px;
  background-color: #FFF;
  content: "";
}
.p-modal-work__slider {
  width: 100%;
  height: 100%;
}
.p-modal-work .splide__track {
  position: relative;
  padding-bottom: 3rem;
}
@media (max-width: 767px) {
  .p-modal-work .splide__track {
    width: calc(100% - 1rem);
    height: 45rem;
  }
}
@media (min-width: 1025px) {
  .p-modal-work .splide__track {
    max-width: 1000px;
    max-height: 1000px;
    aspect-ratio: 1/1;
    height: calc(100vh - 12rem);
  }
}
@media (min-width: 768px) {
  .p-modal-work .splide__track {
    height: calc(100vh - 25rem);
  }
}
.p-modal-work .splide__arrows {
  position: absolute;
  top: -3rem;
  width: 100%;
}
@media (min-width: 768px) {
  .p-modal-work .splide__arrows {
    top: calc(50% - 2.5rem);
  }
}
.p-modal-work .splide__arrow {
  opacity: 1;
  background-color: transparent !important;
  transform: none;
  top: 0;
  background-size: 1.2rem auto !important;
}
.p-modal-work .splide__arrow:disabled {
  opacity: 0;
  pointer-events: none;
}
@media (min-width: 768px) {
  .p-modal-work .splide__arrow {
    width: 5rem;
    height: 5rem;
    background-size: 2.5rem auto !important;
  }
}
.p-modal-work .splide__arrow svg {
  display: none !important;
}
.p-modal-work .splide__arrow--prev {
  left: -1rem;
  background: url("../images/icon_arrow_02.svg") no-repeat center;
}
@media (min-width: 768px) {
  .p-modal-work .splide__arrow--prev {
    left: -5rem;
  }
}
.p-modal-work .splide__arrow--next {
  right: 0;
  background: url("../images/icon_arrow_01.svg") no-repeat center;
}
@media (min-width: 768px) {
  .p-modal-work .splide__arrow--next {
    right: -5rem;
  }
}

.archiev-modal {
  position: relative;
  display: flex;
  flex-direction: column;
  background-color: #FFF;
}
@media (max-width: 767px) {
  .archiev-modal {
    width: 100%;
    height: 45rem;
    overflow: auto;
  }
}
@media (min-width: 1025px) {
  .archiev-modal {
    aspect-ratio: 1/1;
    height: calc(100vh - 12rem);
  }
}
@media (min-width: 768px) {
  .archiev-modal {
    height: calc(100vh - 25rem);
  }
}
.archiev-modal__wrap {
  width: 100%;
  -ms-overflow-style: none;
  scrollbar-width: none;
  overflow-y: auto;
}
.archiev-modal__wrap::-webkit-scrollbar {
  display: none;
}
.archiev-modal__image {
  width: 100%;
}
.archiev-modal__image img {
  display: block;
  width: 100%;
  height: auto;
  transform-origin: center;
  will-change: transform;
  transition: 0.3s ease transform;
}
.archiev-modal__content {
  padding-block: 2.3rem 2rem;
  padding-inline: 2.3rem;
}
@media (min-width: 768px) {
  .archiev-modal__content {
    padding-block: 4rem;
    padding-inline: 5rem;
  }
}
.archiev-modal__head {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1.4rem;
  gap: 1rem;
}
@media (min-width: 768px) {
  .archiev-modal__head {
    margin-bottom: 3rem;
  }
}
.archiev-modal__hline {
  margin-bottom: 0.8rem;
  font-size: 2.5rem;
  line-height: 1;
  font-family: var(--font-en);
  letter-spacing: 0;
  white-space: nowrap;
}
@media (max-width: 767px) {
  .archiev-modal__hline.--style-1 {
    position: relative;
    top: 0.2rem;
    font-size: 2.2rem;
  }
}
@media (min-width: 768px) {
  .archiev-modal__hline {
    font-size: 3rem;
  }
  .archiev-modal__hline.--style-1 {
    font-size: 2.5rem;
  }
}
.archiev-modal__ttl {
  position: relative;
  margin-bottom: 1.2rem;
  font-size: 1.3rem;
  line-height: 1.5;
}
@media (min-width: 768px) {
  .archiev-modal__ttl {
    top: 0.5rem;
    margin-bottom: 2rem;
    font-size: 1.3rem;
  }
}
.archiev-modal__sub {
  font-size: 1.5rem;
  line-height: 1.5;
}
@media (min-width: 768px) {
  .archiev-modal__sub {
    font-size: 1.5rem;
  }
}
.archiev-modal__txt {
  margin-bottom: 2.4rem;
  font-size: 1.3rem;
  line-height: 1.9230769231;
}
@media (min-width: 768px) {
  .archiev-modal__txt {
    margin-bottom: 3rem;
    line-height: 2.25;
    font-size: 1.2rem;
  }
}
.archiev-modal__list {
  display: flex;
  width: -moz-fit-content;
  width: fit-content;
}
@media (max-width: 767px) {
  .archiev-modal__list {
    position: relative;
    flex-wrap: wrap;
  }
  .archiev-modal__list::before {
    position: absolute;
    left: 0;
    top: 0;
    width: 1px;
    height: calc(100% - 1px);
    background-color: #222;
    content: "";
  }
}
@media (min-width: 768px) {
  .archiev-modal__list {
    border-top: 1px solid #222;
    border-left: 1px solid #222;
    border-right: 0;
  }
}
.archiev-modal__list li {
  position: relative;
  padding: 0.2rem 0.6rem;
  font-size: 1.3rem;
}
@media (max-width: 767px) {
  .archiev-modal__list li {
    top: -1px;
    border-right: 1px solid #222;
    border-bottom: 1px solid #222;
    border-top: 1px solid #222;
  }
  .archiev-modal__list li.--w-1 {
    width: 7rem;
  }
  .archiev-modal__list li.--style-1 {
    border-top: 0;
  }
}
@media (min-width: 768px) {
  .archiev-modal__list li {
    padding: 0.3rem 1.2rem;
    border-right: 1px solid #222;
    border-bottom: 1px solid #222;
    font-size: 1.2rem;
  }
}