@charset "UTF-8";
/* font-weight */
/* --------------------------------------------------------------------- */
/* フォントサイズ一括指定（font-size,line-height,letter-spacing）  */
/* ※フォントサイズ小さくなりすぎ対応 14px未満は、font-sizeのpx指定を確認する  */
/* --------------------------------------------------------------------- */
body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  color: #000;
}

html {
  scroll-padding-top: 60px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%; 
}

html {
  font-size: 100%;
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}
@media screen and (min-width: 768px) {
  html {
    font-size: 1.4678899083vw;
  }
}
@media (min-width: 1090px) {
  html {
    font-size: 100%;
  }
}

a[href^="tel:"] {
  pointer-events: auto;
}
@media screen and (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}

a,
button {
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

@media (any-hover: hover) {
  a:hover,
  button:hover {
    opacity: 0.7;
  }
}
/*****************************
* 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;
  padding: 0;
}

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

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

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

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

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

/* Inherit fonts for inputs and buttons */
/* フォームリセット */
input,
button,
select,
textarea {
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

button {
  padding: 0;
  background-color: initial;
}

/* 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;
            transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
.l-inner {
  width: 100%;
  padding-right: 1.25rem;
  padding-left: 1.25rem;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .l-inner {
    max-width: 1090px;
    padding-right: 25px;
    padding-left: 25px;
  }
}

/* utility */
.u-mobile {
  display: block;
}
@media screen and (min-width: 768px) {
  .u-mobile {
    display: none;
  }
}

.u-xl {
  display: block;
}
@media screen and (min-width: 1440px) {
  .u-xl {
    display: none;
  }
}

.u-desktop {
  display: none;
}
@media screen and (min-width: 768px) {
  .u-desktop {
    display: block;
  }
}

.u-text {
  font-size: 16px;
  line-height: 1.8;
}

/* component */
/* =============================================
共通パーツ:プロジェクト選択ボタン
============================================= */
.c-project-btn {
  margin-inline: auto;
  max-width: 325px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 20px 20px 20px 70px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 80px;
  background-color: #d42124;
	flex-wrap: nowrap;
  min-width: max-content;
}

.c-project-btn__text {
  color: #FFF;
  font-size: 20px;
  font-weight: 700;
	white-space: nowrap;
}

.c-project-btn__text2 {
  color: #FFF;
  font-size: 13px;
  font-weight: 700;
	white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .c-project-btn__text2 {
  color: #FFF;
  font-size: 20px;
  font-weight: 700;
	white-space: nowrap;
}
}



.c-project-btn__icon {
  margin-left: 35px;
  display: -ms-grid;
  display: grid;
  place-content: center;
  width: 30px;
  height: 30px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: #fff;
}

/* =============================================
共通：セクションタイトル
============================================= */
@media screen and (min-width: 768px) {
  .c-title-enImg img {
    -o-object-fit: contain;
       object-fit: contain;
    width: 100%;
    height: 100%;
  }
}

.c-section-title {
  color: #FFF;
  font-size: 20px;
  font-weight: 700;
  padding-bottom: 10px;
  margin-top: 5px;
  border-bottom: 1px solid #fff;
}
@media screen and (min-width: 768px) {
  .c-section-title {
    font-size: 24px;
    padding-bottom: 20px;
  }
}

/* =============================================
ctaボタン
============================================= */
.c-cta {
  position: relative;
  padding-top: 30px;
  padding-bottom: 40px;
}
@media screen and (min-width: 768px) {
  .c-cta {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}

.c-cta::after {
  position: absolute;
  content: "";
  display: inline-block;
  background-image: url(../images/lp/cta-bg.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}

@media screen and (min-width: 768px) {
  .c-cta__flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 3.125rem;
  }
}
@media screen and (min-width: 1440px) {
  .c-cta__flex {
    gap: 7.1875rem;
  }
}

.c-cta__btn {
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .c-cta__btn {
    margin-top: 0;
    -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
  }
}

.c-cta__text {
  color: #1D0000;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 140%;
  line-height: 1.4;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .c-cta__text {
    font-size: 20px;
    text-align: left;
  }
}

.c-cta__text span {
  font-size: 1.625rem;
  line-height: 1.4;
}
@media screen and (min-width: 768px) {
  .c-cta__text span {
    font-size: 30px;
  }
}

@media screen and (min-width: 768px) {
  .c-cta.c-cta--second {
    padding-bottom: 70px;
  }
}

.c-cta__heading {
  margin-inline: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #d42124;
  font-size: 28px;
  font-weight: 700;
  padding-bottom: 10px;
  border-bottom: 1px solid #d42124;
}
@media screen and (min-width: 768px) {
  .c-cta__heading {
    font-size: 30px;
  }
}

.c-cta__text-second {
  margin-top: 20px;
  color: #1D0000;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .c-cta__text-second {
    font-size: 20px;
  }
}
@media screen and (min-width: 959px) {
  .c-cta__text-second {
    margin-top: 0;
    text-align: left;
  }
}

@media screen and (min-width: 959px) {
  .c-cta__flex-02 {
    margin-top: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 1.875rem;
  }
}

@media screen and (min-width: 768px) {
  .c-cta__btn.c-cta__btn-second {
    margin-top: 20px;
  }
}
@media screen and (min-width: 959px) {
  .c-cta__btn.c-cta__btn-second {
    margin-top: 0;
  }
}

.c-cta.c-cta--third {
  padding-top: 50px;
  padding-bottom: 50px;
}

.c-cta--third .c-cta__btn {
  margin-top: 0;
}

/* =============================================
flow-list　/○に縦のライン
============================================= */
.c-flow-list {
  position: relative;
}

.c-flow-list::before {
  content: "";
  position: absolute;
  top: 0;
  left: 3.5px;
  width: 4px;
  height: 100%;
  background-color: #EAEAEA;
  border-radius: 9999px;
}
@media screen and (min-width: 768px) {
  .c-flow-list::before {
    left: 4px;
    height: 97%;
  }
}

.c-flow-list__item {
  position: relative;
}

.c-flow-list__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 11px;
  height: 11px;
  border: 2px solid #D42124;
  border-radius: 50%;
  background: #fff;
  -ms-flex-negative: 0;
}
@media screen and (min-width: 768px) {
  .c-flow-list__item::before {
    width: 13px;
    height: 13px;
  }
}

/* =============================================
case画像
============================================= */
@media screen and (min-width: 768px) {
  .c-case-num {
    aspect-ratio: 210/70;
    max-width: 210px;
  }
}

@media screen and (min-width: 768px) {
  .c-case-num img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
  }
}

/* セクション共通クラスJS用 */
/* 共通クラスのスタイル */
.c-sections {
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  -webkit-transition: opacity 0.6s, -webkit-transform 0.6s;
  transition: opacity 0.6s, -webkit-transform 0.6s;
  transition: opacity 0.6s, transform 0.6s;
  transition: opacity 0.6s, transform 0.6s, -webkit-transform 0.6s;
}

