@charset "UTF-8";
/* ========================================
リセットCSS
======================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
}

main {
  display: block;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: inherit;
  font-size: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
div {
  overflow-wrap: break-word;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

iframe {
  max-width: 100%;
  vertical-align: middle;
}

span {
  font: inherit;
  letter-spacing: inherit;
}

ul,
ol {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

address {
  font: inherit;
}

input,
button,
textarea,
select {
  color: inherit;
  font: inherit;
  vertical-align: middle;
}

button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
}

/* ========================================
変数・関数
======================================== */
:root {
  --color-black: #000;
  --color-glay: #D5D5D5;
  --font-base: "FP-ヒラギノ角ゴ StdN W5", sans-serif;
  --font-base-regular: "FP-ヒラギノ角ゴ StdN W4", sans-serif;
  --font-base-semibold: "FP-ヒラギノ角ゴ ProN W6", sans-serif;
  --font-grotesk-roman: "NHaasGroteskDSPro-55Rg", "FP-ヒラギノ角ゴ StdN W4", sans-serif;
  --font-grotesk-medium: "NHaasGroteskDSPro-65Md", "FP-ヒラギノ角ゴ StdN W5", sans-serif;
  --step-pc: calc(100 / 1440 * 100vw);
  --mg-pc: calc(119 / 1440 * 100vw);
  --mgMin-pc: calc(18 / 1440 * 100vw);
  --mg-sp: calc(22 / 320 * 100vw);
  --z-index-nav: 10;
  --z-index-overlay: 9;
  --z-index-navBtn: 8;
}

/* ========================================
mixin
======================================== */
/* ========================================
ベースCSS
======================================== */
body {
  background-color: #D9D9D9;
  color: var(--color-black);
  font-family: var(--font-base);
  font-size: 14px;
  font-weight: 400;
  line-height: 2.2142857143;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
       text-size-adjust: 100%;
}
@media screen and (max-width: 767px) {
  body {
    font-size: 13px;
    line-height: 2;
  }
}

a {
  color: inherit;
  text-decoration: none;
}

/* CLEAR-FIX */
/* ========================================
モジュール・パーツ m-
======================================== */
@keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.m-inner {
  width: calc(100% - var(--mg-pc) * 2);
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 767px) {
  .m-inner {
    width: calc(100% - var(--mg-sp) * 2);
    padding-left: var(--mg-sp);
  }
}
@media screen and (max-width: 767px) {
  .m-inner-sp {
    width: calc(100% - var(--mg-sp) * 2);
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--mg-sp);
  }
}

.m-link-border {
  display: block;
  width: 80px;
  max-width: 100%;
  font-family: var(--font-grotesk-medium);
  font-size: 12px;
  line-height: 1.5;
  letter-spacing: 0.03em;
  position: relative;
}
@media screen and (max-width: 767px) {
  .m-link-border {
    width: 92px;
  }
}
.m-link-border::before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #000;
  position: absolute;
  left: 0;
  bottom: 0;
}
.m-link-border:hover::before {
  animation: link-border 1s ease 1 forwards;
}
@keyframes link-border {
  0% {
    transform-origin: right center;
    transform: scaleX(1);
  }
  50% {
    transform-origin: right center;
    transform: scaleX(0);
  }
  51% {
    transform-origin: left center;
    transform: scaleX(0);
  }
  100% {
    transform-origin: left center;
    transform: scaleX(1);
  }
}
.m-link-border.-white {
  color: #fff;
}
.m-link-border.-white::before {
  background: #fff;
}
@media screen and (min-width: 768px) {
  .m-link-border.-contact {
    width: 193px;
    font-size: 14px;
  }
}

.m-secTtl {
  font-family: var(--font-grotesk-medium);
  font-size: 15px;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .m-secTtl {
    font-size: 12px;
  }
}
.m-secTtl_num {
  display: inline-block;
  width: var(--mg-pc);
  padding-left: var(--mgMin-pc);
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .m-secTtl_num {
    width: calc(var(--mg-sp) * 2);
    padding-left: calc(7 / 320 * 100vw);
    letter-spacing: 0;
  }
}

.m-textEn {
  font-family: var(--font-grotesk-medium);
  font-size: 18px;
  line-height: 1.8888888889;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 767px) {
  .m-textEn {
    font-size: 14px;
    line-height: 2;
  }
}

.m-fadeIn {
  opacity: 0;
}
.m-fadeIn.is-on {
  opacity: 1;
  transition: opacity 1.4s;
}
.m-fadeIn-bottom {
  opacity: 0;
  transform: translateY(40px);
}
.m-fadeIn-bottom.is-on {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 1.4s, transform 1.4s;
}

.m-heightFull {
  height: 100vh;
}
@media (hover: hover) {
  .m-heightFull {
    height: 100vh !important;
  }
}

@media screen and (min-width: 768px) {
  body:has(.m-logoWhite) .header_logo a {
    position: relative;
  }
  body:has(.m-logoWhite) .header_logo a::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background: url(/assets/image/common/logo-white.svg) center/contain no-repeat;
    position: absolute;
    top: 0;
    left: 0;
  }
  body:has(.m-logoWhite) .header_logo a img {
    opacity: 0;
  }
}

/* ========================================
補助的に使用 u-
======================================== */
@media screen and (min-width: 768px) {
  .u-sp {
    display: none !important;
  }
}

@media screen and (max-width: 767px) {
  .u-pc {
    display: none !important;
  }
}

.u-ib {
  display: inline-block !important;
}

.u-text-center {
  text-align: center !important;
}
.u-text-left {
  text-align: left !important;
}
.u-text-right {
  text-align: right !important;
}

.u-font-base {
  font-family: var(--font-base) !important;
}
.u-font-base-regular {
  font-family: var(--font-base-regular) !important;
}
.u-font-base-semibold {
  font-family: var(--font-base-semibold) !important;
}
.u-font-grotesk-roman {
  font-family: var(--font-grotesk-roman) !important;
}
.u-font-grotesk-medium {
  font-family: var(--font-grotesk-medium) !important;
}

.u-mt-5 {
  margin-top: 5px !important;
}

.u-mt-10 {
  margin-top: 10px !important;
}

.u-mt-15 {
  margin-top: 15px !important;
}

.u-mt-20 {
  margin-top: 20px !important;
}

.u-mt-25 {
  margin-top: 25px !important;
}

.u-mt-30 {
  margin-top: 30px !important;
}

.u-mt-35 {
  margin-top: 35px !important;
}

.u-mt-40 {
  margin-top: 40px !important;
}

.u-mt-45 {
  margin-top: 45px !important;
}

.u-mt-50 {
  margin-top: 50px !important;
}

.u-mt-55 {
  margin-top: 55px !important;
}

.u-mt-60 {
  margin-top: 60px !important;
}

.u-mt-65 {
  margin-top: 65px !important;
}

.u-mt-70 {
  margin-top: 70px !important;
}

.u-mt-75 {
  margin-top: 75px !important;
}

.u-mt-80 {
  margin-top: 80px !important;
}

.u-mt-85 {
  margin-top: 85px !important;
}

.u-mt-90 {
  margin-top: 90px !important;
}

.u-mt-95 {
  margin-top: 95px !important;
}

.u-mt-100 {
  margin-top: 100px !important;
}

.u-mb-5 {
  margin-bottom: 5px !important;
}

.u-mb-10 {
  margin-bottom: 10px !important;
}

