@charset "utf-8";
/*=================================================
 *  Base ベーススタイル
 *================================================*/
:root {
  --font-family-base: "Noto Sans JP", sans-serif; /* FontFamily（日本語） */
  --font-family-second: "YuMincho", serif; /* FontFamily（日本語） */
  --font-family-en: "Oswald", sans-serif;
  --color-font-base: #fff;
}

html {
  min-height: -webkit-fill-available;
}

body {
  font-family: var(--font-family-base);
  font-weight: 400;
  line-height: var(--line-height-base);
  color: var(--color-font-base);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: var(--color-bg);
  word-wrap: break-word;
  min-height: 100vh;
  min-height: -webkit-fill-available;
}

[lang="en"] {
  font-family: var(--font-family-en);
}

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

a {
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}

/* フォーカス時のアウトライン */
:focus-visible {
  outline: 1px solid var(--color-accent);
}

/* アンカー位置をヘッダーの高さ分ずらす */
:target {
  scroll-margin-top: calc(var(--height-header) * 1px);
}
/*=================================================
 *  Header
 *================================================*/
.p-header {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 100;
  display: flex;
  flex-direction: column;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-header {
    justify-content: space-between;
    flex-direction: row;
    align-items: center;
    top: 40px;
    left: 50%;
    translate: -50% 0;
    max-width: 1202px;
    padding: 0 16px;
  }
}
.p-header-right:not([inert]) {
  translate: -20px 0;
  transition: translate 0.2s cubic-bezier(0.58, -0.02, 0.06, 0.92);
}

.p-header-right[inert] {
  translate: 100% 0;
}
@media screen and (min-width: 768px) {
  .p-header-right[inert] {
    translate: -50% 0;
  }
}
.p-header-left {
  position: relative;
  z-index: 2;
  padding-top: 13px;
}
@media screen and (min-width: 768px) {
  .p-header-left {
    padding-top: unset;
  }
}
.p-header-left__logo {
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  gap: 8px;
  padding-left: 20px;
  margin-bottom: 8px;
}
@media screen and (min-width: 768px) {
  .p-header-left__logo {
    padding-left: unset;
    justify-content: initial;
    margin-bottom: 15px;
  }
}
.p-header-left__logo--big {
  font-family: var(--font-family-en);
  font-size: 36px;
  color: #fff;
  font-weight: 700;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .p-header-left__logo--big {
    font-size: 58px;
  }
}
.p-header-left__logo--regular {
  font-family: var(--font-family-en);
  font-size: 18px;
  color: #fff;
  font-weight: 700;
  line-height: 1;
  translate: 0 -4px;
}
@media screen and (min-width: 768px) {
  .p-header-left__logo--regular {
    font-size: 30px;
  }
}
.p-header-left__subtitle {
  font-size: 10px;
  font-weight: 700;
  display: block;
  color: #999278;
  padding-left: 20px;
}
@media screen and (min-width: 768px) {
  .p-header-left__subtitle {
    padding-left: unset;
    font-size: 14px;
  }
}
.p-header-right {
  position: fixed;
  top: 89px;
  right: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  flex-grow: 1;
  flex-direction: column;
  gap: 50px;
  background-color: #999278;
  padding-top: 64px;
  height: calc(100svh - 107px);
  width: calc(100% - 40px);
}
@media screen and (min-width: 768px) {
  .p-header-right {
    position: static;
    top: unset;
    right: unset;
    z-index: unset;
    background-color: transparent;
    flex-grow: unset;
    flex-direction: row;
    padding-top: unset;
    translate: unset;
    height: auto;
    width: auto;
  }
}
.p-header-right-item__link {
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
  font-family: var(--font-family-en);
  color: #1e1e1e;
}
@media screen and (min-width: 768px) {
  .p-header-right-item__link {
    color: #fff;
    font-size: 26px;
  }
}
.p-header-button {
  position: fixed;
  z-index: 101;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 33px;
  right: 20px;
  width: 40px;
  aspect-ratio: 40/14;
}
@media screen and (min-width: 768px) {
  .p-header-button {
    display: none;
  }
}
.p-header-button > svg {
  overflow: visible;
}
.p-header-button[aria-expanded="true"] .p-header-button-icon__line.p-header-button-icon__line--top {
  transform-box: fill-box;
  transform-origin: 6px 0px;
  transform: rotate(-32deg);
  transition: transform 0.2s cubic-bezier(0.58, -0.02, 0.06, 0.92);
}
.p-header-button[aria-expanded="true"] .p-header-button-icon__line.p-header-button-icon__line--middle {
  transform-box: fill-box;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s cubic-bezier(0.58, -0.02, 0.06, 0.92);
}
.p-header-button[aria-expanded="true"] .p-header-button-icon__line.p-header-button-icon__line--bottom {
  transform-box: fill-box;
  transform-origin: 6px 0px;
  transform: rotate(32deg);
  transition: transform 0.2s cubic-bezier(0.58, -0.02, 0.06, 0.92);
}
.p-header-background {
  display: block;
  position: fixed;
  z-index: 1;
  top: 0;
  right: 0;
  width: 100%;
  height: 100svh;
  background-color: #1e1e1e;
  translate: 100% 0;
}
@media screen and (min-width: 768px) {
  .p-header-background {
    display: none;
  }
}
.p-header-right:not([inert]) + .p-header-background {
  translate: 0 0;
  transition: translate 0.2s cubic-bezier(0.58, -0.02, 0.06, 0.92);
}
/*=================================================
 *  Footer
 *================================================*/