.c-sections.is-active {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

/* project */
/* =============================================
footer
============================================= */
.p-footer {
  background-color: #000;
}

.footer__inner {
  padding: 2.5rem 1.875rem 1.875rem 1.875rem;
}
@media screen and (min-width: 768px) {
  .footer__inner {
    padding: 4.375rem 1.875rem 3.75rem 1.875rem;
  }
}

.p-footer__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

@media screen and (min-width: 768px) {
  .p-footer__logo img {
    width: 130px;
    height: 31px;
  }
}

.p-footer__copyright {
  text-align: right;
  color: #FFF;
  font-size: 12px;
  margin-top: 2px;
}
@media screen and (min-width: 768px) {
  .p-footer__copyright {
    font-size: 16px;
  }
}

/* =============================================
header
============================================= */
.p-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  z-index: 3000;
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}
@media screen and (min-width: 768px) {
  .p-header {
    height: 80px;
  }
}

/* アニメーション */
.p-header.hide {
  -webkit-transform: translateY(-60px);
          transform: translateY(-60px);
}
@media screen and (min-width: 768px) {
  .p-header.hide {
    -webkit-transform: translateY(-80px);
            transform: translateY(-80px);
  }
}

.p-header__inner {
  padding: 0.625rem 1.25rem;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background: rgba(255, 255, 255, 0.8);
}
@media screen and (min-width: 768px) {
  .p-header__inner {
    padding: 1.25rem 3.75rem;
  }
}

.p-header__logo {
  max-width: 4.375rem;
}
@media screen and (min-width: 768px) {
  .p-header__logo {
    max-width: 6.875rem;
  }
}

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

.p-header__catBtn a {
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  border-radius: 40px;
  padding: 10px 30px;
  background: #d42124;
}

/* =============================================
予約完了画面
============================================= */
body.page-thanks {
  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;
  /* 画面の高さに合わせる */
}

body.page-thanks main#thanks {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  /* footerを下に押し下げる */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  /* 中央寄せしたいなら */
}

/* =============================================
fv
============================================= */
.p-fv {
  position: relative;
}

.p-fv__img {
  aspect-ratio: 375/591;
}
@media screen and (min-width: 768px) {
  .p-fv__img {
    aspect-ratio: 1440/850;
  }
}

.p-fv__img img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 768px) {
  .p-fv__img img {
    height: 100%;
  }
}

.p-fv__inner {
  position: absolute;
  top: 0;
  padding-top: 90px;
  padding-left: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-fv__inner {
    padding-top: 8.75rem;
    padding-left: 6.25rem;
  }
}
@media screen and (min-width: 1440px) {
  .p-fv__inner {
    padding-top: 10rem;
    padding-left: 12.5rem;
  }
}

.p-fv__title {
  color: #FFF;
  font-size: 3.875rem;
  font-style: normal;
  font-weight: 900;
  line-height: 110%;
  letter-spacing: -0.08em;
  white-space: nowrap;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-fv__title {
    font-size: clamp(5rem, 1.786rem + 6.696vi, 7.813rem);
  }
}
@media screen and (min-width: 1440px) {
  .p-fv__title {
    font-size: 7.8125rem;
  }
}

.p-fv__title span {
  font-size: 5rem;
}
@media screen and (min-width: 768px) {
  .p-fv__title span {
    font-size: clamp(6.25rem, 1.821rem + 9.226vi, 10.125rem);
  }
}
@media screen and (min-width: 1440px) {
  .p-fv__title span {
    font-size: 10.125rem;
  }
}

.p-fv__title::after {
  content: "";
  position: absolute;
  display: inline-block;
  background-image: url(../images/lp/fv-contents.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 118px;
  height: 64px;
  bottom: 5px;
  left: 47%;
}
@media screen and (min-width: 768px) {
  .p-fv__title::after {
    width: 10.625rem;
    height: 7.1875rem;
    top: -6px;
    left: 60%;
  }
}
@media screen and (min-width: 1440px) {
  .p-fv__title::after {
    width: 13.25rem;
    height: 7.1875rem;
    top: 7px;
    left: 55%;
  }
}

.p-fv__subtitle {
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .p-fv__subtitle {
    margin-top: 1.25rem;
    max-width: 18.75rem;
  }
}
@media screen and (min-width: 1440px) {
  .p-fv__subtitle {
    margin-top: 3.125rem;
    aspect-ratio: 424/148;
    max-width: 424px;
  }
}

@media screen and (min-width: 768px) {
  .p-fv__subtitle img {
    width: 100%;
    height: auto;
    -o-object-fit: contain;
       object-fit: contain;
  }
}

/* =============================================
なぜ不動産エージェントなのか
============================================= */
.p-agent {
  position: relative;
  padding-top: 2.9375rem;
  padding-bottom: 5rem;
  overflow-x: hidden;
}
@media screen and (min-width: 768px) {
  .p-agent {
    padding-top: 6.25rem;
    padding-bottom: 9.375rem;
  }
}

.p-agent__top::after {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  display: inline-block;
	
  background: url("../images/lp/agent-bk-pc.webp") top center/cover no-repeat;
  width: 100%;
  height: 50%;
  z-index: -2;
}
@media screen and (min-width: 768px) {
  .p-agent__top::after {
	background: url("../images/lp/agent-bk-pc.webp") top center/cover no-repeat;
    height: 100%;
  }
}

.p-agent::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(22%, rgba(153, 153, 153, 0.15)), color-stop(40%, rgb(153, 153, 153)));
  background: linear-gradient(180deg, rgba(153, 153, 153, 0.15) 22%, rgb(153, 153, 153) 40%);
}
@media screen and (min-width: 768px) {
  .p-agent::before {
    background: -webkit-gradient(linear, left top, left bottom, color-stop(32%, rgba(153, 153, 153, 0.15)), color-stop(80%, rgb(153, 153, 153)));
    background: linear-gradient(180deg, rgba(153, 153, 153, 0.15) 32%, rgb(153, 153, 153) 80%);
  }
}

.p-agent__title {
  color: rgba(255, 255, 255, 0.6);
  font-size: 2.75rem;
  font-weight: 900;
  line-height: 1.0909090909;
  white-space: nowrap;
  margin-left: -7px;
}
@media screen and (min-width: 768px) {
  .p-agent__title {
    font-size: 60px;
    font-size: 4.625rem;
    font-weight: 900;
    line-height: 110%;
    margin-left: 0;
  }
}
@media screen and (min-width: 1440px) {
  .p-agent__title {
    text-align: center;
    max-width: 1075px;
    margin-inline: auto;
  }
}

.p-agent__highlight {
  margin-top: 50px;
}
@media screen and (min-width: 768px) {
  .p-agent__highlight {
    margin-top: 63px;
  }
}

.p-agent__highlight-text {
  font-size: 24px;
  font-weight: 700;
  background-color: #fff;
  padding: 1px 5px;
  border: 2px solid #D42124;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (min-width: 768px) {
  .p-agent__highlight-text {
    font-size: 1.875rem;
  }
}