.u-mb-15 {
  margin-bottom: 15px !important;
}

.u-mb-20 {
  margin-bottom: 20px !important;
}

.u-mb-25 {
  margin-bottom: 25px !important;
}

.u-mb-30 {
  margin-bottom: 30px !important;
}

.u-mb-35 {
  margin-bottom: 35px !important;
}

.u-mb-40 {
  margin-bottom: 40px !important;
}

.u-mb-45 {
  margin-bottom: 45px !important;
}

.u-mb-50 {
  margin-bottom: 50px !important;
}

.u-mb-55 {
  margin-bottom: 55px !important;
}

.u-mb-60 {
  margin-bottom: 60px !important;
}

.u-mb-65 {
  margin-bottom: 65px !important;
}

.u-mb-70 {
  margin-bottom: 70px !important;
}

.u-mb-75 {
  margin-bottom: 75px !important;
}

.u-mb-80 {
  margin-bottom: 80px !important;
}

.u-mb-85 {
  margin-bottom: 85px !important;
}

.u-mb-90 {
  margin-bottom: 90px !important;
}

.u-mb-95 {
  margin-bottom: 95px !important;
}

.u-mb-100 {
  margin-bottom: 100px !important;
}

/* ========================================
header
======================================== */
.header_logo {
  position: absolute;
  top: 28px;
  left: var(--mgMin-pc);
  z-index: 3;
}
@media screen and (max-width: 767px) {
  .header_logo {
    width: 83px;
    top: 15px;
    left: calc(7 / 320 * 100vw);
  }
}
.header_logo a {
  display: block;
}

.gNavBtn {
  text-align: left;
  position: fixed;
  top: 22px;
  right: var(--mgMin-pc);
  z-index: var(--z-index-navBtn);
}
@media screen and (max-width: 767px) {
  .gNavBtn {
    top: 14px;
    right: calc(7 / 320 * 100vw);
  }
}
@media screen and (min-width: 768px) {
  .gNavBtn.m-link-border {
    width: 102px;
    font-size: 15px;
  }
}
@media screen and (max-width: 767px) {
  .gNavBtn.m-link-border {
    width: 74px;
  }
}

.gNavOverlay {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  position: fixed;
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  z-index: var(--z-index-overlay);
  transition: opacity 0.3s 0s, visibility 0s 0.3s;
}
.is-navActive .gNavOverlay {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.3s 0s, visibility 0s 0s;
}

.gNav {
  display: flex;
  flex-direction: column;
  width: 303px;
  max-height: 100vh;
  padding: 53px 17px 20px 22px;
  background: #D5D5D5;
  font-size: 15px;
  position: fixed;
  top: 0;
  right: 0;
  z-index: var(--z-index-nav);
  transform: translateX(100%);
  transition: transform 0.3s;
  overflow-y: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.gNav::-webkit-scrollbar {
  display: none;
}
.is-navActive .gNav {
  transform: translateX(0);
}
.gNav_closed {
  width: 74px;
  text-align: left;
  position: absolute;
  top: 13px;
  right: 17px;
}
.gNav_primary {
  margin-bottom: 80px;
  font-family: var(--font-grotesk-medium);
}
.gNav_primary * {
  letter-spacing: 0.05em;
  line-height: 1.5;
}
.gNav_primary a,
.gNav_primary span {
  display: inline-block;
}
@media (hover: hover) {
  .gNav_primary a {
    transition: opacity 0.3s;
  }
  .gNav_primary a:hover {
    opacity: 0.6;
  }
}
.gNav_primary > li + li {
  margin-top: 40px;
}
.gNav_primary ul {
  display: flex;
  flex-wrap: wrap;
  gap: 17px 0;
  margin-top: 15px;
}
.gNav_primary ul > li {
  width: 48%;
}
.gNav_primary ul a {
  padding-left: 0.5em;
  font-family: var(--font-grotesk-roman);
  font-size: 13px;
  position: relative;
}
.gNav_primary ul a::before {
  content: "-";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}
.gNav_foot {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: auto;
}
.gNav_contact {
  width: 100%;
  margin-bottom: 30px;
}
.gNav_contact .m-link-border {
  width: 89px;
}
.gNav_privacy {
  transform: translateY(9px);
  font-family: var(--font-grotesk-roman);
  font-size: 10px;
  letter-spacing: 0.05em;
}
.gNav_logo {
  width: 81px;
}

/* ========================================
footer
======================================== */
.footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: max(calc(35 / 1440 * 100vw), 35px) var(--mgMin-pc);
  background-color: #ADADAD;
}
@media screen and (max-width: 1024px) {
  .footer {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .footer {
    background: none;
    padding: 88px calc(22 / 320 * 100vw) 44px;
  }
}
.footer_logo {
  width: 124px;
}
@media screen and (max-width: 767px) {
  .footer_logo {
    display: none;
  }
}
.footer_logo img {
  width: 100%;
}
@media (hover: hover) {
  .footer_logo a {
    transition: opacity 0.3s;
  }
  .footer_logo a:hover {
    opacity: 0.6;
  }
}
.footer_nav {
  display: grid;
  grid-template-columns: 25.1599147122% 25.1599147122% 49.6801705757%;
  grid-template-rows: 63px 1fr;
  width: calc(100% - 240px);
  max-width: 938px;
  padding-top: max(calc(6 / 1440 * 100vw), 6px);
  font-family: var(--font-grotesk-medium);
  font-size: 15px;
}
@media screen and (min-width: 1520px) {
  .footer_nav {
    padding-top: calc(25 / 1440 * 100vw);
  }
}
@media screen and (max-width: 1024px) {
  .footer_nav {
    width: 100%;
    margin-top: 60px;
  }
}
@media screen and (max-width: 767px) {
  .footer_nav {
    display: none;
  }
}
.footer_nav a,
.footer_nav span {
  display: inline-block;
  letter-spacing: 0.05em;
}
@media (hover: hover) {
  .footer_nav a {
    transition: opacity 0.3s;
  }
  .footer_nav a:hover {
    opacity: 0.6;
  }
}
.footer_nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 4px;
  margin-top: 32px;
  font-family: var(--font-grotesk-roman);
  font-size: 13px;
  padding-left: 1px;
}
.footer_nav ul > li {
  width: calc((100% - 4px) / 2);
}
.footer_nav ul > li:nth-of-type(n + 10) {
  display: none;
}
.footer_nav ul.-full > li {
  width: 100%;
}
.footer_nav ul a {
  padding-left: 8px;
  font-family: var(--font-grotesk-roman);
  font-size: 13px;
  position: relative;
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  word-break: break-all;
}
.footer_nav ul a::before {
  content: "-";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}