.p-footer {
  background-color: #1e1e1e;
  padding-top: 93px;
  margin-top: -1px;
  padding-bottom: 37px;
}
.p-footer-top {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 16px;
}
.p-footer-bottom__copyright {
  display: block;
  max-width: 1200px;
  margin-inline: auto;
  margin-top: 84px;
  padding-inline: 16px;
  text-align: center;
  font-size: 14px;
}
@media screen and (min-width: 768px) {
  .p-footer-bottom__copyright {
    text-align: left;
    font-size: 16px;
    margin-top: 128px;
  }
}
.p-footer-top-logo {
  display: flex;
  align-items: center;
  gap: 14px;
}
.p-footer-top-logo-text__name {
  font-size: 30px;
  font-weight: 500;
  font-family: var(--font-family-en);
  line-height: 1;
  color: #fff;
  font-style: normal;
}
.p-footer-top-logo-text__company {
  font-size: 16px;
  font-weight: 500;
  font-family: var(--font-family-en);
  color: #fff;
  translate: 0 -4px;
}
.p-footer-top-logo__image {
  width: 39px;
}
.p-footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .p-footer-top {
    flex-direction: row;
  }
}
.p-footer-top-list {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 32px;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .p-footer-top-list {
    margin-top: unset;
    flex-direction: row;
    gap: 52px;
  }
}
.p-footer-top-list-item__link {
  font-size: 24px;
  font-weight: 500;
  font-family: var(--font-family-en);
  color: #bec0b4;
}
/*=================================================
 *  TOPページ
 *================================================*/
.p-top-fv {
  position: relative;
  width: 100%;
  padding-bottom: unset;
  background-color: #1e1e1e;
}
@media screen and (min-width: 768px) {
  .p-top-fv {
    padding-bottom: 144px;
  }
}
.p-top-fv__image {
  width: 100%;
  height: 700px;
  object-fit: cover;
}

.p-top-fv-content {
  max-width: 1202px;
  position: absolute;
  bottom: 72px;
  left: 50%;
  translate: -50% 0;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  width: 90%;
  gap: 34px;
}
@media screen and (min-width: 768px) {
  .p-top-fv-content {
    flex-direction: row;
    width: 100%;
    bottom: 0;
    gap: 30px;
  }
}
.p-top-fv-content__logo {
  width: 150px;
  clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
}
.p-top-fv-content.is-shown .p-top-fv-content__logo {
  animation: c-clip-from-left 0.6s cubic-bezier(0.58, -0.02, 0.06, 0.92) forwards;
}
@media screen and (min-width: 1200px) {
  .p-top-fv-content__logo {
    width: 28%;
    max-width: 340px;
  }
}
.p-top-fv-content-sentence {
  margin-top: unset;
  border-left: 2px solid #d74b0b;
  padding-left: 20px;
  clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
}
.p-top-fv-content.is-shown .p-top-fv-content-sentence {
  animation: c-clip-from-left 0.6s 0.2s cubic-bezier(0.58, -0.02, 0.06, 0.92) forwards;
}