.p-agent__highlight-text:not(:first-child) {
  margin-top: 8px;
}

.p-agent__text {
  margin-top: 16px;
  color: #FFF;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .p-agent__text {
    font-size: 18px;
    line-height: 1.7777777778;
  }
}

.p-agent__text.p-agent__text--02 {
  margin-top: 28px;
}
.p-agent__text.p-agent__text--bold {
  margin-top: 18px;
  font-weight: 700;
}

.p-agent__text.p-agent__text--bold:not(:first-child) {
  margin-top: 2.5em;
}

/* =============================================
コミッション率
============================================= */
.p-commission {
  margin-top: 36px;
  background: #fff;
  border-radius: 10px;
  border: 2px solid #B63333;
}
@media screen and (min-width: 768px) {
  .p-commission {
    max-width: 505px;
  }
}

.p-commission__inner {
  padding: 20px 14px 30px 14px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.p-commission__title {
  text-align: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  color: #D42124;
  font-size: 22px;
  font-weight: 700;
  padding: 0 20px 10px 20px;
  border-bottom: 2px solid #B63333;
}
@media screen and (min-width: 768px) {
  .p-commission__title {
    font-size: 28px;
  }
}

.p-commission__list {
  padding-top: 20px;
}
@media screen and (min-width: 768px) {
  .p-commission__list {
    padding-top: 1.875rem;
  }
}

.p-commission__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.p-commission__item:not(:first-child) {
  margin-top: 15px;
}
@media screen and (min-width: 768px) {
  .p-commission__item:not(:first-child) {
    margin-top: 6px;
  }
}

.p-commission__label {
  color: #1D0000;
  font-size: 16px;
  font-weight: 700;
  -ms-flex-item-align: end;
      align-self: flex-end;
  position: relative;
  top: -2px;
}
@media screen and (min-width: 768px) {
  .p-commission__label {
    top: 4px;
    font-size: 21px;
  }
}

.p-commission__rate {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5em;
}

.p-commission__number {
  display: inline-block;
  margin-left: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-commission__number {
    max-width: 115px;
    height: 75px;
  }
}

@media screen and (min-width: 768px) {
  .p-commission__number img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
  }
}

.p-commission__tax {
  color: #1D0000;
  font-size: 12px;
  font-weight: 700;
  -ms-flex-item-align: end;
      align-self: flex-end;
}

/* =============================================
　features/ACREならではの8つの特色
============================================= */
.p-features {
  background-color: #D42124;
  padding: 40px 0 145px;
  overflow-x: hidden;
}
@media screen and (min-width: 768px) {
  .p-features {
    padding: 5.625rem 0 15.625rem;
  }
}

.p-features__bg {
  white-space: nowrap;
  width: 105%;
  margin-left: -6px;
  position: relative;
  top: 20px;
}
@media screen and (min-width: 768px) {
  .p-features__bg {
    margin-left: 0;
    max-width: 1090px;
    padding: 0 20px;
    margin-inline: auto;
    aspect-ratio: 1650/122;
    width: 100%;
    top: 43px;
  }
}

@media screen and (min-width: 768px) {
  .p-features__bg img {
    width: 100%;
    height: auto;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

@media screen and (min-width: 768px) {
  .p-features___title-enImg {
    aspect-ratio: 541/140;
    max-width: 541px;
  }
}

.p-features__lead {
  color: #FFF;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.8;
  margin-top: 30px;
}
@media screen and (min-width: 768px) {
  .p-features__lead {
    font-size: 20px;
    margin-top: 60px;
  }
}

.p-features__item {
  border-radius: 10px;
  background: #fff;
  position: relative;
  padding: 30px 20px 20px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
@media screen and (min-width: 768px) {
  .p-features__item {
    padding: 3.125rem 3.125rem 1.875rem 3.125rem;
    gap: 0;
  }
}

.p-features__wrap {
  margin-top: 30px;
  padding-right: 10px;
  padding-left: 10px;
}

.p-features__number {
  position: absolute;
  background-color: #D42124;
  border-radius: 50%;
  display: -ms-grid;
  display: grid;
  place-content: center;
  width: 89px;
  height: 89px;
  top: -20px;
  left: -30px;
}
@media screen and (min-width: 768px) {
  .p-features__number {
    width: 8.3125rem;
    height: 8.3125rem;
    top: -20px;
    left: -30px;
  }
}

@media screen and (min-width: 768px) {
  .p-features__number-img {
    aspect-ratio: 60/65;
    width: 3.75rem;
  }
}

@media screen and (min-width: 768px) {
  .p-features__number-img img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
    padding-top: 10px;
  }
}

.p-features__category {
  color: #D42124;
  font-size: 17px;
  letter-spacing: -0.03em;
  white-space: nowrap;
	
  font-weight: 700;
  line-height: 1.5;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding-left: 50px;
}
@media screen and (min-width: 600px) {
  .p-features__category {
    margin-inline: auto;
    padding-left: 0;
  }
}
@media screen and (min-width: 768px) {
  .p-features__category {
    font-size: 1.875rem;
    text-align: center;
  }
}

.p-features__img {
  margin-top: 10px;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .p-features__img {
    max-width: 830px;
    aspect-ratio: 830/400;
    margin-top: 50px;
  }
}

.p-features__img > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-features__img.p-features__img--up {
  margin-top: 35px;
}
@media screen and (min-width: 768px) {
  .p-features__img.p-features__img--up {
    margin-top: 50px;
  }
}

.p-features__img img {
  margin-inline: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-features__catch {
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .p-features__catch {
    font-size: 23.5px;
    margin-top: 47px;
  }
}

@media screen and (min-width: 768px) {
  .p-features__text {
    margin-top: 20px;
  }
}

/* =============================================
swiper設定
============================================= */
.swiper-container {
  position: relative;
  margin-top: 30px;
}
@media screen and (min-width: 768px) {
  .swiper-container {
    max-width: 61.875rem;
    margin-inline: auto;
    margin-top: 60px;
  }
}

.swiper {
  padding: 0 30px;
}

/* 前へ次への矢印カスタマイズ */
.swiper-button-prev,
.swiper-button-next {
  height: 18px;
  width: 10px;
  height: 26px;
  width: 15px;
}
@media screen and (min-width: 768px) {
  .swiper-button-prev,
  .swiper-button-next {
    height: 26px;
    width: 13px;
  }
}

/* 前へ次への矢印カスタマイズ */
.swiper-button-prev::after,
.swiper-button-next::after {
  background-repeat: no-repeat;
  background-size: cover;
  content: "";
  height: 18px;
  width: 10px;
  position: relative;
  top: 13px;
}
@media screen and (min-width: 768px) {
  .swiper-button-prev::after,
  .swiper-button-next::after {
    height: 26px;
    width: 13px;
    top: 5px;
  }
}

/* 前への矢印カスタマイズ */
.swiper-button-prev::after {
  background-image: url(../images/lp/swiper-arrow-left.svg);
}
@media screen and (min-width: 768px) {
  .swiper-button-prev::after {
    left: -30px;
  }
}
@media screen and (min-width: 1440px) {
  .swiper-button-prev::after {
    left: -35px;
  }
}

/* 次への矢印カスタマイズ */
.swiper-button-next::after {
  background-image: url(../images/lp/swiper-arrow.svg);
}
@media screen and (min-width: 768px) {
  .swiper-button-next::after {
    right: -30px;
  }
}
@media screen and (min-width: 1440px) {
  .swiper-button-next::after {
    right: -35px;
  }
}

/* 画像サイズ調整 */
.swiper-slide img {
  height: auto;
  width: 100%;
}

/* ページネーション */
.swiper-pagination-bullets.swiper-pagination-horizontal {
  position: absolute;
  bottom: -80px;
}
@media screen and (min-width: 768px) {
  .swiper-pagination-bullets.swiper-pagination-horizontal {
    bottom: -120px;
  }
}

/* ページネーション共通のスタイル */
.swiper-pagination-bullet {
  background-color: #E27F7F;
  font-family: "Noto Sans JP", serif;
  color: #fff;
  font-size: 10px;
  width: 25px;
  height: 25px;
  padding: 5px;
}
@media screen and (min-width: 768px) {
  .swiper-pagination-bullet {
    font-size: 16px;
    width: 38px;
    height: 38px;
  }
}

/* 現在のページネーションのスタイル */
.swiper-pagination-bullet-active {
  background-color: #fff;
  color: #D42124;
  width: 25px;
  height: 25px;
  font-size: 10px;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .swiper-pagination-bullet-active {
    font-size: 16px;
    width: 38px;
    height: 38px;
  }
}

/* ページネーションの余白(位置) */
.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 4px 20px;
}
@media screen and (min-width: 768px) {
  .swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
  .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 10px 20px;
  }
}

.swiper-slide {
  height: auto;
  display: -ms-grid;
  display: grid;
}

.swiper-pagination-bullet {
  opacity: 1;
}

.swiper-pagination-bullet-active {
  /*アクティブなドットの透過度を1にする*/
  opacity: 1;
}

/* =============================================
person/求める不動産エージェント像
============================================= */
.p-person__head {
  padding-top: 50px;
  padding-bottom: 145px;
  clip-path: polygon(0 0, 100% 0, 100% 91%, 50% 95%, 0 91%);
}
@media screen and (min-width: 768px) {
  .p-person__head {
    padding-top: 9.375rem;
    padding-bottom: 242px;
    clip-path: polygon(0 0, 100% 0, 100% 78.5%, 50% 95%, 0 78.5%);
  }
}

.p-person__head {
  position: relative;
}

.p-person__head::after {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  display: inline-block;
  background: url("../images/lp/person-bk-pc.webp") top center/cover no-repeat;
  width: 100%;
  height: 60%;
  z-index: -2;
}
@media screen and (min-width: 768px) {
  .p-person__head::after {
    height: 100%;
  }
}

.p-person__head::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(33%, rgba(153, 153, 153, 0.35)), color-stop(53%, rgb(153, 153, 153)));
  background: linear-gradient(180deg, rgba(153, 153, 153, 0.35) 33%, rgb(153, 153, 153) 53%);
}
@media screen and (min-width: 768px) {
  .p-person__head::before {
    background: -webkit-gradient(linear, left top, left bottom, color-stop(32%, rgba(153, 153, 153, 0.35)), color-stop(65%, rgb(153, 153, 153)));
    background: linear-gradient(180deg, rgba(153, 153, 153, 0.35) 32%, rgb(153, 153, 153) 65%);
  }
}

