@charset "UTF-8";
html {
  font-size: 100%;
}
@media (max-width: 910px) {
  html {
    font-size: 1.7582417582vw;
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: 100%;
  }
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}

body {
  color: #231815;
  font-family: "a-otf-ud-shin-go-pr6n", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro", "メイリオ", "游ゴシック体", "YuGothic", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

a,
button {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
a:hover,
button:hover {
  cursor: pointer;
  opacity: 0.7;
}
@media screen and (max-width: 767px) {
  a:hover,
  button:hover {
    opacity: 1;
  }
}

/* iOS Data Detectors によるリンク装飾を無効化 */
a[x-apple-data-detectors] {
  color: inherit !important;
  pointer-events: none;
  text-decoration: none !important;
  /* クリックも無効化したい場合 */
}

/*****************************
* A Modern CSS Reset (https://github.com/hankchizljaw/modern-css-reset)
* 上記に、ul要素,ol要素,a要素への記述追加
*****************************/
/* Box sizing rules */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd,
ul,
li {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul,
ol {
  list-style: none;
  margin-block: 0;
  padding: 0;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  line-height: 1.5;
  min-height: 100vh;
  text-rendering: optimizeSpeed;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

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

/* Make images easier to work with */
img,
picture {
  display: block;
  max-width: 100%;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

button {
  background-color: transparent;
  background-color: initial;
  border: none;
  padding: 0;
}

/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    -webkit-animation-duration: 0.01ms !important;
            animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
            animation-iteration-count: 1 !important;
    -webkit-transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
            transition-duration: 0.01ms !important;
  }
}
.l-container {
  -webkit-box-flex: 1;
      -ms-flex: 1;
  background-color: #fff;
          flex: 1;
  margin: 0 auto;
  max-width: 60rem;
  width: 100%;
}
@media screen and (max-width: 600px) {
  .l-container {
    max-width: 100%;
    padding: 0;
    -webkit-box-shadow: none;
            box-shadow: none;
  }
}

.l-header {
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 900;
}

.l-inner {
  margin-inline: auto;
  max-width: 910px;
  padding-left: 1.5625rem;
  padding-right: 1.5625rem;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .l-inner {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}

.l-outer {
  background-color: #000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 100vh;
  padding: 0 25px;
}
@media screen and (max-width: 960px) {
  .l-outer {
    padding: 0;
  }
}

.l-page-top {
  bottom: 0.9375rem;
  position: fixed;
  right: 0.9375rem;
  z-index: 100;
}

.c-btn {
  background-color: #fff;
  display: block;
  font-size: 1rem;
  height: 100%;
  height: 3.125rem;
  letter-spacing: 0.05em;
  line-height: 1;
  padding: 1.0625rem 1.25rem;
  position: relative;
  text-align: center;
  text-transform: uppercase;
  width: 100%;
  width: 13.75rem;
  -webkit-box-shadow: 2px 2px 4px 1px rgba(0, 0, 0, .25);
          box-shadow: 2px 2px 4px 1px rgba(0, 0, 0, .25);
}

.c-btn::before {
  background-image: url(../img/icon/icon_mail.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  height: 0.875rem;
  left: 1.25rem;
  position: absolute;
  top: 50%;
  width: 1.1875rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.c-btn::after {
  background-image: url(../img/icon/icon_arrow-bk.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  height: 0.6875rem;
  position: absolute;
  right: 1.25rem;
  top: 50%;
  width: 0.3125rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

@media (any-hover: hover) {
  .c-btn:hover::after {
    -webkit-transform: translateY(-50%) translateX(0.3125rem);
            transform: translateY(-50%) translateX(0.3125rem);
  }
}
.c-btn.c-btn--bk {
  background-color: #231815;
  border: 1px solid transparent;
  color: #fff;
  font-size: 10px;
  height: unset;
  padding: 0.65625rem 1.25rem;
  width: 10rem;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.c-btn.c-btn--bk:before,
.c-btn.c-btn--bk:after {
  background-image: none;
}

@media (any-hover: hover) {
  .c-btn.c-btn--bk:hover {
    background-color: #fff;
    border-color: #231815;
    color: #231815;
    opacity: 1;
  }
}
.c-open-btn {
  cursor: pointer;
  height: 13px;
  position: relative;
  width: 13px;
}

.c-open-btn span {
  background: #231815;
  display: block;
  height: 2px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 13px;
  -webkit-transition: 0.4s;
  left: 50%;
  position: absolute;
  transition: 0.4s;
}

.c-open-btn span:nth-of-type(1) {
  -webkit-transform: translateX(-50%) rotate(-90deg);
          transform: translateX(-50%) rotate(-90deg);
}

.c-open-btn span:nth-of-type(2) {
  -webkit-transform: translateX(-50%) rotate(0deg);
          transform: translateX(-50%) rotate(0deg);
}

/*rotate*/
.js-rotate.is-active span:nth-of-type(1) {
  -webkit-transform: translateX(-50%) rotate(-45deg);
          transform: translateX(-50%) rotate(-45deg);
}

.js-rotate.is-active span:nth-of-type(2) {
  -webkit-transform: translateX(-50%) rotate(45deg);
          transform: translateX(-50%) rotate(45deg);
}

.c-subttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-family: "Century Gothic", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: max(0.9375rem, 10px);
  letter-spacing: 0.03em;
  line-height: 1;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  font-weight: 400;
  gap: 0.125rem;
}

.c-subttl > span {
  font-family: "a-otf-ud-shin-go-pr6n", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro", "メイリオ", "游ゴシック体", "YuGothic", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 8px;
  letter-spacing: normal;
  line-height: 1;
}

.c-ttl {
  font-family: "Century Gothic", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 2.1875rem;
  font-weight: 400;
  letter-spacing: 0.03em;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .c-ttl {
    font-size: 2.1875rem;
  }
}

.p-accsess__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 600px) {
  .p-accsess__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.p-accsess__map {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .p-accsess__map {
    width: 100%;
  }
}

.p-accsess__map iframe {
  aspect-ratio: 480/600;
  height: 100%;
  width: 100%;
}
@media screen and (max-width: 600px) {
  .p-accsess__map iframe {
    aspect-ratio: 5/3;
  }
}

.p-accsess__body {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  max-height: 37.5rem;
  padding-bottom: 6.25rem;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  padding-top: 6.5625rem;
  width: 50%;
}
@media screen and (max-width: 767px) {
  .p-accsess__body {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    padding: 3.75rem 1.25rem;
  }
}
@media screen and (max-width: 600px) {
  .p-accsess__body {
    width: 100%;
  }
}

.p-accsess__ttl {
  text-align: center;
}

.p-accsess__top-txt {
  font-size: 12px;
  line-height: 1.8333333333;
  margin-top: 2.8125rem;
  text-align: center;
}

.p-accsess__item-contactWrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
  gap: 0.3125rem;
          justify-content: center;
  margin-top: 1.875rem;
}

.p-accsess__item-contactWrapper > span {
  font-family: "Century Gothic", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 11px;
  line-height: 1;
  text-align: center;
}

.p-accsess__item-tel {
  font-family: "Century Gothic", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 1.125rem;
  line-height: 1;
  pointer-events: none;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-accsess__item-tel {
    pointer-events: auto;
  }
}

.p-accsess__item-bottomWrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
  gap: 0.3125rem;
          justify-content: center;
  margin-top: 0;
}

.p-accsess__item-bottomTxt {
  font-size: 9px;
  line-height: 1;
  margin-top: 0.625rem;
  text-align: center;
}

.p-accsess__item-bottomTxt:not(:first-child) {
  margin-top: 0.25rem;
}

.p-accsess__item-time {
  font-family: "Century Gothic", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 12px;
  line-height: 1;
}

.p-accsess__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 1.875rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.p-accsess__cta {
  background-color: #fff;
  border: 1px solid #231815;
  color: #231815;
  font-family: "Century Gothic", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 1;
  margin: 1.375rem auto 0;
  padding: 0.625rem 0.625rem;
  text-align: center;
  text-align: center;
  text-transform: uppercase;
  width: 10rem;
}
@media screen and (max-width: 767px) {
  .p-accsess__cta {
    margin-top: 1rem;
  }
}

.p-accsess__bottom-txt {
  font-size: 11px;
  line-height: 1.7272727273;
  margin-top: 1.5rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-accsess__bottom-txt {
    word-break: keep-all;
  }
}

.p-company {
  background-image: url(../img/bg_company.png);
  background-position: right bottom;
  background-repeat: no-repeat;
  background-size: cover;
  color: #fff;
  height: auto;
  padding: 8.125rem 0 6.25rem;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-company {
    background-position: 65% 100%;
    padding: 3.75rem 0;
  }
}

.p-company__ttl {
  font-family: "Century Gothic", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 2.1875rem;
  font-weight: 400;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-company__ttl {
    font-size: 1.75rem;
  }
}

.p-company__inner {
  padding: 0 3.4375rem;
}
@media screen and (max-width: 767px) {
  .p-company__inner {
    padding: 0 1.25rem;
    position: relative;
    z-index: 1;
  }
}

@media screen and (max-width: 767px) {
  .p-company__inner::after {
    background-color: rgba(0, 0, 0, .5);
    bottom: 0;
    content: "";
    display: block;
    height: 100%;
    left: 0;
    position: absolute;
    width: 100%;
    z-index: -1;
  }
}

.p-company__profile {
  margin-top: 2.375rem;
  max-width: 25rem;
  width: 100%;
}

.p-company__sub-ttl {
  border-bottom: 1px solid #fff;
  font-family: "Century Gothic", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 14px;
  font-weight: 400;
  padding-bottom: 0.125rem;
}

.p-company__profile-body {
  margin-top: 0.5rem;
}

.p-company__profile-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.375rem;
}
@media screen and (max-width: 767px) {
  .p-company__profile-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0.25rem;
  }
}

.p-company__profile-item:not(:first-child) {
  margin-top: 0.25rem;
}
@media screen and (max-width: 767px) {
  .p-company__profile-item:not(:first-child) {
    margin-top: 0.5rem;
  }
}

.p-company__profile-ttl {
  font-size: 12px;
  width: 36px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .p-company__profile-ttl {
    width: 100%;
  }
}

.p-company__profile-txt {
  font-size: 12px;
}

.p-company__profile-txt > span {
  font-size: 10px;
  line-height: 1;
}

.p-company__profile-link {
  cursor: default;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
@media screen and (max-width: 767px) {
  .p-company__profile-link {
    cursor: pointer;
    pointer-events: auto;
    -webkit-user-select: auto;
       -moz-user-select: auto;
        -ms-user-select: auto;
            user-select: auto;
  }
}

.p-company__policy {
  margin-top: 2.375rem;
  max-width: 25rem;
  width: 100%;
}

.p-company__policy-body {
  margin-top: 0.5rem;
}

.p-company__policy-txt {
  font-size: 12px;
}

.p-company__policy-txt > span {
  font-size: 10px;
}

.p-company__policy-txt:nth-child(2) {
  margin-top: 0.5rem;
}

.p-company__policy-body .p-company__policy-txt:first-child {
  margin-top: 1rem;
}

.p-company__policy-body .p-company__policy-txt:nth-child(2) {
  margin-top: 1rem;
}

.p-company__policy-body .p-company__policy-txt:nth-child(3) {
  margin-top: 1rem;
}

.p-company__policy-body .p-company__policy-txt:last-child {
  margin-top: 0.25rem;
}
@media screen and (max-width: 767px) {
  .p-company__policy-body .p-company__policy-txt:last-child {
    margin-top: 0.25rem;
  }
}

.p-company__policy-list {
  margin-top: 0.25rem;
}
@media screen and (max-width: 767px) {
  .p-company__policy-list {
    margin-top: 0.25rem;
  }
}

.p-company__policy-item {
  counter-increment: item;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 12px;
  list-style-position: inside;
  margin-top: 0.25rem;
}

.p-company__policy-item::before {
  content: counter(item) ".";
  display: inline-block;
}

.p-consult {
  background-color: #000;
  padding-bottom: 7.5rem;
  padding-top: 6.0625rem;
}
@media screen and (max-width: 767px) {
  .p-consult {
    padding-bottom: 3.75rem;
    padding-top: 3.75rem;
  }
}

.p-consult__inner {
  padding: 0 1.25rem;
}

.p-consult__ttl {
  color: #fff;
  letter-spacing: 0.03em;
  text-align: center;
}

.p-consult__top-txt {
  color: #fff;
  font-size: 12px;
  line-height: 2.6666666667;
  margin-top: 2rem;
  text-align: center;
  word-break: keep-all;
}

.p-consult__sub-ttl-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
  gap: 0.625rem;
          justify-content: center;
  margin-top: 4.25rem;
}
@media screen and (max-width: 767px) {
  .p-consult__sub-ttl-wrapper {
    margin-top: 2.5rem;
  }
}

.p-consult__sub-ttl {
  color: #fff;
  font-family: "Century Gothic", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 1.75rem;
  letter-spacing: 0.08em;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .p-consult__sub-ttl {
    font-size: 1.375rem;
  }
}

.p-consult__logo {
  width: 3.125rem;
}

.p-consult__list {
  display: grid;
  gap: 3.5rem;
  grid-template-columns: repeat(2, 1fr);
  justify-self: center;
  margin-top: 5.0625rem;
  max-width: 53.75rem;
  place-items: center;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-consult__list {
    gap: 1.875rem 1.25rem;
    margin-top: 2.5rem;
  }
}

.p-consult__item {
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 13.625rem;
  width: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-shadow: 1px 1px 5px 0 rgba(35, 24, 21, .5);
          box-shadow: 1px 1px 5px 0 rgba(35, 24, 21, .5);
  padding: 0.625rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-consult__item {
    height: 10rem;
    padding: 0.3125rem;
  }
}

.p-consult__item-ttl {
  font-family: "Century Gothic", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 1.375rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .p-consult__item-ttl {
    font-size: 1.125rem;
    line-height: 1.2222222222;
  }
}

.p-consult__item-subttl {
  font-family: "a-otf-ud-shin-go-pr6n", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro", "メイリオ", "游ゴシック体", "YuGothic", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-family: "a-otf-ud-reimin-pr6n", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 11px;
  letter-spacing: 0.2em;
  line-height: 1;
  margin-top: 0.75rem;
}
@media screen and (max-width: 767px) {
  .p-consult__item-subttl {
    letter-spacing: 0.05em;
    line-height: 1.4;
    word-break: keep-all;
  }
}

.p-contact {
  background-color: #000;
  color: #fff;
  padding: 6.25rem 0 5.5625rem;
}
@media screen and (max-width: 767px) {
  .p-contact {
    padding: 3.75rem 0;
  }
}

.p-contact__inner {
  margin: 0 auto;
  max-width: 34.6875rem;
  padding: 0 1.5625rem;
}

.p-contact__ttl {
  text-align: center;
}

.p-contact__form {
  margin-top: 3.875rem;
}

.p-error {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  padding: 6.25rem 0;
  text-align: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.p-error__ttl {
  font-size: 1.75rem;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .p-error__ttl {
    font-size: 1.5rem;
  }
}

.p-error__list {
  margin-inline: auto;
  margin-top: 1.875rem;
  text-align: left;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.p-error__list > li {
  color: #e75252;
  font-size: 1rem;
  font-weight: 700;
  margin-top: 0.625rem;
  text-align: left;
}

.p-error__back {
  border: 1px solid #000;
  border-radius: 3.125rem;
  color: #000;
  display: inline-block;
  font-size: 0.875rem;
  margin-top: 1.875rem;
  padding: 0.625rem 1.25rem;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

@media (any-hover: hover) {
  .p-error__back:hover {
    background-color: #231815;
    color: #fff;
  }
}
.p-faq {
  padding: 6.0625rem 0 6.5rem;
}
@media screen and (max-width: 767px) {
  .p-faq {
    padding: 3.75rem 0;
  }
}

.p-faq__ttl {
  text-align: center;
}

.p-faq__container {
  margin-top: 1.625rem;
}
@media screen and (max-width: 767px) {
  .p-faq__container {
    margin-top: 1.625rem;
  }
}

.p-faq__item {
  background-color: #fff;
  border: 1px solid #231815;
  cursor: pointer;
}

.p-faq__item:not(:first-child) {
  margin-top: 1.375rem;
}

.p-faq__item-ttl {
  padding: 0.8125rem 0;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-faq__item-ttl {
    padding: 1rem 0;
  }
}

.p-faq__item-q {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-family: "Century Gothic", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 0.9375rem;
  gap: 0.25rem;
  line-height: 1.4;
  padding: 0 3.5rem 0 1rem;
}
@media screen and (max-width: 767px) {
  .p-faq__item-q {
    font-size: 0.875rem;
    padding: 0 1.875rem 0 0.75rem;
  }
}

.p-faq__item-q::before {
  content: "Q.";
  display: inline-block;
  font-size: 0.9375rem;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .p-faq__item-q::before {
    font-size: 0.875rem;
  }
}

.p-faq__btn {
  position: absolute;
  right: 1.25rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .p-faq__btn {
    right: 0.75rem;
  }
}

.p-faq__item-a {
  background-color: #EFEFEF;
  border-top: 1px solid #231815;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 0.9375rem;
  gap: 0.25rem;
  padding: 1.125rem 2.625rem 1rem 1rem;
  padding-bottom: 1.4375rem;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-faq__item-a {
    font-size: 0.875rem;
    line-height: 1.5;
    padding: 1rem 1rem 1rem 1rem;
  }
}

.p-faq__item-a::before {
  content: "A.";
  font-family: "Century Gothic", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .p-faq__item-a::before {
    font-size: 0.875rem;
  }
}

.p-flow__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 600px) {
  .p-flow__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.p-flow__img {
  width: 50%;
}
@media screen and (max-width: 600px) {
  .p-flow__img {
    width: 100%;
  }
}

.p-flow__img img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: left;
     object-position: left;
}
@media screen and (max-width: 600px) {
  .p-flow__img img {
    aspect-ratio: 8/3;
    height: auto;
    -o-object-position: center;
       object-position: center;
  }
}

/* Safari */
_::-webkit-full-page-media, _:future, :root .p-flow__img img {
  max-height: 59.375rem;
}

.p-flow__body {
  background-color: #EFEFEF;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  padding-bottom: 6.25rem;
  padding-left: 4.25rem;
  padding-right: 0.625rem;
  padding-top: 6.25rem;
  width: 50%;
}
@media screen and (max-width: 767px) {
  .p-flow__body {
    padding: 3.75rem 1.25rem;
  }
}
@media screen and (max-width: 600px) {
  .p-flow__body {
    width: 100%;
  }
}

.p-flow__list {
  margin-top: 1.6875rem;
}

.p-flow__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.875rem;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .p-flow__item {
    gap: 1rem;
  }
}

.p-flow__item::before {
  background-color: #231815;
  bottom: -3.125rem;
  content: "";
  height: 100%;
  left: 1.5625rem;
  position: absolute;
  width: 1px;
  z-index: -1;
}

.p-flow__item:last-child::before {
  display: none;
}

.p-flow__item:not(:first-child) {
  margin-top: 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-flow__item:not(:first-child) {
    margin-top: 2rem;
  }
}

.p-flow__icon {
  background-color: #fff;
  border: 1px solid #231815;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 3.125rem;
  width: 3.125rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.p-flow__item-ttl {
  font-size: 0.9375rem;
}

.p-flow__item-txt {
  font-size: 12px;
  line-height: 1.5;
  margin-top: 0.625rem;
}

.p-flow__item-txt > span {
  font-size: 11px;
}

.p-flow__item-conactWrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 0.375rem;
  margin-top: 1.0625rem;
}

.p-flow__item-tel {
  font-family: "Century Gothic", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 1.125rem;
  line-height: 1;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .p-flow__item-tel {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    pointer-events: auto;
  }
}

.p-flow__item-conactWrapper > span {
  font-family: "Century Gothic", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 11px;
  line-height: 1;
}

.p-flow__item-bottomWrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 0.1875rem;
  margin-top: 0.1875rem;
}
@media screen and (max-width: 767px) {
  .p-flow__item-bottomWrapper {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.p-flow__item-bottomTxt {
  font-size: 9px;
  line-height: 1;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.p-flow__item-time {
  font-family: "Century Gothic", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 11px;
  line-height: 1;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.p-flow__icon--contact > img {
  width: 1.125rem;
}

.p-flow__icon--mtg > img {
  width: 1.5rem;
}

.p-flow__icon--memo > img {
  width: 1rem;
}

.p-flow__icon--web > img {
  width: 1rem;
}

.p-flow__icon--box > img {
  width: 1.0625rem;
}

.p-footer {
  background-color: #000;
  padding: 0 0 3.75rem;
}
@media screen and (max-width: 767px) {
  .p-footer {
    padding: 0 0 7.5rem;
  }
}

.p-footer__img {
  overflow: hidden;
  width: 100%;
}

.p-footer__img img {
  height: 7.5rem;
  width: 101%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-footer__inner {
  padding: 4.375rem 1.875rem 0 1.875rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-footer__inner {
    padding: 3.75rem 1.25rem 0 0.625rem;
  }
}

.p-footer__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .p-footer__wrapper {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
    gap: 0.9375rem;
            justify-content: center;
  }
}

@media screen and (max-width: 767px) {
  .p-footer__nav-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 1.25rem;
  }
}

@media screen and (max-width: 767px) {
  .p-footer__sns {
    margin-top: 1.25rem;
    width: 1.25rem;
  }
}

.p-footer__logo {
  width: 6.25rem;
  -ms-flex-negative: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
      flex-shrink: 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.p-footer__logo img {
  width: 4rem;
}

.p-footer__nav {
  margin-inline: auto;
  margin-left: 2.5rem;
  margin-top: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-footer__nav {
    margin-inline: 0;
  }
}

.p-footer__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px) {
  .p-footer__nav-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    max-width: 31.25rem;
  }
}

.p-footer__nav-item {
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-width: 1.375rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media screen and (max-width: 767px) {
  .p-footer__nav-item:not(:first-child) {
    margin-top: 1.25rem;
  }
}

.p-footer__nav-link {
  display: inline-block;
  font-family: "Century Gothic", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.03em;
  line-height: 1;
  padding: 0 0.5rem;
}
@media screen and (max-width: 767px) {
  .p-footer__nav-link {
    font-size: 14px;
  }
}

.p-footer__nav-sub {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 0.6875rem;
  padding-left: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-footer__nav-sub {
    margin-top: 0.625rem;
    padding-left: 0.5rem;
  }
}

.p-footer__nav-sub-item {
  line-height: 1;
}

.p-footer__nav-sub-item:not(:first-child) .p-footer__nav-subLink {
  display: block;
  margin-top: 0.5rem;
}
@media screen and (max-width: 767px) {
  .p-footer__nav-sub-item:not(:first-child) .p-footer__nav-subLink {
    margin-top: 0.5rem;
  }
}

.p-footer__nav-subLink {
  font-family: "Century Gothic", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 10px;
  line-height: 1;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .p-footer__nav-subLink {
    font-size: 12px;
  }
}

.p-footer__nav-subLink > span {
  font-size: 9px;
}

.p-footer__nav-subLink::before {
  color: #fff;
  content: "〉";
  display: inline-block;
}

.p-footer__nav-item:first-child {
  width: 4.5rem;
}
@media screen and (max-width: 767px) {
  .p-footer__nav-item:first-child {
    width: 100%;
  }
}

.p-footer__nav-item:nth-child(6) {
  width: 5rem;
}
@media screen and (max-width: 767px) {
  .p-footer__nav-item:nth-child(6) {
    width: 100%;
  }
}

@media screen and (max-width: 767px) {
  .p-footer__nav-list:first-child .p-footer__nav-item:last-child {
    display: none;
  }
}

.p-footer__nav-item:last-child .p-footer__nav-link {
  padding-left: 1.875rem;
  padding-right: 0;
}
@media screen and (max-width: 767px) {
  .p-footer__nav-item:last-child .p-footer__nav-link {
    padding-left: 0;
  }
}

.p-footer__nav-link.p-footer__nav-link--sns {
  padding-right: 2.8125rem;
}

.p-footer__nav-link.p-footer__nav-link--sns > img {
  height: 0.8125rem;
  width: 0.8125rem;
}

.p-footer__nav-item--top {
  position: absolute;
  right: 5.5%;
  top: 5.1875rem;
}
@media (max-width: 910px) {
  .p-footer__nav-item--top {
    right: 1.5%;
    top: 2.1875rem;
  }
}
@media screen and (max-width: 767px) {
  .p-footer__nav-item--top {
    right: 1.25rem;
    top: 1.25rem;
  }
}

.p-footer__nav-link--top {
  display: block;
  width: 2.1875rem;
}

.p-footer__nav-link.p-footer__nav-link--top > img {
  width: 100%;
}

.p-footer__nav-list.p-footer__nav-list--bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 1.625rem;
  padding-left: 0.625rem;
}

.p-footer__nav-list.p-footer__nav-list--bottom .p-footer__nav-subLink {
  margin-top: 0.625rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 767px) {
  .p-footer__nav-list.p-footer__nav-list--bottom .p-footer__nav-subLink {
    margin-top: 0.5rem;
  }
}

@media screen and (max-width: 767px) {
  .p-footer__nav-list.p-footer__nav-list--bottom .p-footer__nav-item:not(:first-child) {
    margin-top: 0.125rem;
  }
}

.p-form__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.p-form__item:not(:first-child) {
  margin-top: 0.5625rem;
}

.p-form__label {
  color: #B5B5B6;
  font-family: "Century Gothic", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 12px;
  letter-spacing: 0.1em;
  margin-bottom: 0.1875rem;
  padding-left: 1.2em;
}
@media screen and (max-width: 767px) {
  .p-form__label {
    padding-left: 0;
  }
}

.p-form__label > span {
  font-size: 10px;
  letter-spacing: 0.1em;
}

.p-form__mail-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.p-form__mail-wrapper .p-form__txt {
  min-width: 0;
  width: 48%;
}

.p-form__mail-wrapper .p-form__mail-at {
  font-size: 0.875rem;
  margin: 0 0.75rem;
}
@media screen and (max-width: 767px) {
  .p-form__mail-wrapper .p-form__mail-at {
    margin: 0 0.25rem;
  }
}

.p-form__txt {
  background-color: #fff;
  border: none;
  color: #231815;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 0.875rem;
  height: 2.25rem;
  outline: none;
  padding: 0.625rem 0.9375rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 0;
}
@media screen and (max-width: 767px) {
  .p-form__txt {
    height: 2.5rem;
  }
}

.p-form__txt::-webkit-input-placeholder {
  color: #231815;
  font-size: 10px;
}

.p-form__txt::-moz-placeholder {
  color: #231815;
  font-size: 10px;
}

.p-form__txt::-ms-input-placeholder {
  color: #231815;
  font-size: 10px;
}

.p-form__txt::placeholder {
  color: #231815;
  font-size: 10px;
}

.p-form__radio {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.625rem;
  padding-left: 1em;
}
@media screen and (max-width: 767px) {
  .p-form__radio {
    margin: 0.5625rem 0;
    padding-left: 0;
  }
}

.p-form__radio-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.p-form__radio-input {
  cursor: pointer;
  margin: 0;
  margin-right: 0.1875rem;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: #fff;
  border-radius: 50%;
  height: 10px;
  vertical-align: middle;
  width: 10px;
  -webkit-transition: border 0.2s;
  outline: none;
  position: relative;
  transition: border 0.2s;
}

.p-form__radio-input:checked::before {
  background: #231815;
  border-radius: 50%;
  content: "";
  display: block;
  height: 6px;
  left: 2px;
  position: absolute;
  top: 2px;
  width: 6px;
}

.p-form__radio-label {
  color: #fff;
  cursor: pointer;
  font-size: 12px;
}

.p-form__textarea {
  background-color: #fff;
  border: none;
  border-radius: 0;
  color: #231815;
  font-size: 14px;
  height: 13.75rem;
  line-height: 1.5;
  outline: none;
  padding: 0.625rem 0.9375rem;
}

.p-form__textarea::-webkit-input-placeholder {
  color: #231815;
  font-size: 10px;
}

.p-form__textarea::-moz-placeholder {
  color: #231815;
  font-size: 10px;
}

.p-form__textarea::-ms-input-placeholder {
  color: #231815;
  font-size: 10px;
}

.p-form__textarea::placeholder {
  color: #231815;
  font-size: 10px;
}

.p-form__btn-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 3.4375rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .p-form__btn-wrapper {
    margin-top: 1.875rem;
  }
}

.p-form__btn {
  background-color: #000;
  background-image: url(../img/icon/icon_mail-wh.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  border: none;
  cursor: pointer;
  height: 1.375rem;
  margin: 0 auto;
  outline: none;
  width: 1.875rem;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

@media (any-hover: hover) {
  .p-form__btn:hover {
    opacity: 0.5;
  }
}
.p-form__recaptcha {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 1.875rem auto 0;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.p-header {
  height: 5.9375rem;
  margin: 0 auto;
  max-width: 1010px;
  padding: 0 40px;
}
@media screen and (max-width: 767px) {
  .p-header {
    height: 3.125rem;
    padding: 0;
  }
}

.p-header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: inherit;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media screen and (max-width: 767px) {
  .p-header__inner {
    padding-right: 0.625rem;
  }
}

.p-header__logo {
  height: inherit;
  max-width: 7.5rem;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-header__logo {
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}

.p-header__logo > a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: inherit;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.p-header__logo img {
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-header__nav {
  display: block;
  height: inherit;
}
@media screen and (max-width: 767px) {
  .p-header__nav {
    display: none;
  }
}

.p-header__nav-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: inherit;
}

.p-header__hamburger {
  border: none;
  cursor: pointer;
  height: inherit;
  margin: 0;
  outline: none;
  padding: 0;
  position: relative;
  width: 2.75rem;
  z-index: 999;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .p-header__hamburger {
    width: 2.5rem;
  }
}

.p-header__hamburger span {
  left: 50%;
  position: relative;
  -webkit-transform: translateX(-50%);
  background: #fff;
  display: block;
  height: 3px;
          transform: translateX(-50%);
  width: 2.75rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, .25);
          box-shadow: 0 0 5px rgba(0, 0, 0, .25);
}
@media screen and (max-width: 767px) {
  .p-header__hamburger span {
    width: 2.5rem;
  }
}

.p-header__hamburger span:nth-of-type(1) {
  top: -0.5rem;
}

.p-header__hamburger span:nth-of-type(2) {
  top: 0.3125rem;
}

.p-header__hamburger.is-open span:nth-of-type(1) {
  top: 0.0625rem;
  -webkit-transform: translateX(-50%) rotate(45deg);
          transform: translateX(-50%) rotate(45deg);
}

.p-header__hamburger.is-open span:nth-of-type(2) {
  top: -0.125rem;
  -webkit-transform: translateX(-50%) rotate(-45deg);
          transform: translateX(-50%) rotate(-45deg);
}

.p-header__drawer {
  background-color: #000;
  bottom: 0;
  display: none;
  left: 0;
  max-width: 60rem;
  min-height: 100vh;
  overflow-y: scroll;
  padding: 3.75rem 1.5625rem;
  position: absolute;
  right: 0;
  scrollbar-width: none;
  top: 0;
  width: 100%;
  z-index: 900;
  -webkit-transform: translateX(0);
  color: #fff;
  margin-inline: auto;
          transform: translateX(0);
}
@media screen and (max-width: 767px) {
  .p-header__drawer {
    padding: 2.5rem 1.25rem;
  }
}

.p-header__drawer::-webkit-scrollbar {
  display: none;
}

.p-header__drawer-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
  gap: 6.25rem;
  height: 100%;
          justify-content: center;
}

.p-header__drawer-item > a {
  color: #fff;
  display: block;
  font-family: "Century Gothic", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 1;
  padding: 0.15625rem 0;
}
@media screen and (max-width: 767px) {
  .p-header__drawer-item > a {
    font-size: 14px;
  }
}

.p-header__drawer-subItem > a {
  font-size: 12px;
}

.p-header__drawer-subItem > a > span {
  font-size: 9px;
  letter-spacing: normal;
}

.p-header__drawer-item:not(:first-child) {
  padding-top: 1.25rem;
}

.p-header__drawer-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
  gap: 6.25rem;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .p-header__drawer-nav {
    gap: 0.9375rem;
  }
}

.p-header__drawer-logo-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 7.5rem;
}

.p-header__drawer-logo {
  max-width: 7.5rem;
  width: 100%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .p-header__drawer-logo {
    max-width: 4rem;
  }
}

.p-header__drawer-sns {
  margin-top: 3.125rem;
  width: 1.5625rem;
}
@media screen and (max-width: 767px) {
  .p-header__drawer-sns {
    margin-top: 1.25rem;
    width: 0.8125rem;
  }
}

.p-header__drawer-subItems {
  margin-top: 0.125rem;
}

.p-header__drawer-subItem > a {
  color: #fff;
  font-family: "Century Gothic", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .p-header__drawer-subItem > a {
    font-size: 0.75rem;
  }
}

.p-header__drawer-subItem > a::before {
  content: "〉";
  display: inline-block;
  font-size: 12px;
}
@media screen and (max-width: 767px) {
  .p-header__drawer-subItem > a::before {
    font-size: 0.625rem;
  }
}

.p-header__drawer-subItems--expand {
  margin-top: 1rem;
}

.p-header__drawer-subItems--expand .p-header__drawer-subItem > a {
  display: block;
  font-size: 0.875rem;
  letter-spacing: normal;
  padding-bottom: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-header__drawer-subItems--expand .p-header__drawer-subItem > a {
    font-size: 0.75rem;
  }
}

.p-header__drawer-subItems--expand .p-header__drawer-subItem > a:last-child {
  padding-top: 0.25rem;
}

.p-recruit__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px) {
  .p-recruit__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.p-recruit__img {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .p-recruit__img {
    width: 100%;
  }
}

.p-recruit__img img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: left;
     object-position: left;
}
@media screen and (max-width: 767px) {
  .p-recruit__img img {
    aspect-ratio: 7/3;
    height: auto;
  }
}

/* Safari */
_::-webkit-full-page-media, _:future, :root .p-recruit__img img {
  max-height: 64.6875rem;
}

.p-recruit__body {
  background-color: #fff;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  margin-inline: auto;
  max-width: 25.625rem;
  padding-bottom: 6.25rem;
  padding-left: 0.625rem;
  padding-right: 0.625rem;
  padding-top: 5rem;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-recruit__body {
    max-width: unset;
    padding: 3.75rem 1.25rem;
    width: 100%;
  }
}

.p-recruit__list {
  margin: 1.5625rem auto 0;
  max-width: 25.625rem;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-recruit__list {
    margin-left: 0;
    margin-right: auto;
    max-width: unset;
  }
}

.p-recruit__item {
  max-width: 25.625rem;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-recruit__item {
    max-width: unset;
  }
}

.p-recruit__item:not(:first-child) {
  margin-top: 1.625rem;
}

.p-recruit__item-body {
  margin-top: 0.625rem;
  max-width: 26.25rem;
  padding-left: 1em;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-recruit__item-body {
    width: 100%;
  }
}

.p-recruit__item-ttlWrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
  gap: 0.5rem;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #231815;
  padding: 0.5625rem 0.5rem 0.5625rem 0.5rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.p-recruit__wrapper-ttl {
  border: 1px solid #fff;
  color: #fff;
  font-size: 11px;
  font-weight: 400;
  line-height: 1;
  padding: 0.1875rem 0.25rem;
}

.p-recruit__item-ttlWrapper > span {
  color: #fff;
  font-family: "Century Gothic", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 0.9375rem;
  font-weight: 400;
  letter-spacing: 0.05em;
}

.p-recruit__item-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.25rem;
  margin-top: 0.25rem;
}

.p-recruit__item-ttl {
  font-size: 12px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.p-recruit__item-txt {
  font-size: 12px;
  word-break: keep-all;
}

.p-recruit__item:last-child .p-recruit__item-txt {
  margin-top: 0.5rem;
  padding-left: 1em;
  word-break: keep-all;
}

.p-recruit__item:last-child .p-recruit__item-txt:last-child {
  margin-top: 0.9375rem;
}

.p-recruit__item:last-child .p-recruit__item-ttl {
  border: 1px solid #231815;
  color: #231815;
  display: inline-block;
  font-weight: 400;
  margin-top: 0.5rem;
  padding: 0.0625rem 0.3125rem;
}

.p-thanks {
  background-color: #000;
  color: #fff;
  padding: 12.5rem 0;
}
@media screen and (max-width: 600px) {
  .p-thanks {
    padding: 4.375rem 0;
  }
}

.p-thanks__inner {
  margin: 0 auto;
  padding: 0 1.5625rem;
  text-align: center;
}
@media screen and (max-width: 600px) {
  .p-thanks__inner {
    padding: 0 1.25rem;
  }
}

.p-thanks__top-txt {
  font-size: 0.9375rem;
  margin-top: 2.1875rem;
}

.p-thanks__center-txt {
  font-size: 11px;
  margin-top: 0.625rem;
}

.p-thanks__bottom-txt {
  font-size: 10px;
  line-height: 1.8;
  margin-top: 1.25rem;
}
@media screen and (max-width: 600px) {
  .p-thanks__bottom-txt {
    word-break: keep-all;
  }
}

.p-top-mv {
  background-color: #000;
  height: 100vh;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-top-mv {
    height: 100lvh;
  }
}

.p-top-mv__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .p-top-mv__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.p-top-mv__container {
  position: relative;
  visibility: hidden; /* JS 実行前のチラつきを防止 */
}

.p-top-mv__img img {
  height: 100vh;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-top-mv__ttl {
  left: 50%;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  height: auto;
  max-width: 6.6875rem;
          transform: translate(-50%, -50%);
  width: 100%;
  z-index: 10;
}

.p-top-mv__contact-btn {
  bottom: 2.125rem;
  margin: 0;
  padding: 0;
  position: fixed;
  right: calc(50% - 30rem);
  z-index: 10;
}
@media screen and (max-width: 1010px) {
  .p-top-mv__contact-btn {
    right: 25px;
  }
}
@media screen and (max-width: 960px) {
  .p-top-mv__contact-btn {
    right: 0;
  }
}
@media screen and (max-width: 600px) {
  .p-top-mv__contact-btn {
    bottom: 0rem;
  }
}

@media screen and (max-width: 600px) {
  .p-top-mv__contact-btn > .c-btn {
    background-color: #EFEFEF;
    min-width: 100vw;
    width: 100%;
    -webkit-box-shadow: 0 0 12px rgba(0, 0, 0, .3);
            box-shadow: 0 0 12px rgba(0, 0, 0, .3);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 0.625rem;
  }
}

@media screen and (max-width: 600px) {
  .p-top-mv__contact-btn > .c-btn::after {
    display: none;
  }
}

@media screen and (max-width: 600px) {
  .p-top-mv__contact-btn > .c-btn::before {
    position: static;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

.p-work__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 600px) {
  .p-work__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.p-work__body {
  padding-bottom: 3.125rem;
  padding-left: 3.125rem;
  padding-right: 0.625rem;
  padding-top: 5rem;
  width: 50%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .p-work__body {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    padding-top: 3.125rem;
  }
}
@media screen and (max-width: 600px) {
  .p-work__body {
    width: 100%;
  }
}

.p-work__ttl {
  letter-spacing: 0;
}

.p-work__content {
  margin-top: 2.875rem;
}

.p-work__content + .p-work__content {
  margin-top: 4.0625rem;
}
@media screen and (max-width: 767px) {
  .p-work__content + .p-work__content {
    margin-top: 1.875rem;
  }
}

.p-work__txt {
  font-size: 12px;
  line-height: 2;
  margin-top: 1.25rem;
  word-break: keep-all;
}
@media screen and (max-width: 767px) {
  .p-work__txt {
    margin-top: 1rem;
  }
}

.p-work__img {
  margin-left: auto;
  max-width: 30rem;
  overflow: hidden;
  width: 100%;
}
@media screen and (max-width: 600px) {
  .p-work__img {
    margin-top: 2rem;
    max-width: 100%;
  }
}

.p-work__img img {
  height: 101%;
  -o-object-fit: cover;
     object-fit: cover;
  position: relative;
  top: -1px;
  z-index: 0;
}
@media screen and (max-width: 600px) {
  .p-work__img img {
    aspect-ratio: 8/3;
    height: auto;
    top: 1px;
  }
}

/* Safari */
_::-webkit-full-page-media, _:future, :root .p-work__img img {
  max-height: 48.125rem;
}

.js-slidedown img,
.js-slidedown iframe {
  -webkit-clip-path: inset(0 0 100% 0);
          clip-path: inset(0 0 100% 0);
  -webkit-transition: -webkit-clip-path 1s cubic-bezier(0.75, 0.01, 0.31, 1);
  transition: -webkit-clip-path 1s cubic-bezier(0.75, 0.01, 0.31, 1);
  transition: clip-path 1s cubic-bezier(0.75, 0.01, 0.31, 1);
  transition: clip-path 1s cubic-bezier(0.75, 0.01, 0.31, 1), -webkit-clip-path 1s cubic-bezier(0.75, 0.01, 0.31, 1);
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

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

.u-sp {
  display: none;
}
@media screen and (max-width: 600px) {
  .u-sp {
    display: block;
  }
}

.u-tab {
  display: none;
}
@media screen and (max-width: 767px) {
  .u-tab {
    display: block;
  }
}
/*# sourceMappingURL=common.css.map */