@media screen and (min-width: 1200px) {
  .p-top-fv-content-sentence {
    margin-top: 141px;
    padding-left: 30px;
  }
}
.p-top-fv-content-sentence__text--orange {
  color: #d74b0b;
  font-size: 38px;
  line-height: 1.5;
  font-family: var(--font-family-en);
}
@media screen and (min-width: 768px) {
  .p-top-fv-content-sentence__text--orange {
    font-size: 46px;
  }
}
.p-top-fv-content-sentence__text--orange:first-of-type {
  margin-top: -10px;
}
@media screen and (min-width: 768px) {
  .p-top-fv-content-sentence__text--orange:first-of-type {
    margin-top: unset;
  }
}
.p-top-fv-content-sentence__text--small {
  display: block;
  margin-top: 23px;
  font-size: 15px;
  line-height: 1.5;
  font-family: var(--font-family-en);
  color: #fff;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .p-top-fv-content-sentence__text--small {
    font-size: 16px;
  }
}
.p-top-service {
  padding-top: unset;
  padding-bottom: 55px;
  background-color: #1e1e1e;
  margin-top: -1px;
}
@media screen and (min-width: 768px) {
  .p-top-service {
    padding-top: 55px;
    padding-bottom: 160px;
  }
}
.p-top-service-container {
  max-width: 1200px;
  width: 90%;
  margin-inline: auto;
}
.p-top-service__title {
  text-align: right;
  margin-bottom: 20px;
  font-family: var(--font-family-en);
  font-weight: 500;
  color: #999278;
  font-size: 64px;
}
@media screen and (min-width: 768px) {
  .p-top-service__title {
    font-size: 160px;
    margin-bottom: 40px;
  }
}
.p-top-service-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
@media screen and (min-width: 768px) {
  .p-top-service-list {
    grid-template-columns: repeat(4, 1fr);
    gap: 27px;
  }
}
.p-top-service-list-item__icon {
  display: block;
  width: 80px;
  aspect-ratio: 110/90;
}
@media screen and (min-width: 768px) {
  .p-top-service-list-item__icon {
    width: 110px;
  }
}
.p-top-service-list-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  justify-content: center;
  background-color: #3c3c3a;
  padding: 32px 16px;
}
@media screen and (min-width: 768px) {
  .p-top-service-list-item {
    padding: 66px 16px;
    gap: 56px;
  }
}
.p-top-service-list-item__text {
  text-align: center;
  font-size: 14px;
}
@media screen and (min-width: 768px) {
  .p-top-service-list-item__text {
    font-size: 16px;
  }
}
.p-top-about-us {
  background-color: #1e1e1e;
  padding-bottom: 60px;
}
@media screen and (min-width: 768px) {
  .p-top-about-us {
    padding-bottom: 200px;
  }
}
.p-top-about-us-container {
  max-width: 1200px;
  flex-direction: column;
  margin-inline: auto;
  width: 90%;
  margin-top: -1px;
  display: flex;
  justify-content: space-between;
}
@media screen and (min-width: 768px) {
  .p-top-about-us-container {
    flex-direction: row;
  }
}
.p-top-about-us-container-information {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-top-about-us-container-information {
    max-width: 660px;
    width: initial;
    margin-right: 160px;
  }
}
.p-top-about-us-container__title {
  color: #999278;
  font-weight: 500;
  font-size: 64px;
  text-align: right;
  margin-bottom: 24px;
  font-family: var(--font-family-en);
}
@media screen and (min-width: 768px) {
  .p-top-about-us-container__title {
    writing-mode: vertical-rl;
    text-align: left;
    margin-bottom: unset;
    font-feature-settings: initial;
    white-space: nowrap;
    font-size: 160px;
    line-height: 1;
  }
}
.p-top-about-us-container-information-line {
  display: flex;
  padding-bottom: 20px;
  padding-top: 20px;
  border-bottom: 1px solid #353535;
}
.p-top-about-us-container-information-line__term {
  width: 130px;
  padding-inline: 10px;
  font-size: 14px;
  font-weight: 500;
  flex-shrink: 0;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .p-top-about-us-container-information-line__term {
    font-size: 16px;
  }
}
.p-top-about-us-container-information-line__description {
  padding-inline: 10px;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .p-top-about-us-container-information-line__term {
    font-size: 16px;
  }
}
.p-top-about-us-image {
  display: block;
  max-width: 1364px;
  width: 90%;
  margin-inline: auto;
}
.p-top-contact-wrap {
  background-color: #1e1e1e;
  margin-top: -1px;
}
.p-top-contact {
  padding-top: 60px;
  padding-bottom: 20px;
}
.p-top-contact-container {
  position: relative;
  background-color: #3c3c3a;
  max-width: 1440px;
  margin-inline: auto;
  padding-top: 64px;
  padding-bottom: 42px;
}
@media screen and (min-width: 768px) {
  .p-top-contact-container {
    padding-top: 101px;
    padding-bottom: 73px;
  }
}
.p-top-contact__title {
  font-size: 64px;
  font-weight: 500;
  font-family: var(--font-family-en);
  position: absolute;
  line-height: 1;
  top: 0;
  left: 50%;
  translate: -50% -50%;
  color: #999278;
}
@media screen and (min-width: 768px) {
  .p-top-contact__title {
    font-size: 160px;
  }
}
.p-top-contact-image {
  position: absolute;
  bottom: 0;
  width: 180px;
  left: 50%;
  translate: calc(-50% - 440px) 0;
}
.p-top-contact__message {
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 32px;
}
@media screen and (min-width: 768px) {
  .p-top-contact__message {
    font-size: 20px;
    margin-bottom: 60px;
  }
}
.p-top-contact-link {
  width: max-content;
  position: relative;
  max-width: 100%;
  margin-inline: auto;
  background-color: #d74b0b;
  border-radius: calc(infinity * 1px);
  padding: 18px 91px 18px 72px;
  display: flex;
  align-items: center;
  gap: 16px;
}
@media screen and (min-width: 768px) {
  .p-top-contact-link {
    gap: 30px;
  }
}
.p-top-contact-link__text {
  color: #fff;
  font-size: 24px;
  font-weight: 500;
  font-family: var(--font-family-en);
  line-height: 1;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-top-contact-link__text {
    font-size: 48px;
  }
}
.p-top-contact-link__icon {
  width: 28px;
}
@media screen and (min-width: 768px) {
  .p-top-contact-link__icon {
    width: 40px;
  }
}
.p-top-contact-link__line {
  position: absolute;
  top: 50%;
  right: 0;
  width: 60px;
  height: 3px;
  translate: 25% -50%;
  transition: translate 0.2s cubic-bezier(0.58, -0.02, 0.06, 0.92);
}
@media screen and (min-width: 768px) {
  .p-top-contact-link__line {
    width: 80px;
    height: 5px;
  }
}
.p-top-contact-link:hover .p-top-contact-link__line {
  translate: 50% -50%;
  transition: translate 0.2s cubic-bezier(0.58, -0.02, 0.06, 0.92);
}
#about {
  scroll-margin-top: 50px;
}
@media screen and (min-width: 768px) {
  #about {
    scroll-margin-top: 240px;
  }
}
#service {
  scroll-margin-top: 50px;
}
@media screen and (min-width: 768px) {
  #service {
    scroll-margin-top: 100px;
  }
}
#contact {
  scroll-margin-top: 50px;
}
@media screen and (min-width: 768px) {
  #contact {
    scroll-margin-top: 240px;
  }
}
/*=================================================
 *  汎用アニメーション
 *================================================*/