@media screen and (min-width: 768px) {
  .p-person___title-enImg {
    aspect-ratio: 436/140;
    max-width: 436px;
  }
}

.p-person__heading {
  margin-top: 30px;
}

.p-person__message {
  color: #fff;
  font-weight: 700;
  font-size: 24px;
}
@media screen and (min-width: 768px) {
  .p-person__message {
    font-size: 1.875rem;
  }
}

.p-person__text-body {
  margin-top: 33px;
}
@media screen and (min-width: 768px) {
  .p-person__text-body {
    margin-top: 45px;
  }
}

.p-person__text-body p {
  font-weight: 500;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .p-person__text-body p {
    font-size: 18px;
  }
}

.p-person__text-body p:not(:first-child) {
  margin-top: 1.8em;
}
@media screen and (min-width: 768px) {
  .p-person__text-body p:not(:first-child) {
    margin-top: 0.5em;
  }
}

.p-person .p-person__text-body .p-person__strong {
  font-size: 18px;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .p-person .p-person__text-body .p-person__strong {
    margin-top: 20px;
    font-size: 22px;
  }
}

.p-person__color {
  color: #D42124;
}

.p-recruit {
  margin-top: -30px;
}
@media screen and (min-width: 768px) {
  .p-recruit {
    margin-top: 0;
  }
}

.p-recruit__block-wrap {
  padding-bottom: 50px;
}
@media screen and (min-width: 768px) {
  .p-recruit__block-wrap {
    padding-bottom: 9.375rem;
  }
}

.p-recruit__block {
  padding-top: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #E7E7E7;
}
@media screen and (min-width: 768px) {
  .p-recruit__block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 50px;
  }
}

.p-recruit__block:last-of-type {
  padding-bottom: 0;
  border-bottom: none;
}

@media screen and (min-width: 768px) {
  .p-recruit__flex {
    width: 100%;
  }
}

.p-recruit__label {
  color: #D42124;
  font-size: 20px;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .p-recruit__label {
    width: 30%;
  }
}
@media screen and (min-width: 1024px) {
  .p-recruit__label {
    width: 24%;
  }
}

.p-recruit__title {
  margin-top: 10px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .p-recruit__title {
    margin-top: 0;
    font-size: 18px;
    line-height: 1.7777777778;
  }
}

.p-recruit__text {
  margin-top: 9px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .p-recruit__text {
    font-size: 16px;
    line-height: 1.5;
    margin-top: 5px;
  }
}

.p-recruit__item + .p-recruit__item {
  margin-top: 16px;
}

.p-recruit__plan {
  margin-top: 12px;
}

.p-recruit__plan + .p-recruit__plan {
  margin-top: 20px;
}

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