.footer_nav ._brand {
  grid-column: 2/3;
  grid-row: 1/3;
}
.footer_nav ._project {
  grid-column: 3/4;
  grid-row: 1/3;
}
.footer_nav ._project ul::after {
  content: "etc...";
  display: block;
  padding-top: 4px;
  padding-left: 8px;
  font-size: 10px;
  letter-spacing: 0.05em;
}
.footer_nav ._company {
  grid-column: 1/2;
  grid-row: 2/3;
}
.footer_foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-top: 105px;
}
@media screen and (max-width: 1024px) {
  .footer_foot {
    max-width: 938px;
  }
}
@media screen and (max-width: 767px) {
  .footer_foot {
    margin-top: 0;
  }
}
.footer_foot_box {
  flex: 1;
  max-width: 938px;
  display: flex;
}
@media screen and (max-width: 1024px) {
  .footer_foot_box {
    display: contents;
  }
}
.footer_copyright {
  display: block;
  width: 240px;
  font-family: var(--font-grotesk-medium);
  font-size: 12px;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 1024px) {
  .footer_copyright {
    width: 25.1599147122%;
  }
}
@media screen and (max-width: 767px) {
  .footer_copyright {
    width: -moz-fit-content;
    width: fit-content;
    font-size: 10px;
  }
}
.footer_contact {
  width: 50.3198294243%;
}
@media screen and (max-width: 1024px) {
  .footer_contact {
    width: 25.1599147122%;
  }
}
@media screen and (max-width: 767px) {
  .footer_contact {
    display: none;
  }
}
.footer_privacy {
  flex: 1;
  transform: translateY(-6px);
}
@media screen and (max-width: 767px) {
  .footer_privacy {
    display: none;
  }
}
.footer_privacy a {
  display: inline-block;
  font-family: var(--font-grotesk-roman);
  font-size: 10px;
  letter-spacing: 0.05em;
}
@media (hover: hover) {
  .footer_privacy a {
    transition: opacity 0.3s;
  }
  .footer_privacy a:hover {
    opacity: 0.6;
  }
}

/* ========================================
メニュー
======================================== */
/* ========================================
共通で使うレイアウト l-
======================================== */
.l-form input,
.l-form textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
  background: none;
  box-shadow: 0;
  border: 0;
  border-radius: 0;
  color: inherit;
  font-family: var(--font-grotesk-medium) !important;
  font-size: 15px;
  line-height: 2;
  letter-spacing: 0.05em;
  outline: none;
}
@media screen and (max-width: 767px) {
  .l-form input,
  .l-form textarea {
    line-height: 1.3333333333;
  }
}
.l-form input::-moz-placeholder, .l-form textarea::-moz-placeholder {
  color: #C9CACA;
}
.l-form input::placeholder,
.l-form textarea::placeholder {
  color: #C9CACA;
}
.l-form input[type=submit] {
  display: block;
  border: 1px solid #000;
  transition: 0.3s;
  cursor: pointer;
}
.l-form textarea {
  height: 148px;
  resize: vertical;
  form-sizing: content;
}
@media screen and (max-width: 767px) {
  .l-form textarea {
    height: 137px;
  }
}
.l-form_cont {
  display: flex;
  padding-bottom: 9px;
  border-bottom: 1px solid color-mix(in srgb, #000 50%, transparent);
}
@media screen and (max-width: 767px) {
  .l-form_cont {
    gap: 0 10px;
    padding-bottom: 14px;
  }
}
.l-form_cont + .l-form_cont {
  margin-top: 9px;
}
@media screen and (max-width: 767px) {
  .l-form_cont + .l-form_cont {
    margin-top: 15px;
  }
}
.l-form dt {
  font-size: 13px;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .l-form dt {
    width: 109px;
    padding-top: 0.16em;
    padding-right: 4px;
  }
}
@media screen and (max-width: 767px) {
  .l-form dt {
    line-height: 1.4;
  }
}
.l-form dd {
  flex: 1;
  font-size: 15px;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .l-form dd {
    line-height: 1.3333333333;
  }
}
.l-form_agree {
  margin-top: 12px;
  font-size: 13px;
}
.l-form_agree a {
  display: inline-block;
  margin-left: 3px;
  text-decoration: underline;
}
@media (hover: hover) {
  .l-form_agree a {
    transition: opacity 0.3s;
  }
  .l-form_agree a:hover {
    opacity: 0.6;
  }
}
.l-form_checkbox input[type=radio],
.l-form_checkbox input[type=checkbox] {
  display: none;
}
.l-form_checkbox label {
  display: inline-block;
  cursor: pointer;
}
.l-form_checkbox span {
  display: inline-block;
  position: relative;
  padding-left: 18px;
}
.l-form_checkbox span::before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border: 1px solid #000;
  position: absolute;
  top: 7px;
  left: 0;
}
.l-form_checkbox span::after {
  content: "";
  display: block;
  width: 13px;
  height: 5px;
  border-left: 1px solid #000;
  border-bottom: 1px solid #000;
  position: absolute;
  top: 5px;
  left: 2px;
  transform: rotate(-45deg) skewX(-20deg);
  opacity: 0;
}
.l-form_checkbox input:checked + span::after {
  opacity: 1;
}
.l-form .l-form_error {
  color: #FB0000;
}
.l-form .l-form_error .l-form_checkbox span::before {
  border-color: #FB0000;
}
.l-form_appBox {
  margin-top: 101px;
}
@media screen and (max-width: 767px) {
  .l-form_appBox {
    margin-top: 63px;
  }
}
.l-form_submit.m-link-border {
  text-align: left;
}
@media screen and (min-width: 768px) {
  .l-form_submit.m-link-border {
    width: 193px;
    font-size: 13px;
  }
}
.l-form_prev {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 28px;
  color: #4f4f4f;
  font-family: var(--font-grotesk-medium);
  font-size: 13px;
  letter-spacing: 0.03em;
  text-decoration: underline;
}
@media (hover: hover) {
  .l-form_prev:hover {
    color: var(--color-black);
  }
}
@media screen and (max-width: 767px) {
  .l-form_prev {
    margin-top: 14px;
    margin-left: auto;
    font-size: 12px;
  }
}

.l-form-confirm .l-form_cont {
  border-bottom: none;
}
.l-form-confirm .l-form_cont + .l-form_cont {
  margin-top: 12px;
}
@media screen and (max-width: 767px) {
  .l-form-confirm .l-form_cont + .l-form_cont {
    margin-top: 16px;
  }
}
@media screen and (min-width: 768px) {
  .l-form-confirm .l-form_agree {
    margin-top: 38px;
  }
}
.l-form-confirm .l-form_agree.l-form_checkbox span::after {
  opacity: 1;
}

/* ========================================
トップページ home
======================================== */
body:has(.p-home) .header_logo {
  display: none;
}
body:has(.p-home) .gNavBtn {
  color: #fff;
  opacity: 0;
  animation: fadein 1s 0.9s forwards;
}
body:has(.p-home) .gNavBtn::before {
  background-color: #fff;
}

.p-homeMv {
  height: 100vh;
  position: relative;
  z-index: 1;
}
@media (hover: hover) {
  .p-homeMv {
    height: 100vh !important;
  }
}
.p-homeMv_logo {
  width: calc(175 / 1440 * 100vw);
  position: absolute;
  top: 30px;
  left: var(--mgMin-pc);
  z-index: 2;
  opacity: 0;
  animation: fadein 1s 0.9s forwards;
}
@media screen and (max-width: 767px) {
  .p-homeMv_logo {
    width: 110px;
    top: 7px;
    left: calc(7 / 320 * 100vw);
  }
}
.p-homeMv_logo img {
  width: 100%;
}
.p-homeMv_img {
  position: absolute;
}
.p-homeMv_img img {
  width: 100%;
  height: 100%;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}