.c-clip-from-left {
  clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
  transition: clip-path 0.6s cubic-bezier(0.58, -0.02, 0.06, 0.92);
}
.c-clip-from-left.is-shown {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  transition: clip-path 0.6s cubic-bezier(0.58, -0.02, 0.06, 0.92);
}
@keyframes c-clip-from-left {
  from {
    clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
  }
  to {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  }
}
.c-clip-from-right {
  clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
  transition: clip-path 0.6s cubic-bezier(0.58, -0.02, 0.06, 0.92);
}
.c-clip-from-right.is-shown {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  transition: clip-path 0.6s cubic-bezier(0.58, -0.02, 0.06, 0.92);
}
@keyframes c-clip-from-right {
  from {
    clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
  }
  to {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  }
}
.c-clip-from-bottom {
  clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0% 100%);
  transition: clip-path 0.6s cubic-bezier(0.58, -0.02, 0.06, 0.92);
}
.c-clip-from-bottom.is-shown {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  transition: clip-path 0.6s cubic-bezier(0.58, -0.02, 0.06, 0.92);
}
@keyframes c-clip-from-bottom {
  from {
    clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0% 100%);
  }
  to {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  }
}
.c-clip-from-top {
  clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
  transition: clip-path 0.6s cubic-bezier(0.58, -0.02, 0.06, 0.92);
}
.c-clip-from-top.is-shown {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  transition: clip-path 0.6s cubic-bezier(0.58, -0.02, 0.06, 0.92);
}
@keyframes c-clip-from-top {
  from {
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
  }
  to {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  }
}