.p-recruit__plan-title {
  color: #FFF;
  font-size: 14px;
  font-weight: 700;
  background: #000;
  padding: 0 10px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.p-recruit__plan-comment-wrap,
.p-recruit__block-comment-wrap {
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  text-align: right;
}
@media screen and (min-width: 768px) {
  .p-recruit__plan-comment-wrap,
  .p-recruit__block-comment-wrap {
    margin-top: 25px;
  }
}

.p-recruit__plan-comment,
.p-recruit__block-comment {
  font-size: 10px;
  margin-left: 5px;
}
@media screen and (min-width: 768px) {
  .p-recruit__plan-comment,
  .p-recruit__block-comment {
    font-size: 12px;
  }
}

.p-recruit__plan-list,
.p-recruit__item-list {
  margin-top: 10px;
}

.p-recruit__plan-list li,
.p-recruit__item-list li {
  position: relative;
  padding-left: 0.7em;
  font-size: 14px;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .p-recruit__plan-list li,
  .p-recruit__item-list li {
    font-size: 16px;
    line-height: 1.4;
    padding-left: 1.2em;
  }
}

.p-recruit__plan-list li::before,
.p-recruit__item-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  /* 中央揃え */
  width: 7px;
  height: 7px;
  border: 2px solid #D42124;
  /* 外枠の色と太さ */
  border-radius: 50%;
  /* 丸くする */
  background: #fff;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.p-recruit__plan-list--02 li::before {
  display: none;
}

.p-recruit__plan-list--02 li {
  padding-left: 1em;
  text-indent: -1em;
}

.p-recruit__office {
  font-size: 13px;
  line-height: 1.2;
}
@media screen and (min-width: 768px) {
  .p-recruit__office {
    font-size: 16px;
  }
}

.p-recruit__item-small {
  font-size: 12px;
}
@media screen and (min-width: 768px) {
  .p-recruit__item-small {
    font-size: 16px;
  }
}

.p-recruit__item--model li:not(:first-child) {
  margin-top: 1.5em;
}
@media screen and (min-width: 768px) {
  .p-recruit__item--model li:not(:first-child) {
    margin-top: 1.7em;
  }
}

.p-recruit__item--mt {
  margin-top: 10px;
}

/* =============================================
1日のスケジュール例
============================================= */
.p-schedule__top {
  position: relative;
  padding-top: 50px;
  padding-bottom: 40px;
}
@media screen and (min-width: 768px) {
  .p-schedule__top {
    padding-top: 91px;
    padding-bottom: 9.375rem;
  }
}

.p-schedule__title {
  border-bottom: 1px solid #fff;
}

@media screen and (min-width: 768px) {
  .p-schedule___title-enImg {
    aspect-ratio: 566/140;
    max-width: 566px;
  }
}

.p-schedule__top::after {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  display: inline-block;
  background-image: url(../images/lp/schedule-bk-sp.webp);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 100%;
  height: 100%;
  z-index: -2;
}
@media screen and (min-width: 768px) {
  .p-schedule__top::after {
    background-image: url(../images/lp/schedule-bk-pc.webp);
  }
}

.p-schedule__top::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.7)));
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 100%);
}
@media screen and (min-width: 768px) {
  .p-schedule__top::before {
    background: linear-gradient(266deg, rgba(0, 0, 0, 0) -13.25%, rgb(0, 0, 0) 90.27%);
  }
}

.p-schedule__profile {
  margin-top: 75px;
}
@media screen and (min-width: 768px) {
  .p-schedule__profile {
    margin-top: 23px;
  }
}