.p-homeMv_img.-img01 {
  width: 50%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  animation: fadein 1s 0.3s forwards;
}
@media screen and (max-width: 767px) {
  .p-homeMv_img.-img01 {
    width: 100%;
    height: 50%;
  }
}
.p-homeMv_img.-img02 {
  width: 50%;
  height: calc(100% + var(--step-pc));
  top: 0;
  right: 0;
  opacity: 0;
  animation: fadein 1s 0.6s forwards;
}
@media screen and (max-width: 767px) {
  .p-homeMv_img.-img02 {
    width: 100%;
    height: 50%;
    top: 50%;
  }
}
.p-homeMv_img.-img03 {
  width: 23vw;
  height: 32.4305555556vw;
  max-height: 90%;
  top: 50%;
  left: 47%;
  transform: translateY(-56%);
  opacity: 0;
  animation: fadein 1s 0.9s forwards;
}
@media screen and (max-width: 767px) {
  .p-homeMv_img.-img03 {
    width: calc(139 / 320 * 100vw);
    height: calc(189 / 320 * 100vw);
    transform: translateY(-50%);
    left: auto;
    right: calc(13 / 320 * 100vw);
  }
}
.p-homeMv_text {
  color: #fff;
  font-family: var(--font-grotesk-medium);
  font-size: max(calc(32 / 1440 * 100vw), 32px);
  line-height: 1.3125;
  position: absolute;
  left: var(--mgMin-pc);
  bottom: 16.7%;
  z-index: 2;
  opacity: 0;
  animation: fadein 1s 0.9s forwards;
}
@media screen and (max-width: 767px) {
  .p-homeMv_text {
    font-size: 20px;
    line-height: 1.5;
    letter-spacing: 0.03em;
    left: calc(7 / 320 * 100vw);
    bottom: 20px;
  }
}

.p-homeAbout {
  margin-top: 4px;
}
@media screen and (max-width: 767px) {
  .p-homeAbout {
    margin-top: 3px;
  }
}
.p-homeAbout_contBox {
  margin-top: 201px;
  display: flex;
}
@media screen and (max-width: 767px) {
  .p-homeAbout_contBox {
    display: block;
    margin-top: 96px;
  }
}
@media screen and (min-width: 768px) {
  .p-homeAbout_contBox > * {
    width: 50%;
  }
}
@media screen and (min-width: 768px) {
  .p-homeAbout_contBox ._enText {
    padding-right: 60px;
  }
}
.p-homeAbout_contBox ._jpText {
  margin-top: calc(121 / 1440 * 100vw);
}
@media screen and (max-width: 767px) {
  .p-homeAbout_contBox ._jpText {
    margin-top: 53px;
    line-height: 1.92;
  }
}
.p-homeAbout_link {
  width: 50%;
  margin-top: 76px;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .p-homeAbout_link {
    width: 100%;
    margin-top: 58px;
    margin-left: 0;
  }
}