.p-profile__list {
  padding-bottom: 5px;
  padding-right: 10px;
  border-bottom: 1px dashed #FFF;
  margin-left: 9%;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (min-width: 768px) {
  .p-profile__list {
    margin-left: 0;
  }
}

.p-profile__item {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .p-profile__item {
    font-size: 20px;
  }
}

.p-schedule__content {
  padding: 30px 10px 80px 10px;
}
@media screen and (min-width: 768px) {
  .p-schedule__content {
    padding: 80px 0px 100px 0px;
  }
}

.p-schedule__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 18px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (min-width: 600px) {
  .p-schedule__flex {
    gap: 100px;
  }
}
@media screen and (min-width: 768px) {
  .p-schedule__flex {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 3.75rem;
  }
}
@media screen and (min-width: 1440px) {
  .p-schedule__flex {
    gap: 0;
  }
}

.p-schedule__list {
  padding-bottom: 10px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .p-schedule__list {
    -ms-flex-negative: 1;
        flex-shrink: 1;
    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: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
@media screen and (min-width: 768px) {
  .p-schedule__list {
    -ms-flex-negative: 1;
        flex-shrink: 1;
  }
}

.p-schedule__list li:not(:first-child) {
  margin-top: 29px;
}
@media screen and (min-width: 768px) {
  .p-schedule__list li:not(:first-child) {
    margin-top: 60px;
  }
}
@media screen and (min-width: 1440px) {
  .p-schedule__list li:not(:first-child) {
    margin-top: 120px;
  }
}

.p-schedule__item {
  padding-left: 20px;
}
@media screen and (min-width: 768px) {
  .p-schedule__item {
    padding-left: 2.6875rem;
  }
}

.p-schedule__unit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4px;
}
@media screen and (min-width: 768px) {
  .p-schedule__unit {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 2.1875rem;
  }
}

.p-schedule__unit span {
  display: inline-block;
  width: 60px;
  display: -ms-grid;
  display: grid;
  place-content: center;
  color: #FFF;
  font-family: "Noto Sans JP", serif;
  font-size: 18px;
  font-weight: 700;
  background-color: #D42124;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .p-schedule__unit span {
    width: 80px;
    font-size: 24px;
    height: 36px;
  }
}

.p-schedule__text {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4285714286;
}
@media screen and (min-width: 768px) {
  .p-schedule__text {
    font-size: 18px;
  }
}

.p-schedule__images {
  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: 70px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (min-width: 768px) {
  .p-schedule__images {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    margin-top: 0;
    gap: 2.5rem;
  }
}

.p-schedule__image {
  aspect-ratio: 150/110;
  max-width: 200px;
}
@media screen and (min-width: 768px) {
  .p-schedule__image {
    max-width: none;
  }
}
@media screen and (min-width: 1024px) {
  .p-schedule__image {
    max-width: none;
    aspect-ratio: 350/220;
  }
}

@media screen and (min-width: 768px) {
  .p-schedule__image.p-schedule__image--bg {
    aspect-ratio: 460/300;
    max-width: 460px;
  }
}

.p-schedule__image img {
  width: 100%;
  height: 100%;
  border-radius: 5px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 768px) {
  .p-schedule__image img {
    border-radius: 10px;
  }
}

.p-schedule__note {
  margin-top: 30px;
  text-align: right;
  font-size: 10px;
}
@media screen and (min-width: 768px) {
  .p-schedule__note {
    font-size: 12px;
  }
}

/* =============================================
インタビュー
============================================= */
.p-interview {
  padding-top: 3.125rem;
  padding-bottom: 5rem;
  background-color: #D42124;
}
@media screen and (min-width: 768px) {
  .p-interview {
    padding-top: 6.25rem;
    padding-bottom: 9.375rem;
  }
}

@media screen and (min-width: 768px) {
  .p-interview___title-enImg {
    aspect-ratio: 576/140;
    max-width: 576px;
  }
}

.p-interview__case {
  margin-top: 30px;
}
@media screen and (min-width: 768px) {
  .p-interview__case {
    margin-top: 60px;
  }
}

.p-interview__case-item:not(:first-child) {
  margin-top: 32px;
}
@media screen and (min-width: 768px) {
  .p-interview__case-item:not(:first-child) {
    margin-top: 60px;
  }
}

.p-interview__card {
  padding: 27px 15px;
  background: #fff;
  border-bottom: 10px;
  border-radius: 10px;
  margin-top: 5px;
}
@media screen and (min-width: 768px) {
  .p-interview__card {
    padding: 2.5rem 3.125rem 2.5rem 5rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 5rem;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.p-interview__card-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (min-width: 768px) {
  .p-interview__card-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;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    gap: 13px;
  }
}

@media screen and (min-width: 768px) {
  .p-interview__card-image {
    aspect-ratio: 135/135;
    width: 135px;
  }
}

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

.p-interview__node {
  font-size: 16px;
  font-weight: 700;
  padding-left: 24px;
}
@media screen and (min-width: 768px) {
  .p-interview__node {
    font-size: 18px;
  }
}

.p-interview__node:not(:first-child) {
  margin-top: 10px;
}
@media screen and (min-width: 768px) {
  .p-interview__node:not(:first-child) {
    margin-top: 4px;
  }
}

.p-interview__node.p-interview__node--active {
  padding: 2px 10px;
  background-color: #D42124;
  color: #fff;
  width: 62px;
  margin-left: 20px;
}
@media screen and (min-width: 768px) {
  .p-interview__node.p-interview__node--active {
    width: 67px;
  }
}

.p-interview__card-textBody {
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .p-interview__card-textBody {
    margin-top: 0;
    max-width: 43.125rem;
  }
}

.p-interview__card-textBody p + p {
  margin-top: 2em;
}

.p-interview__info,
.p-interview__node {
  position: relative;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
}

.p-interview__info::before {
  content: "";
  position: absolute;
  top: 0;
  left: 4.2px;
  width: 2px;
  height: 85%;
  background-color: #E7E7E7;
  border-radius: 9999px;
}

.p-interview__info.p-interview__info--second::before {
  height: 75%;
}

.p-interview__node::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 11px;
  height: 11px;
  border: 2px solid #000;
  border-radius: 50%;
  background: #fff;
  -ms-flex-negative: 0;
}

.p-interview__node--active::before {
  border: 2px solid #D42124;
  margin-left: -20px;
}

/* =============================================
イベント
============================================= */
.p-event {
  padding-top: 50px;
  padding-bottom: 54px;
}
@media screen and (min-width: 768px) {
  .p-event {
    padding-top: 6.25rem;
    padding-bottom: 9.375rem;
  }
}

@media screen and (min-width: 768px) {
  .p-event___title-enImg img {
    aspect-ratio: 343/140;
    max-width: 343px;
  }
}

.p-event__title.c-section-title {
  color: #D42124;
  border-bottom: 1px solid #1D0000;
}

.p-event__wrap01 {
  margin-top: 30px;
}
@media screen and (min-width: 768px) {
  .p-event__wrap01 {
    margin-top: 3.75rem;
  }
}

.p-event__wrap02 {
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .p-event__wrap02 {
    margin-top: 3.75rem;
  }
}

.p-event__lead {
  font-size: 22px;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .p-event__lead {
    font-size: 1.875rem;
  }
}

.p-event__list {
  margin-top: 25px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 15px 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}
@media screen and (min-width: 768px) {
  .p-event__list {
    gap: 1.875rem;
  }
}

.p-event__caption {
  margin-top: 14px;
  color: #D42124;
  font-size: 14px;
  font-weight: 700;
  padding-bottom: 4px;
  border-bottom: 1px solid #000;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .p-event__caption {
    font-size: 18px;
    margin-top: 20px;
  }
}

@media screen and (min-width: 768px) {
  .p-event__img {
    aspect-ratio: 505/320;
  }
}

.p-event__img img {
  margin-inline: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (min-width: 768px) {
  .p-event__img img {
    border-radius: 10px;
    width: 100%;
    height: 100%;
  }
}

/* =============================================
成約事例
============================================= */
.p-case {
  position: relative;
  padding-top: 50px;
  padding-bottom: 80px;
}
@media screen and (min-width: 768px) {
  .p-case {
    padding-top: 6.25rem;
    padding-bottom: 10rem;
  }
}

.p-case__top::after {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  display: inline-block;
	
  background: url("../images/lp/case-bk-sp.webp") top -20px center/cover no-repeat;
  width: 100%;
  height: 38%;
  z-index: -2;
}
@media screen and (min-width: 500px) {
  .p-case__top::after {
	background: url("../images/lp/case-bk-pc.webp") top -5px center/cover no-repeat;
  }
}

.p-case::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, rgba(153, 153, 153, 0.15)), color-stop(40%, rgb(153, 153, 153)));
  background: linear-gradient(180deg, rgba(153, 153, 153, 0.15) 10%, rgb(153, 153, 153) 40%);
}
@media screen and (min-width: 768px) {
  .p-case::before {
    background: -webkit-gradient(linear, left top, left bottom, color-stop(20%, rgba(153, 153, 153, 0.15)), color-stop(38%, rgb(153, 153, 153)));
    background: linear-gradient(180deg, rgba(153, 153, 153, 0.15) 20%, rgb(153, 153, 153) 38%);
  }
}

.p-case__lead {
  margin-top: 30px;
  color: #FFF;
  font-size: 22px;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .p-case__lead {
    font-size: 1.875rem;
    margin-top: 60px;
  }
}

.p-case__list {
  margin-top: 30px;
}
@media screen and (min-width: 768px) {
  .p-case__list {
    margin-top: 60px;
  }
}

.p-case__case-item:not(:first-child) {
  margin-top: 30px;
}
@media screen and (min-width: 768px) {
  .p-case__case-item:not(:first-child) {
    margin-top: 4.5625rem;
  }
}

@media screen and (min-width: 768px) {
  .p-case__title-enImg {
    aspect-ratio: 642/140;
    max-width: 642px;
  }
}

.p-case__card {
  margin-top: 5px;
  padding: 1.875rem 1.25rem;
  border-radius: 10px;
  background: #fff;
}
@media screen and (min-width: 768px) {
  .p-case__card {
    padding: 2.5rem 3.125rem 2.5rem 3.125rem;
  }
}

.p-case__card-title {
  color: #D42124;
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  padding-bottom: 10px;
  border-bottom: 1px solid #D42124;
}
@media screen and (min-width: 768px) {
  .p-case__card-title {
    font-size: 1.875rem;
    letter-spacing: 0.05em;
  }
}

.p-case__card-flex {
  margin-top: 15px;
}
@media screen and (min-width: 768px) {
  .p-case__card-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 2rem;
    margin-top: 46px;
  }
}

@media screen and (min-width: 768px) {
  .p-case__detail {
    width: 50%;
    position: relative;
    padding-right: 2rem;
  }
}

@media screen and (min-width: 768px) {
  .p-case__detail::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 2px;
    height: 100%;
    background-image: repeating-linear-gradient(to bottom, #1D0000, #1D0000 5px, transparent 5px, transparent 10px);
  }
}

.p-case__detail p {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  position: relative;
  padding-left: 0.7em;
}
@media screen and (min-width: 768px) {
  .p-case__detail p {
    font-size: 18px;
  }
}

.p-case__detail p::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  /* 中央揃え */
  width: 7px;
  height: 7px;
  border: 2px solid #D42124;
  /* 外枠の色と太さ */
  border-radius: 50%;
  /* 丸くする */
  background: #fff;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .p-case__detail p::before {
    width: 8px;
    height: 8px;
  }
}

.p-case__detail span {
  font-size: 12px;
  font-weight: 400;
  display: block;
}
@media screen and (min-width: 768px) {
  .p-case__detail span {
    font-size: 14px;
  }
}

.p-case__detail p:nth-of-type(2) {
  margin-top: 10px;
}
@media screen and (min-width: 768px) {
  .p-case__detail p:nth-of-type(2) {
    margin-top: 22px;
  }
}

.p-case__description {
  margin-top: 20px;
  font-size: 14px;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .p-case__description {
    margin-top: 10px;
    font-size: 16px;
    width: 50%;
  }
}

.p-case__point {
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .p-case__point {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 2.1875rem;
    margin-top: 40px;
  }
}

.p-case__point-label {
  background-color: #D42124;
  width: 57px;
  padding: 0 10px;
  display: -ms-grid;
  display: grid;
  place-content: center;
  color: #FFF;
  font-size: 14px;
  font-weight: 700;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .p-case__point-label {
    font-size: 18px;
    width: 88px;
    height: 30px;
    padding: 0 20px;
  }
}

.p-case__point-text {
  margin-top: 5px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .p-case__point-text {
    font-size: 18px;
    margin-top: 0;
  }
}

/* =============================================
Q&A
============================================= */
.p-qa {
  padding-top: 3.125rem;
  padding-bottom: 4.6875rem;
}
@media screen and (min-width: 768px) {
  .p-qa {
    padding-top: 6.25rem;
    padding-bottom: 9.375rem;
  }
}

@media screen and (min-width: 768px) {
  .p-qa___title-enImg {
    aspect-ratio: 255/140;
    max-width: 255px;
  }
}

.p-qa__title {
  color: #D42124;
  border-bottom: 1px solid #000;
}

.p-faq__list {
  padding-bottom: 30px;
  border-bottom: 1px solid #E7E7E7;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 7px;
}
@media screen and (min-width: 768px) {
  .p-faq__list {
    gap: 20px;
  }
}

.p-faq__list-wrap {
  margin-top: 30px;
}
@media screen and (min-width: 768px) {
  .p-faq__list-wrap {
    margin-top: 60px;
  }
}

.p-faq__list:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.p-faq__list:not(:first-child) {
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .p-faq__list:not(:first-child) {
    margin-top: 1.75rem;
  }
}

.p-faq__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}

.p-faq__text {
  font-size: 14px;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .p-faq__text {
    font-size: 16px;
  }
}

.p-faq__text-answer {
  font-size: 16px;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .p-faq__text-answer {
    font-size: 18px;
  }
}

.p-faq__icon {
  border-radius: 50%;
  display: -ms-grid;
  display: grid;
  place-content: center;
  width: 30px;
  height: 30px;
  display: block;
  padding: 2px 8px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.c-iconQ {
  background-color: #FFF;
  border: 0.5px solid #000;
}

.c-iconA {
  background-color: #D42124;
  color: #FFF;
}

/* =============================================
物件紹介先企業
============================================= */
.p-reference {
  position: relative;
  padding-top: 3.75rem;
  padding-bottom: 5rem;
}
@media screen and (min-width: 768px) {
  .p-reference {
    padding-top: 7.9375rem;
    padding-bottom: 8.75rem;
  }
}

.p-reference__top::after {
  content: "";
  display: inline-block;
  background-image: url(../images/lp/reference-bk.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 100%;
  height: 100%;
  z-index: -2;
  position: absolute;
  top: 0;
  left: 0;
}

.p-reference__top::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  /* 背景画像より上・テキストより下 */
  pointer-events: none;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.8)), to(rgba(0, 0, 0, 0.8)));
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.8) 100%);
}

.p-reference__title-enImg {
  aspect-ratio: 280/130;
  max-width: 280px;
}
@media screen and (min-width: 768px) {
  .p-reference__title-enImg {
    max-width: none;
    width: 100%;
    aspect-ratio: 1024/120;
  }
}

.p-reference__lead {
  margin-top: 26px;
  color: #FFF;
  font-size: 22px;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .p-reference__lead {
    margin-top: 3.75rem;
    font-size: 1.875rem;
  }
}

.p-reference__list {
  margin-top: 30px;
}
@media screen and (min-width: 768px) {
  .p-reference__list {
    margin-top: 3.75rem;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1.875rem 1fr 1.875rem 1fr;
    grid-template-columns: repeat(3, 1fr);
    -ms-grid-rows: auto 0 auto 0 auto 0 auto;
    grid-template-rows: repeat(4, auto);
    gap: 1.875rem;
    row-gap: 0;
        grid-template-areas: "a b c" "d e f" "g h i" "j k l";
  }
  .p-reference__list li:nth-child(1) {
    grid-area: a;
  }
  .p-reference__list li:nth-child(2) {
    grid-area: d;
  }
  .p-reference__list li:nth-child(3) {
    grid-area: g;
  }
  .p-reference__list li:nth-child(4) {
    grid-area: j;
  }
  .p-reference__list li:nth-child(5) {
    grid-area: b;
  }
  .p-reference__list li:nth-child(6) {
    grid-area: e;
  }
  .p-reference__list li:nth-child(7) {
    grid-area: h;
  }
  .p-reference__list li:nth-child(8) {
    grid-area: k;
  }
  .p-reference__list li:nth-child(9) {
    grid-area: c;
  }
  .p-reference__list li:nth-child(10) {
    grid-area: f;
  }
  .p-reference__list li:nth-child(11) {
    grid-area: i;
  }
  .p-reference__list li:nth-child(12) {
    grid-area: l;
  }
}
@media screen and (min-width: 768px){
  .p-reference__list li:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .p-reference__list li:nth-child(2) {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
  }
  .p-reference__list li:nth-child(3) {
    -ms-grid-row: 5;
    -ms-grid-column: 1;
  }
  .p-reference__list li:nth-child(4) {
    -ms-grid-row: 7;
    -ms-grid-column: 1;
  }
  .p-reference__list li:nth-child(5) {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
  }
  .p-reference__list li:nth-child(6) {
    -ms-grid-row: 3;
    -ms-grid-column: 3;
  }
  .p-reference__list li:nth-child(7) {
    -ms-grid-row: 5;
    -ms-grid-column: 3;
  }
  .p-reference__list li:nth-child(8) {
    -ms-grid-row: 7;
    -ms-grid-column: 3;
  }
  .p-reference__list li:nth-child(9) {
    -ms-grid-row: 1;
    -ms-grid-column: 5;
  }
  .p-reference__list li:nth-child(10) {
    -ms-grid-row: 3;
    -ms-grid-column: 5;
  }
  .p-reference__list li:nth-child(11) {
    -ms-grid-row: 5;
    -ms-grid-column: 5;
  }
  .p-reference__list li:nth-child(12) {
    -ms-grid-row: 7;
    -ms-grid-column: 5;
  }
}