.p-homeBrand {
  margin-top: 96px;
}
@media screen and (max-width: 767px) {
  .p-homeBrand {
    margin-top: 117px;
  }
}
.p-homeBrand_list {
  display: flex;
  align-items: flex-start;
  margin-top: 8px;
}
@media screen and (min-width: 768px) {
  .p-homeBrand_list.is-on > li ._visualImg {
    opacity: 1;
  }
  .p-homeBrand_list.is-on > li ._logo {
    transform: translate(-50%, 0);
  }
  .p-homeBrand_list.is-on > li ._comingSoon {
    transform: translate(0, 0);
  }
  .p-homeBrand_list.is-on > li:nth-child(1) ._logo {
    transition-delay: 0.1s;
  }
  .p-homeBrand_list.is-on > li:nth-child(2) ._visualImg {
    transition-delay: 0s, 0.2s;
  }
  .p-homeBrand_list.is-on > li:nth-child(2) ._logo {
    transition-delay: 0.3s;
    transform: translate(-50%, 6%);
  }
  .p-homeBrand_list.is-on > li:nth-child(3) ._visualImg {
    transition-delay: 0s, 0.4s;
  }
  .p-homeBrand_list.is-on > li:nth-child(3) ._logo {
    transition-delay: 0.5s;
  }
  .p-homeBrand_list.is-on > li:nth-child(4) ._visualImg {
    transition-delay: 0s, 0.6s;
  }
  .p-homeBrand_list.is-on > li:nth-child(4) ._logo,
  .p-homeBrand_list.is-on > li:nth-child(4) ._comingSoon {
    transition-delay: 0.7s;
  }
}
@media screen and (max-width: 767px) {
  .p-homeBrand_list {
    display: block;
    margin-top: 25px;
  }
}
.p-homeBrand_list > li {
  width: 25%;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-homeBrand_list > li {
    width: 100%;
  }
  .p-homeBrand_list > li.is-on ._visualImg {
    opacity: 1;
  }
  .p-homeBrand_list > li.is-on ._logo {
    transform: translate(-50%, 0);
  }
  .p-homeBrand_list > li.is-on ._comingSoon {
    transform: translate(0, 0);
  }
}
.p-homeBrand_list > li::before {
  content: "";
  display: block;
  width: 7px;
  height: 7px;
  background: var(--color-black);
  border-radius: 50%;
  position: absolute;
  top: calc(100% + 20px);
  left: 0;
}
@media screen and (max-width: 767px) {
  .p-homeBrand_list > li::before {
    width: 5px;
    height: 5px;
    left: calc(2 / 320 * 100vw);
    top: 50%;
    transform: translateY(-50%);
  }
}
.p-homeBrand_list > li:nth-child(1)::before {
  left: var(--mgMin-pc);
}
@media screen and (max-width: 767px) {
  .p-homeBrand_list > li:nth-child(1) a {
    width: calc(306 / 320 * 100vw);
  }
}
.p-homeBrand_list > li:nth-child(1) ._logo {
  width: calc(107 / 1440 * 100vw);
}
@media screen and (max-width: 767px) {
  .p-homeBrand_list > li:nth-child(1) ._logo {
    width: calc(82 / 320 * 100vw);
  }
}
@media screen and (min-width: 768px) {
  .p-homeBrand_list > li:nth-child(2) {
    margin-top: calc(65 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-homeBrand_list > li:nth-child(2) a {
    width: calc(259 / 320 * 100vw);
  }
}
.p-homeBrand_list > li:nth-child(2) ._logo {
  width: calc(266 / 1440 * 100vw);
}
@media screen and (max-width: 767px) {
  .p-homeBrand_list > li:nth-child(2) ._logo {
    width: calc(167 / 320 * 100vw);
  }
}
@media screen and (min-width: 768px) {
  .p-homeBrand_list > li:nth-child(3) {
    margin-top: calc(130 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-homeBrand_list > li:nth-child(3) a {
    width: calc(276 / 320 * 100vw);
    margin-right: auto;
  }
}
.p-homeBrand_list > li:nth-child(3) ._logo {
  width: calc(326 / 1440 * 100vw);
}
@media screen and (max-width: 767px) {
  .p-homeBrand_list > li:nth-child(3) ._logo {
    width: calc(253 / 320 * 100vw);
  }
}
@media screen and (min-width: 768px) {
  .p-homeBrand_list > li:nth-child(4) {
    margin-top: calc(195 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-homeBrand_list > li:nth-child(4) a {
    width: calc(277 / 320 * 100vw);
  }
}
.p-homeBrand_list a {
  display: block;
  width: 100%;
  overflow: hidden;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-homeBrand_list a {
    margin-left: auto;
    position: relative;
  }
}
@media (hover: hover) {
  .p-homeBrand_list a[href]:hover ._visualImg {
    transform: scale(1.06);
  }
}
.p-homeBrand_list ._visualImg {
  width: 100%;
  opacity: 0;
  transition: transform 0.5s, opacity 1s;
}
.p-homeBrand_list ._logo {
  position: absolute;
  left: 50%;
  bottom: 1.3194444444vw;
  z-index: 2;
  transform: translate(-50%, 140%);
  transition: transform 1s 0.2s;
}
.p-homeBrand_list ._comingSoon {
  width: 100%;
  font-family: var(--font-grotesk-medium);
  font-size: calc(20 / 1440 * 100vw);
  line-height: 1.2;
  letter-spacing: 0.03em;
  text-align: center;
  position: absolute;
  bottom: 3.6%;
  left: 0;
  margin: auto;
  z-index: 2;
  transform: translate(0%, 120%);
  transition: transform 1s 0.2s;
}
@media screen and (max-width: 767px) {
  .p-homeBrand_list ._comingSoon {
    font-size: calc(14 / 320 * 100vw);
    line-height: 1.4;
    bottom: 5%;
  }
}

.p-homeProject {
  margin-top: 127px;
}
@media screen and (max-width: 767px) {
  .p-homeProject {
    margin-top: 120px;
  }
}
.p-homeProject a {
  display: block;
  height: calc(819 / 1440 * 100vw);
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .p-homeProject a {
    height: auto;
    padding: calc(4 / 320 * 100vw) calc(7 / 320 * 100vw) calc(100 / 320 * 100vw) 0;
  }
}
.p-homeProject_bg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  overflow: hidden;
}
.p-homeProject_bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  transition: 0.3s;
}
.p-homeProject_ttl {
  color: #fff;
  position: absolute;
  top: 9px;
  left: 0;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .p-homeProject_ttl {
    position: static;
  }
}
.p-homeProject_img {
  width: calc(341 / 1440 * 100vw);
  position: absolute;
  z-index: 2;
  overflow: hidden;
}
.p-homeProject_img img {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-homeProject_img {
    width: calc(212 / 320 * 100vw);
    position: static;
  }
}
.p-homeProject_img.-project01 {
  top: calc(67 / 1440 * 100vw);
  left: calc(636 / 1440 * 100vw);
}
@media screen and (max-width: 767px) {
  .p-homeProject_img.-project01 {
    margin-top: calc(58 / 320 * 100vw);
    margin-left: auto;
  }
}
.p-homeProject_img.-project02 {
  top: calc(213 / 1440 * 100vw);
  left: calc(217 / 1440 * 100vw);
}
@media screen and (max-width: 767px) {
  .p-homeProject_img.-project02 {
    margin-top: calc(-25 / 320 * 100vw);
    margin-left: calc(22 / 320 * 100vw);
  }
}
.p-homeProject_img.-project03 {
  top: calc(397 / 1440 * 100vw);
  left: calc(1055 / 1440 * 100vw);
}
@media screen and (max-width: 767px) {
  .p-homeProject_img.-project03 {
    margin-top: calc(-25 / 320 * 100vw);
    margin-left: calc(86 / 320 * 100vw);
  }
}
.p-homeProject_link {
  position: absolute;
  left: calc(120 / 1440 * 100vw);
  bottom: calc(138 / 1440 * 100vw);
  z-index: 3;
}
@media screen and (max-width: 767px) {
  .p-homeProject_link {
    margin-top: calc(66 / 320 * 100vw);
    margin-left: calc(18 / 320 * 100vw);
    position: relative;
    top: 0;
    background-origin: padding-box;
  }
}
@media screen and (min-width: 768px) {
  .p-homeProject_link.m-link-border {
    width: 72px;
  }
}

/* ========================================
About p-about
======================================== */
@media screen and (min-width: 768px) {
  .p-about {
    margin-bottom: calc(200 / 1440 * 100vw);
  }
}

@media screen and (min-width: 768px) {
  .p-aboutMv {
    display: flex;
    flex-direction: row-reverse;
    align-items: flex-start;
  }
}
.p-aboutMv_imgBox {
  width: 47.8472222222%;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .p-aboutMv_imgBox {
    width: 73.125%;
    margin-left: auto;
  }
}
.p-aboutMv_imgBox ._main {
  width: 100%;
  opacity: 0;
  animation: fadein 1s 0.3s forwards;
}
.p-aboutMv_imgBox ._sub {
  width: calc(341 / 1440 * 100vw);
  position: absolute;
  top: calc(214 / 1440 * 100vw);
  left: -9%;
  opacity: 0;
  animation: fadein 1s 0.6s forwards;
}
@media screen and (max-width: 767px) {
  .p-aboutMv_imgBox ._sub {
    width: calc(139 / 320 * 100vw);
    top: calc(139 / 320 * 100vw);
    left: -27.4%;
  }
}
@media screen and (min-width: 768px) {
  .p-aboutMv_contBox {
    flex: 1;
    padding-top: calc(325 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-aboutMv_contBox {
    margin-top: 98px;
  }
}
@media screen and (min-width: 768px) {
  .p-aboutMv_text {
    width: min(calc(549 / 1440 * 100vw), 549px);
    margin-top: calc(153 / 1440 * 100vw);
    margin-left: var(--mg-pc);
  }
}
@media screen and (max-width: 767px) {
  .p-aboutMv_text {
    margin-top: 56px;
  }
}
.p-aboutMv_text .m-textEn {
  font-family: var(--font-grotesk-roman);
}
@media screen and (min-width: 768px) {
  .p-aboutMv_text .m-textEn {
    line-height: 2;
  }
}
@media screen and (min-width: 768px) {
  .p-aboutMv_text ._jpText {
    margin-top: 68px;
    font-size: 15px;
    line-height: 2.2;
  }
}
@media screen and (max-width: 767px) {
  .p-aboutMv_text ._jpText {
    margin-top: 51px;
  }
}

.p-aboutFounder {
  margin-top: 223px;
}
@media screen and (max-width: 767px) {
  .p-aboutFounder {
    margin-top: 103px;
  }
}
.p-aboutFounder_imgBox {
  width: 38.4722222222%;
  margin-left: 21.5972222222vw;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .p-aboutFounder_imgBox {
    width: 75.3125vw;
    margin-left: 0;
  }
}
.p-aboutFounder_imgBox ._mainImg {
  width: 100%;
}
.p-aboutFounder_imgBox ._subImg {
  width: 26.3888888889vw;
  position: absolute;
  top: 7.0833333333vw;
  left: -21.5277777778vw;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .p-aboutFounder_imgBox ._subImg {
    width: 42.5vw;
    top: 8.4375vw;
    left: auto;
    right: -22.5vw;
  }
}
.p-aboutFounder_imgDesc {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px 100px;
  width: 38.4722222222%;
  margin-top: 7px;
  margin-left: 21.5972222222vw;
  font-size: 15px;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .p-aboutFounder_imgDesc {
    margin: 7px 0 0;
    width: 100%;
    font-size: 14px;
    line-height: 1.4;
  }
}
@media screen and (max-width: 767px) {
  .p-aboutFounder_imgDesc p:nth-child(1) {
    padding-left: 13.75vw;
  }
}
.p-aboutFounder_imgDesc p:nth-child(2) {
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .p-aboutFounder_imgDesc p:nth-child(2) {
    margin-left: 0;
    padding-left: 46.875vw;
  }
}
@media screen and (max-width: 767px) {
  .p-aboutFounder_imgDesc ._minText {
    font-size: 11px;
  }
}

.p-aboutContact {
  width: -moz-fit-content;
  width: fit-content;
  margin: 5.5555555556vw 8.2638888889vw 0 auto;
}
@media screen and (max-width: 767px) {
  .p-aboutContact {
    margin: 113px 0 0 13.75vw;
  }
}

/* ========================================
About company p-company
======================================== */
@media screen and (min-width: 768px) {
  .p-companyMv {
    display: flex;
  }
}
@media screen and (max-width: 767px) {
  .p-companyMv {
    height: auto !important;
  }
}
@media screen and (min-width: 768px) {
  .p-companyMv_imgBox {
    width: 47.8472222222%;
    height: 100%;
    position: relative;
  }
  .p-companyMv_imgBox img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
  }
}
@media screen and (max-width: 767px) {
  .p-companyMv_imgBox {
    width: calc(234 / 320 * 100vw);
    margin-top: 139px;
    margin-left: auto;
  }
  .p-companyMv_imgBox img {
    width: 100%;
  }
}
@media screen and (min-width: 768px) {
  .p-companyMv_contBox {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}
@media screen and (max-width: 767px) {
  .p-companyMv_contBox {
    margin-top: 58px;
  }
}
@media screen and (min-width: 768px) {
  .p-companyMv_contBox_box1 {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px 0;
    width: 80%;
    max-width: 466px;
    height: 69%;
    margin-left: auto;
    margin-right: var(--mgMin-pc);
  }
  .p-companyMv_contBox_box1::before {
    content: "";
  }
}
@media screen and (max-width: 767px) {
  .p-companyMv_contBox_box1 {
    margin-top: 57px;
  }
}
@media screen and (min-width: 768px) {
  .p-companyMv_ttl {
    color: #fff;
    position: absolute;
    top: 200px;
    left: 0;
    z-index: 2;
  }
}
.p-companyMv_text {
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .p-companyMv_text {
    font-size: 13px;
  }
}
@media screen and (max-width: 767px) {
  .p-companyMv_text + .p-companyMv_text {
    margin-top: 55px;
  }
}
.p-companyMv_text * {
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .p-companyMv_text p + p {
    margin-top: 10px;
  }
}
@media screen and (max-width: 767px) {
  .p-companyMv_text p + p {
    margin-top: 9px;
  }
}
@media screen and (max-width: 767px) {
  .p-companyMv_text.m-textEn {
    font-size: 14px;
  }
}
.p-companyMv_contact {
  margin-top: 12.2222222222vh;
}
@media screen and (max-width: 767px) {
  .p-companyMv_contact {
    margin-top: 60px;
  }
}

/* ========================================
Project一覧 p-projects
======================================== */
@media screen and (min-width: 768px) {
  .p-projects {
    padding-bottom: max(6.9444444444vw, 100px);
  }
}

.p-projectsMainTtl {
  margin-top: 212px;
}
@media screen and (max-width: 767px) {
  .p-projectsMainTtl {
    margin-top: 137px;
  }
}

.p-projectsList {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  margin-top: calc(56px + var(--step-pc));
}
@media screen and (min-width: 1441px) {
  .p-projectsList {
    margin-top: 10.8333333333vw;
  }
}
@media screen and (max-width: 767px) {
  .p-projectsList {
    margin-top: 25px;
  }
}
.p-projectsList > li {
  width: 50%;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-projectsList > li {
    width: 100%;
  }
}
@media screen and (min-width: 768px) {
  .p-projectsList > li:nth-child(odd) {
    margin-top: calc(var(--step-pc) * -1);
  }
}
.p-projectsList > li:nth-child(odd) .p-projectsList_img img {
  transform-origin: left top;
}
@media screen and (min-width: 768px) {
  .p-projectsList > li:nth-child(even) {
    transition-delay: 0.2s;
  }
}
.p-projectsList > li:nth-child(even) .p-projectsList_img img {
  transform-origin: right bottom;
}
.p-projectsList a {
  display: block;
}
.p-projectsList a::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(360deg, rgba(0, 0, 0, 0) 80%, rgba(0, 0, 0, 0.15) 100%);
  mix-blend-mode: multiply;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  transition: opacity 0.3s;
  opacity: 0;
}
.p-projectsList a:hover::before {
  opacity: 1;
}
.p-projectsList a:hover .p-projectsList_ttl {
  opacity: 1;
}
.p-projectsList a:hover .p-projectsList_img img {
  transform: scale(1);
}
.p-projectsList_ttl {
  padding-left: 20px;
  color: #fff;
  font-family: var(--font-grotesk-roman);
  font-size: 15px;
  letter-spacing: 0.05em;
  line-height: 1.5;
  position: absolute;
  top: 20px;
  left: 17px;
  z-index: 3;
  transition: opacity 0.4s;
  opacity: 0;
}
.p-projectsList_ttl::before {
  content: "";
  display: block;
  width: 7px;
  height: 7px;
  background-color: #fff;
  border-radius: 50%;
  position: absolute;
  top: 7px;
  left: 0;
}
.p-projectsList_img {
  width: 100%;
  padding-top: 125%;
}
.p-projectsList_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  transition: transform 0.4s;
  transform: scale(1.06);
}

@media screen and (min-width: 768px) {
  .p-projectsContact {
    width: calc(483 / 1440 * 100vw);
    margin-top: max(7.5vw, 108px);
    margin-left: auto;
  }
}
@media screen and (max-width: 767px) {
  .p-projectsContact {
    margin-top: 66px;
  }
}

/* ========================================
Project詳細 p-project
======================================== */
@media screen and (min-width: 768px) {
  .p-project {
    padding-bottom: 170px;
  }
}

.p-projectMainTtl {
  margin-top: 212px;
}
@media screen and (max-width: 767px) {
  .p-projectMainTtl {
    margin-top: 137px;
  }
}

.p-projectImg {
  margin-top: max(3.6805555556vw, 53px);
}
@media screen and (max-width: 767px) {
  .p-projectImg {
    margin-top: 25px;
  }
}
.p-projectImg > * {
  margin-top: 45px;
}
@media screen and (max-width: 767px) {
  .p-projectImg > * {
    margin-top: 30px;
  }
}
.p-projectImg > *:first-child {
  margin-top: 0 !important;
  margin-bottom: 45px;
}
@media screen and (max-width: 767px) {
  .p-projectImg > *:first-child {
    margin-bottom: 30px;
  }
}
.p-projectImg_large img {
  width: 100%;
}
.p-projectImg_large + .p-projectImg_large {
  margin-top: 0;
}
@media screen and (min-width: 768px) {
  .p-projectImg_col2 {
    display: flex;
    align-items: flex-start;
  }
}
.p-projectImg_col2 > * {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .p-projectImg_col2 > * {
    width: 86.25%;
  }
}
.p-projectImg_col2 img {
  width: 100%;
}
.p-projectImg_col2_right {
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .p-projectImg_col2:has(.p-projectImg_col2_left):has(.p-projectImg_col2_right) .p-projectImg_col2_right {
    margin-top: var(--step-pc);
  }
}

.p-projectPagiNation {
  padding-top: 110px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-projectPagiNation {
    padding-top: 92px;
  }
}
.p-projectPagiNation a {
  display: block;
}
.p-projectPagiNation_prev, .p-projectPagiNation_next {
  width: 193px;
  position: absolute;
}
@media screen and (max-width: 767px) {
  .p-projectPagiNation_prev, .p-projectPagiNation_next {
    width: 60px;
    top: 36px;
  }
}
@media screen and (min-width: 768px) {
  .p-projectPagiNation_prev {
    top: 119px;
    left: var(--mgMin-pc);
  }
}
@media screen and (max-width: 767px) {
  .p-projectPagiNation_prev {
    left: calc(7 / 320 * 100vw);
  }
}
.p-projectPagiNation_next {
  text-align: right;
}
@media screen and (min-width: 768px) {
  .p-projectPagiNation_next {
    top: 98px;
    right: var(--mgMin-pc);
  }
}
@media screen and (max-width: 767px) {
  .p-projectPagiNation_next {
    right: calc(7 / 320 * 100vw);
  }
}
.p-projectPagiNation_list {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  font-family: var(--font-grotesk-medium);
  font-size: 14px;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 767px) {
  .p-projectPagiNation_list {
    font-size: 13px;
  }
}

.p-projectInfoToggle {
  display: block;
  width: 100%;
  height: 48px;
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: 6;
  transition: height 0s 0.3s;
}
@media screen and (max-width: 767px) {
  .p-projectInfoToggle {
    height: 52px;
  }
}
.is-projectInfoActive .p-projectInfoToggle {
  height: 100%;
  z-index: 4;
}

.p-projectInfo {
  width: 100%;
  height: 414px;
  padding: 12px 0 0 var(--mgMin-pc);
  background: color-mix(in srgb, #fff 80%, transparent);
  position: fixed;
  left: 0;
  bottom: -1px;
  z-index: 5;
  transform: translateY(100%);
  transition: background 0.3s, transform 0.3s;
}
@media screen and (max-width: 767px) {
  .p-projectInfo {
    height: auto;
    padding: 10px 36px 20px calc(7 / 320 * 100vw);
    background: color-mix(in srgb, #fff 90%, transparent);
  }
}
.p-projectInfo.is-loaded {
  transform: translateY(calc(100% - 48px));
}
@media screen and (max-width: 767px) {
  .p-projectInfo.is-loaded {
    transform: translateY(calc(100% - 52px));
  }
}
.is-projectInfoActive .p-projectInfo {
  background: #fff;
  transform: translateY(0);
}
.is-projectInfoActive .p-projectInfo .p-projectInfo_more {
  opacity: 0;
}
.p-projectInfo::before {
  content: "";
  display: block;
  width: 49px;
  height: 49px;
  background: url(/assets/image/common/closed.svg) center/auto no-repeat;
  position: absolute;
  right: 0;
  bottom: calc(100% + 12px);
  pointer-events: none;
  transition: opacity 0.3s;
  opacity: 0;
}
@media screen and (max-width: 767px) {
  .p-projectInfo::before {
    right: auto;
    left: 6px;
    bottom: calc(100% + 9px);
  }
}
.is-projectInfoActive .p-projectInfo::before {
  opacity: 1;
}
@media screen and (min-width: 768px) {
  .p-projectInfo_inner {
    display: contents;
  }
}
@media screen and (max-width: 767px) {
  .p-projectInfo_inner {
    max-height: 412px;
    overflow-x: hidden;
    overflow-y: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  .p-projectInfo_inner::-webkit-scrollbar {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .p-projectInfo_head {
    display: flex;
    justify-content: space-between;
    padding-right: 110px;
    height: 115px;
    position: relative;
    overflow-y: auto;
  }
}
.p-projectInfo_ttl {
  width: calc(511 / 1440 * 100vw);
  font-family: var(--font-grotesk-medium);
  font-size: 17px;
  line-height: 1.7647058824;
}
@media screen and (max-width: 767px) {
  .p-projectInfo_ttl {
    width: 100%;
    font-size: 14px;
    line-height: 2.4;
  }
  .is-projectInfoActive .p-projectInfo_ttl {
    line-height: 1.8;
  }
}
.p-projectInfo_ttl span {
  display: inline-block;
  letter-spacing: 0.05em;
  position: relative;
  word-break: break-all;
}
@media screen and (max-width: 767px) {
  .p-projectInfo_ttl span {
    width: calc(100% - 129px);
  }
  .is-projectInfoActive .p-projectInfo_ttl span {
    width: 100%;
  }
}
.p-projectInfo_ttl span.is-multiline::before {
  content: "…";
  position: absolute;
  top: 0;
  left: 100%;
  transition: opacity 0.3s;
}
.is-projectInfoActive .p-projectInfo_ttl span.is-multiline::before {
  opacity: 0;
}
.p-projectInfo_read {
  width: calc(calc(679 / 1440 * 100vw) - 69px);
  padding-top: 2px;
  font-family: var(--font-grotesk-medium);
  font-size: 13px;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .p-projectInfo_read {
    width: 100%;
    margin-top: 22px;
    padding-top: 0;
    line-height: 1.8;
  }
}
.p-projectInfo_read span {
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .p-projectInfo_read span {
    max-width: calc(450 / 1440 * 100vw);
    position: relative;
    word-break: break-all;
  }
  .is-projectInfoActive .p-projectInfo_read span {
    max-width: 100%;
  }
  .p-projectInfo_read span.is-multiline::before {
    content: "…";
    position: absolute;
    top: 0;
    left: 100%;
    transition: opacity 0.3s;
  }
  .is-projectInfoActive .p-projectInfo_read span.is-multiline::before {
    opacity: 0;
  }
}
.p-projectInfo_more {
  position: absolute;
  top: 3px;
  right: 17px;
  transition: opacity 0.3s;
}
@media screen and (max-width: 767px) {
  .p-projectInfo_more {
    top: 17px;
    right: 7px;
  }
}
.p-projectInfo_body {
  padding: 5px 41px 5px 0;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-projectInfo_body {
    padding: 20px 0 0;
  }
}
.p-projectInfo_body_inner {
  height: 231px;
  overflow-y: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.p-projectInfo_body_inner::-webkit-scrollbar {
  display: none;
}
@media screen and (max-width: 767px) {
  .p-projectInfo_body_inner {
    display: contents;
  }
}
.p-projectInfo_body_inner2 {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .p-projectInfo_body_inner2 {
    display: contents;
  }
}
@media screen and (min-width: 768px) {
  .p-projectInfo_body_rightBox {
    width: calc(679 / 1440 * 100vw);
    min-height: 231px;
    display: flex;
    flex-direction: column;
    margin-left: auto;
  }
}
.p-projectInfo_body_rightBox > * {
  width: 100%;
}
.p-projectInfo_desc {
  width: calc(511 / 1440 * 100vw);
  font-size: 15px;
  line-height: 2.2;
}
@media screen and (max-width: 767px) {
  .p-projectInfo_desc {
    width: 100%;
    font-size: 13px;
    line-height: 2;
  }
}
.p-projectInfo_info {
  margin-bottom: 40px;
  padding-top: 3px;
}
@media screen and (max-width: 767px) {
  .p-projectInfo_info {
    margin-top: 37px;
    padding-top: 0;
  }
}
.p-projectInfo_info dl {
  display: flex;
  align-items: center;
}
.p-projectInfo_info dl + dl {
  margin-top: 16px;
}
.p-projectInfo_info dt {
  width: calc(265 / 1440 * 100vw);
  padding-right: calc(40 / 1440 * 100vw);
  font-family: var(--font-grotesk-medium);
  font-size: 13px;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .p-projectInfo_info dt {
    width: 132px;
    padding-right: 20px;
    font-size: 11px;
    line-height: 1.5;
  }
}
.p-projectInfo_info dd {
  flex: 1;
  font-size: 15px;
  line-height: 1.5;
  font-family: var(--font-grotesk-medium);
}
@media screen and (max-width: 767px) {
  .p-projectInfo_info dd {
    font-size: 13px;
  }
}
.p-projectInfo_info dd a {
  text-decoration: underline;
}
.p-projectInfo_time {
  display: block;
  margin-top: auto;
  font-family: var(--font-grotesk-medium);
  font-size: 12px;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-projectInfo_time {
    margin-top: 20px;
    font-size: 10px;
  }
}
.p-projectInfo_scroll {
  width: 92px;
  position: absolute;
  right: 30px;
  bottom: 10px;
  z-index: 2;
  transform-origin: right bottom;
  transform: rotate(90deg);
  opacity: 0;
  transition: opacity 0.3s;
}
@media screen and (max-width: 767px) {
  .p-projectInfo_scroll {
    bottom: 27px;
  }
}
.p-projectInfo_scroll.is-scroll {
  opacity: 1;
}

/* ========================================
Contact p-contact
======================================== */
@media screen and (min-width: 768px) {
  .p-contactMv {
    display: flex;
  }
}
@media screen and (max-width: 767px) {
  .p-contactMv {
    height: auto !important;
  }
}
@media screen and (min-width: 768px) {
  .p-contactMv_imgBox {
    width: 47.8472222222%;
    height: 100vh;
    position: sticky;
    top: 0;
  }
  .p-contactMv_imgBox img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
  }
}
@media screen and (max-width: 767px) {
  .p-contactMv_imgBox {
    width: calc(234 / 320 * 100vw);
    margin-top: 139px;
    margin-left: auto;
  }
  .p-contactMv_imgBox img {
    width: 100%;
  }
}
.p-contactMv_contBox {
  font-family: var(--font-grotesk-medium);
  font-size: 15px;
  line-height: 2;
}
.p-contactMv_contBox * {
  letter-spacing: 0.03em;
}
@media screen and (min-width: 768px) {
  .p-contactMv_contBox {
    flex: 1;
    padding-top: 292px;
    padding-bottom: 100px;
  }
}
@media screen and (max-width: 767px) {
  .p-contactMv_contBox {
    margin-top: 58px;
  }
}
@media screen and (min-width: 768px) {
  .p-contactMv_contBox_box1 {
    width: calc(466 / 1440 * 100vw);
    min-width: 380px;
    margin-left: auto;
    margin-right: var(--mgMin-pc);
    position: relative;
  }
  .p-contactMv_contBox_box1::before {
    content: "";
  }
}
@media screen and (max-width: 767px) {
  .p-contactMv_contBox_box1 {
    margin-top: 64px;
  }
}
@media screen and (min-width: 768px) {
  .p-contactMv_ttl {
    color: #fff;
    position: absolute;
    top: 200px;
    left: 0;
    z-index: 2;
  }
}
.p-contactMv_desc {
  min-height: 4.4em;
  font-family: var(--font-grotesk-medium);
  font-size: 13px;
  line-height: 2;
  letter-spacing: 0.05em;
  position: absolute;
  bottom: calc(100% + 37px);
  left: 0;
}
@media screen and (max-width: 767px) {
  .p-contactMv_desc {
    min-height: 3.9230769231;
    margin-top: -44px;
    margin-bottom: 28px;
    line-height: 1.5;
    position: static;
  }
}

@media screen and (min-width: 768px) {
  .p-contact-complete .p-contactMv_contBox {
    padding-top: 197px;
    padding-bottom: 15.5555555556vh;
  }
}
.p-contact-complete_desc {
  margin-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .p-contact-complete_desc {
    margin-bottom: 63px;
  }
}
.p-contact-complete_desc ._enText {
  font-family: var(--font-grotesk-medium);
  font-size: 15px;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-contact-complete_desc ._enText {
    font-size: 14px;
  }
}
.p-contact-complete_desc ._jpText {
  margin-top: 15px;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-contact-complete_desc ._jpText {
    margin-top: 17px;
    font-size: 13px;
  }
}
@media screen and (min-width: 768px) {
  .p-contact-complete .p-contactMv_contBox_box1 {
    display: flex;
    flex-direction: column;
    min-height: 100%;
  }
}
@media screen and (max-width: 767px) {
  .p-contact-complete .p-contactMv_contBox_box1 {
    margin-top: 15px;
  }
}
.p-contact-complete_backLink {
  margin-top: auto;
}
@media screen and (min-width: 768px) {
  .p-contact-complete_backLink .m-link-border {
    font-size: 13px;
  }
}

/* ========================================
Privacy policy p-privacy
======================================== */
@media screen and (min-width: 768px) {
  .p-privacy {
    padding-bottom: max(13.8888888889vw, 200px);
  }
}

.p-privacyMainTtl {
  margin-top: 325px;
}
@media screen and (max-width: 767px) {
  .p-privacyMainTtl {
    margin-top: 137px;
  }
}

.p-privacyDesc {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0 0;
  margin-top: 156px;
}
@media screen and (max-width: 767px) {
  .p-privacyDesc {
    display: block;
    margin-top: 58px;
  }
}
.p-privacyDesc > * {
  width: 45.7570715474%;
}
@media screen and (max-width: 767px) {
  .p-privacyDesc > * {
    width: 100%;
  }
}
.p-privacyDesc > * > *:first-child {
  margin-top: 0 !important;
}
.p-privacyDesc_enBox {
  font-family: var(--font-grotesk-roman);
  font-size: 15px;
  line-height: 2;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 767px) {
  .p-privacyDesc_enBox {
    font-size: 14px;
  }
}
.p-privacyDesc_enBox * {
  letter-spacing: 0.03em;
}
.p-privacyDesc_enBox p + P {
  margin-top: 10px;
}
.p-privacyDesc_enTtl {
  margin-top: 53px;
  margin-bottom: 27px;
  font-family: var(--font-grotesk-medium);
  font-size: 20px;
}
@media screen and (max-width: 767px) {
  .p-privacyDesc_enTtl {
    margin-top: 47px;
    margin-bottom: 7px;
    font-size: 18px;
  }
}
.p-privacyDesc_enTtlMin {
  margin-top: 53px;
  font-family: var(--font-grotesk-medium);
}
@media screen and (min-width: 768px) {
  .p-privacyDesc_enIntro {
    margin-bottom: 83px;
  }
}
.p-privacyDesc_jpBox {
  font-family: var(--font-base-regular);
  font-size: 14px;
  line-height: 2.2;
}
@media screen and (max-width: 767px) {
  .p-privacyDesc_jpBox {
    margin-top: 63px;
    font-size: 13px;
    line-height: 2;
  }
}
.p-privacyDesc_jpBox p + P {
  margin-top: 10px;
}
@media screen and (min-width: 768px) {
  .p-privacyDesc_jpIntro {
    margin-bottom: 87px;
  }
}
.p-privacyDesc_jpTtl {
  margin-top: 58px;
  margin-bottom: 28px;
  font-size: 18px;
  font-family: var(--font-base);
}
@media screen and (max-width: 767px) {
  .p-privacyDesc_jpTtl {
    margin-top: 48px;
    margin-bottom: 24px;
    font-size: 15px;
  }
}
.p-privacyDesc_jpTtlMin {
  margin-top: 58px;
}
.p-privacyDesc_info {
  margin-top: 20px;
}
.p-privacyDesc_info dl {
  display: flex;
}
.p-privacyDesc_info dd {
  flex: 1;
}/*# sourceMappingURL=style.css.map */