.p-reference__list li {
  color: #FFF;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.7857142857;
}
@media screen and (min-width: 768px) {
  .p-reference__list li {
    font-size: 1.125rem;
    white-space: nowrap;
  }
}

.p-reference__list li::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #D42124;
  margin-right: 5px;
}
@media screen and (min-width: 768px) {
  .p-reference__list li::before {
    width: 8px;
    height: 8px;
    margin-right: 10px;
  }
}

.p-reference__note {
  margin-top: 23px;
  color: #FFF;
  text-align: right;
  font-size: 10px;
}
@media screen and (min-width: 768px) {
  .p-reference__note {
    font-size: 12px;
    margin-top: 3.75rem;
  }
}

/* =============================================
オンライン説明会
============================================= */
.p-online {
  padding-top: 3.125rem;
  padding-bottom: 3.125rem;
  position: relative;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .p-online {
    padding-top: 3.75rem;
    padding-bottom: 3.75rem;
  }
}

.p-online__top::after {
  content: "";
  display: inline-block;
  background-image: url(../images/lp/online-bk.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 100%;
  height: 100%;
  z-index: -2;
  position: absolute;
  top: 0;
  left: 0;
}

.p-online__pc-wrap {
  display: contents;
}
@media screen and (min-width: 768px) {
  .p-online__pc-wrap {
    display: block;
    padding-left: 8.4375rem;
  }
}

.p-online__heading-text {
  text-align: center;
  color: #FFF;
  font-size: 1.75rem;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .p-online__heading-text {
    font-size: 2.1875rem;
  }
}

.p-online__description {
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .p-online__description {
    margin-top: 3.125rem;
  }
}

.p-online__description p + p {
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .p-online__description p + p {
    margin-top: 3rem;
  }
}

.p-online__text {
  color: #FFF;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-online__text {
    font-size: 1.25rem;
    text-align: left;
  }
}

.p-online__note {
  font-size: 10px;
}
@media screen and (min-width: 768px) {
  .p-online__note {
    font-size: 0.8125rem;
  }
}

.p-online__box-wrap {
  position: relative;
  max-width: 304px;
  margin-inline: auto;
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .p-online__box-wrap {
    max-width: 41.0625rem;
    margin-left: 0;
    margin-right: 0;
    margin-top: 13px;
  }
}

.p-online__box-wrap::after {
  position: absolute;
  right: -3.125rem;
  top: -1rem;
  content: "";
  display: inline-block;
  background-image: url(../images/lp/online-img.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  z-index: 1;
  width: 60%;
  height: 250px;
}
@media screen and (min-width: 768px) {
  .p-online__box-wrap::after {
    right: -13.125rem;
    height: 30.625rem;
    top: auto;
    bottom: -70px;
  }
}

.p-online__box {
  background-color: #fff;
  padding: 8px 20px;
  border-radius: 10px 0 0 10px;
}
@media screen and (min-width: 768px) {
  .p-online__box {
    padding: 1.875rem;
  }
}

.p-online__box-text {
  color: #000;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .p-online__box-text {
    font-size: 1.5rem;
  }
}

.p-online__strong {
  color: #d42124;
  font-size: 20px;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .p-online__strong {
    font-size: 1.875rem;
  }
}

/* =============================================
応募の流れ
============================================= */
.p-flow {
  padding-top: 3.125rem;
  padding-bottom: 5rem;
}
@media screen and (min-width: 768px) {
  .p-flow {
    padding-top: 6.25rem;
    padding-bottom: 9.375rem;
  }
}

.p-flow__title {
  color: #D42124;
  border-bottom: 1px solid #000;
}

@media screen and (min-width: 768px) {
  .p-flow___title-enImg {
    aspect-ratio: 303/140;
    max-width: 303px;
  }
}

.p-flow__list {
  margin-top: 1.875rem;
  padding: 0 10px;
}
@media screen and (min-width: 768px) {
  .p-flow__list {
    margin-top: 3.5625rem;
    padding: 0;
  }
}

.p-flow__item {
  padding-left: 20px;
}
@media screen and (min-width: 768px) {
  .p-flow__item {
    padding-left: 30px;
  }
}

.p-flow__item:not(:first-child) {
  margin-top: 1.625rem;
}
@media screen and (min-width: 768px) {
  .p-flow__item:not(:first-child) {
    margin-top: 3.125rem;
  }
}

@media screen and (min-width: 768px) {
  .p-flow__step {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
  }
}

.p-flow__label {
  font-size: 16px;
  color: #FFF;
  font-weight: 700;
  padding: 2px 10px;
  display: -ms-grid;
  display: grid;
  place-content: center;
  background-color: #D42124;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (min-width: 768px) {
  .p-flow__label {
    font-size: 1.25rem;
    width: 12.5rem;
    height: 37px;
  }
}

.p-flow__text {
  margin-top: 5px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .p-flow__text {
    margin-top: 0;
    font-size: 18px;
  }
}

.p-flow__list.c-flow-list::before {
  height: 80%;
  top: 15px;
  left: 13px;
}
@media screen and (min-width: 768px) {
  .p-flow__list.c-flow-list::before {
    height: 85%;
    left: 4px;
  }
}

@media screen and (min-width: 768px) {
  .p-flow__item.c-flow-list__item::before {
    top: 15px;
  }
}

/* =============================================
応募フォーム
============================================= */
.p-contact {
  padding-top: 3.125rem;
  padding-bottom: 6.25rem;
  background-color: #D42124;
}
@media screen and (min-width: 768px) {
  .p-contact {
    padding-top: 6.25rem;
    padding-bottom: 12.5rem;
  }
}

@media screen and (min-width: 768px) {
  .p-contact___title-enImg {
    aspect-ratio: 472/140;
    max-width: 472px;
  }
}

.p-contact__form-wrap {
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .p-contact__form-wrap {
    margin-top: 2.5rem;
  }
}

#booking-package_inputFormPanel {
  padding: 1.875rem 0.625rem;
}
@media screen and (min-width: 768px) {
  #booking-package_inputFormPanel {
    padding: 3.125rem 4.375rem;
  }
}

#booking-package_inputFormPanel .book_now_button,
#booking-package_inputFormPanel .next_page_button,
#booking-package-subscription_form .book_now_button,
#booking-package_inputFormPanel .return_form_button {
  border: 1px solid #333;
  background-color: #E7E7E7;
  border-radius: 2px;
}
/*# sourceMappingURL=styles.css.map */