@charset "UTF-8";
:root {
  font-size: 16px;
  --color-text: #231815;
  --color-blue: #002469;
  --color-red: #aa1b49;
  --color-bg: #e8f1f8;
  --color-bg2: #f5f5f5;
  --color-yellow: #fce389;
}

/* ==========================================================================
   オーナー様専用ページ (p-owner-intro)
   ========================================================================== */
.p-owner-intro {
  padding: 60px 0 80px;
  text-align: left;
}
@media screen and (min-width: 1024px) {
  .p-owner-intro {
    padding: 100px 0 200px;
    text-align: center;
  }
}
.p-owner-intro__lead {
  font-size: 15px;
  line-height: 1.8;
  font-weight: 500;
  margin-bottom: 40px;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .p-owner-intro__lead {
    font-size: 25px;
    margin-bottom: 60px;
  }
}
.p-owner-intro__catch {
  display: inline-block;
  position: relative;
  padding: 20px 30px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .p-owner-intro__catch {
    padding: 30px 60px;
  }
}
.p-owner-intro__catch::before, .p-owner-intro__catch::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 15px;
  border-top: 1px solid var(--color-blue);
  border-bottom: 1px solid var(--color-blue);
}
@media screen and (min-width: 768px) {
  .p-owner-intro__catch::before, .p-owner-intro__catch::after {
    width: 30px;
  }
}
.p-owner-intro__catch::before {
  left: 0;
  border-left: 1px solid var(--color-blue);
}
.p-owner-intro__catch::after {
  right: 0;
  border-right: 1px solid var(--color-blue);
}
.p-owner-intro__catch img {
  max-width: 100%;
  width: auto;
  height: 80px;
  display: block;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .p-owner-intro__catch img {
    height: 174px;
  }
}

/* ==========================================================================
   オーナー様専用ページ ナビセクション (p-owner-nav)
   ========================================================================== */
.p-owner-nav {
  background-color: var(--color-blue);
  padding: 0 0 60px;
  position: relative;
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .p-owner-nav {
    padding: 0 0 80px;
  }
}
.p-owner-nav__man {
  text-align: center;
  margin-bottom: 0;
}
@media screen and (min-width: 1024px) {
  .p-owner-nav__man {
    margin-bottom: 40px;
  }
}
.p-owner-nav__man img {
  width: 100px;
  height: auto;
  margin: 0 auto;
  transform: translateY(-50%);
}
@media screen and (min-width: 768px) {
  .p-owner-nav__man img {
    width: 162px;
  }
}
.p-owner-nav__cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 40px;
}
@media screen and (min-width: 768px) {
  .p-owner-nav__cards {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
  }
}
.p-owner-nav__card {
  list-style: none;
}
.p-owner-nav__card-link {
  display: flex;
  flex-direction: row;
  align-items: center;
  background-color: var(--color-yellow);
  border-radius: 16px;
  padding: 22px 20px;
  text-decoration: none;
  color: var(--color-blue);
  transition: opacity 0.3s;
}
.p-owner-nav__card-link:hover {
  opacity: 0.85;
}
@media screen and (min-width: 1024px) {
  .p-owner-nav__card-link {
    flex-direction: column;
    align-items: center;
    padding: 32px 20px 28px;
    min-height: 180px;
  }
}
.p-owner-nav__card-title {
  display: block;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.02em;
  margin-right: 8px;
}
@media screen and (min-width: 1024px) {
  .p-owner-nav__card-title {
    font-size: 45px;
    margin-right: 0;
    margin-bottom: 6px;
  }
}
.p-owner-nav__card-sub {
  display: block;
  font-size: 16px;
  font-weight: 500;
  flex: 1;
  text-align: left;
}
@media screen and (min-width: 1024px) {
  .p-owner-nav__card-sub {
    font-size: 28px;
    flex: none;
    margin-bottom: auto;
  }
}
.p-owner-nav__card-arrow {
  display: flex;
  align-items: center;
  margin-top: 0;
  margin-left: auto;
}
@media screen and (min-width: 1024px) {
  .p-owner-nav__card-arrow {
    margin-left: 0;
    margin-top: 16px;
  }
}
.p-owner-nav__card-arrow img {
  width: auto;
  height: 18px;
  display: block;
}
@media screen and (min-width: 1024px) {
  .p-owner-nav__card-arrow img {
    height: 26px;
  }
}
.p-owner-nav__tel {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  border-top: 1px solid #fff;
  padding-top: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid #fff;
}
@media screen and (min-width: 768px) {
  .p-owner-nav__tel {
    flex-direction: row;
    justify-content: center;
    gap: 0;
  }
}
.p-owner-nav__tel-label {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.05em;
  height: 50px;
  line-height: 50px;
}
@media screen and (min-width: 768px) {
  .p-owner-nav__tel-label {
    padding-right: 32px;
    margin-right: 32px;
    border-right: 1px solid #fff;
  }
}
.p-owner-nav__tel-number {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 35px;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: opacity 0.3s;
}
.p-owner-nav__tel-number:hover {
  opacity: 0.8;
}
.p-owner-nav__tel-icon {
  width: auto;
  height: 36px;
}
@media screen and (min-width: 768px) {
  .p-owner-nav__tel-icon {
    height: 55px;
  }
}
.p-owner-nav__tel-number--thanks {
  display: block;
  margin: 0 auto 40px;
}
.p-owner-nav__tel-icon--thanks {
  filter: brightness(0);
  display: block;
  margin: 0 auto;
}

/* ==========================================================================
   オーナー様専用お問い合わせ (p-owner-contact)
   ========================================================================== */
.p-owner-contact {
  background-color: var(--color-bg);
  padding: 60px 0 60px;
}
@media screen and (min-width: 1024px) {
  .p-owner-contact {
    padding: 100px 0 130px;
  }
}
.p-owner-contact--thanks {
  background-color: #fff;
}
.p-owner-contact__head {
  text-align: center;
  margin-bottom: 50px;
}
@media screen and (min-width: 1024px) {
  .p-owner-contact__head {
    margin-bottom: 60px;
  }
}
.p-owner-contact__title {
  color: var(--color-blue);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.4;
  margin-bottom: 20px;
}
@media screen and (min-width: 1024px) {
  .p-owner-contact__title {
    font-size: 40px;
    margin-bottom: 24px;
  }
}
.p-owner-contact__lead {
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 0;
}
@media screen and (min-width: 1024px) {
  .p-owner-contact__lead {
    font-size: 16px;
  }
}
.p-owner-contact__form {
  background-color: #fff;
  border-radius: 12px;
  padding: 40px 20px;
}
@media screen and (min-width: 1024px) {
  .p-owner-contact__form {
    padding: 60px 80px;
    border-radius: 16px;
  }
}

/* ==========================================================================
   賃貸管理ページ イントロ (p-rental-intro)
   ========================================================================== */
.p-rental-intro {
  padding: 60px 0 80px;
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .p-rental-intro {
    padding: 80px 0 200px;
    text-align: center;
  }
}
.p-rental-intro__catch {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.03em;
  margin-bottom: 20px;
}
@media screen and (min-width: 1024px) {
  .p-rental-intro__catch {
    font-size: 35px;
    margin-bottom: 24px;
  }
}
.p-rental-intro__sub {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-bottom: 0;
}
@media screen and (min-width: 1024px) {
  .p-rental-intro__sub {
    font-size: 25px;
  }
}
.p-rental-intro--flow .p-rental-intro__sub {
  text-align: left;
}
@media screen and (min-width: 1024px) {
  .p-rental-intro--flow .p-rental-intro__sub {
    text-align: center;
  }
}

/* ==========================================================================
   賃貸管理ページ フィーチャーセクション (p-rental-feature)
   ========================================================================== */
.p-rental-feature {
  background-color: var(--color-bg);
  padding: 0 0 80px;
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .p-rental-feature {
    padding: 0 0 100px;
  }
}
.p-rental-feature__man {
  text-align: center;
  margin-bottom: 0;
}
.p-rental-feature__man img {
  width: 100px;
  height: auto;
  margin: 0 auto;
  transform: translateY(-50%);
}
@media screen and (min-width: 768px) {
  .p-rental-feature__man img {
    width: 162px;
  }
}
.p-rental-feature__title {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-blue);
  margin-bottom: 40px;
}
@media screen and (min-width: 1024px) {
  .p-rental-feature__title {
    font-size: 40px;
    margin-bottom: 50px;
  }
}
.p-rental-feature__cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  list-style: none;
  padding: 0;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .p-rental-feature__cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}
.p-rental-feature__card {
  background-color: var(--color-yellow);
  border-radius: 16px;
  padding: 20px;
}
@media screen and (min-width: 1024px) {
  .p-rental-feature__card {
    padding: 36px 32px;
  }
}
.p-rental-feature__card-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--color-blue);
  margin-bottom: 16px;
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .p-rental-feature__card-title {
    font-size: 35px;
  }
}
.p-rental-feature__card-text {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 0;
}
@media screen and (min-width: 1024px) {
  .p-rental-feature__card-text {
    font-size: 25px;
  }
}

/* ==========================================================================
   サブリースページ サブリースとは (p-sublease-about)
   ========================================================================== */
.p-sublease-about {
  margin-top: 60px;
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .p-sublease-about {
    margin-top: 80px;
  }
}
.p-sublease-about__title {
  font-size: 24px;
  font-weight: 700;
  color: var(--color-blue);
  margin-bottom: 30px;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 1024px) {
  .p-sublease-about__title {
    font-size: 40px;
    margin-bottom: 40px;
  }
}
.p-sublease-about__title-mark {
  position: relative;
  display: inline-block;
}
.p-sublease-about__title-mark::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 6px;
  background-color: var(--color-yellow);
}
@media screen and (min-width: 1024px) {
  .p-sublease-about__title-sub {
    font-size: 30px;
  }
}
.p-sublease-about__text {
  font-size: 16px;
  line-height: 2;
  margin-bottom: 0;
  text-align: left;
}
@media screen and (min-width: 1024px) {
  .p-sublease-about__text {
    font-size: 25px;
    text-align: center;
  }
}
.p-sublease-about__text strong {
  font-weight: 700;
}

/* ==========================================================================
   賃貸管理ページ 基本業務セクション (p-rental-basics)
   ========================================================================== */
.p-rental-basics {
  background-color: var(--color-bg);
  padding: 0 0 60px;
}
@media screen and (min-width: 1024px) {
  .p-rental-basics {
    padding: 100px 0 120px;
  }
}
.p-rental-basics__head {
  text-align: center;
  margin-bottom: 60px;
}
@media screen and (min-width: 1024px) {
  .p-rental-basics__head {
    margin-bottom: 80px;
  }
}
.p-rental-basics__num {
  font-size: 48px;
  font-weight: 700;
  font-family: "Roboto", sans-serif;
  color: var(--color-blue);
  line-height: 1;
  margin-bottom: 8px;
  border-bottom: 3px solid var(--color-blue);
  display: inline-block;
  padding-bottom: 6px;
}
@media screen and (min-width: 1024px) {
  .p-rental-basics__num {
    font-size: 64px;
  }
}
.p-rental-basics__title {
  font-size: 24px;
  font-weight: 700;
  color: var(--color-blue);
  margin-bottom: 20px;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 1024px) {
  .p-rental-basics__title {
    font-size: 40px;
    margin-bottom: 24px;
  }
}
.p-rental-basics__lead {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 0;
  text-align: left;
}
@media screen and (min-width: 1024px) {
  .p-rental-basics__lead {
    font-size: 25px;
    text-align: center;
  }
}
.p-rental-basics__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
}
@media screen and (min-width: 768px) {
  .p-rental-basics__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 128px 32px;
  }
}
.p-rental-basics__card-wrap {
  display: flex;
  flex-direction: column;
}
.p-rental-basics__card-wrap .p-rental-basics__note {
  margin-top: 16px;
}
.p-rental-basics__card {
  background-color: #fff;
  border-radius: 16px;
  padding: 56px 24px 32px;
  position: relative;
}
@media screen and (min-width: 1024px) {
  .p-rental-basics__card {
    padding: 65px 25px 40px;
  }
}
.p-rental-basics__card--simple {
  padding: 28px 24px;
}
@media screen and (min-width: 1024px) {
  .p-rental-basics__card--simple {
    padding: 36px 32px;
  }
}
.p-rental-basics__card--simple .p-rental-basics__card-title {
  text-align: left;
  margin-top: 0;
}
.p-rental-basics__card--simple .p-rental-basics__card-lead {
  margin-bottom: 0;
  padding-bottom: 0;
}
.p-rental-basics__card-icon {
  width: 72px;
  height: 72px;
  background-color: var(--color-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (min-width: 1024px) {
  .p-rental-basics__card-icon {
    width: 110px;
    height: 110px;
  }
}
.p-rental-basics__card-icon img {
  width: 100%;
  height: auto;
}
.p-rental-basics__card-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--color-blue);
  text-align: center;
  margin-bottom: 12px;
  letter-spacing: 0.03em;
  margin-top: 5px;
}
@media screen and (min-width: 1024px) {
  .p-rental-basics__card-title {
    font-size: 35px;
    margin-bottom: 10px;
    margin-top: 10px;
  }
}
.p-rental-basics__card-lead {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 10px;
  padding-bottom: 10px;
}
@media screen and (min-width: 1024px) {
  .p-rental-basics__card-lead {
    font-size: 20px;
  }
}
.p-rental-basics__points {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.p-rental-basics__point {
  background-color: #e8f1f8;
  border-radius: 12px;
  padding: 15px 15px;
  min-height: 140px;
}
.p-rental-basics__point-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-blue);
  margin-bottom: 8px;
  display: flex;
  align-items: baseline;
  gap: 4px;
}
@media screen and (min-width: 1024px) {
  .p-rental-basics__point-title {
    font-size: 25px;
  }
}
.p-rental-basics__marker {
  color: var(--color-blue);
  font-size: 1em;
  flex-shrink: 0;
}
.p-rental-basics__point-text {
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 0;
}
@media screen and (min-width: 1024px) {
  .p-rental-basics__point-text {
    font-size: 16px;
  }
}
.p-rental-basics__note {
  font-size: 12px;
  color: #666;
  margin-top: 20px;
  margin-bottom: 0;
}
@media screen and (min-width: 1024px) {
  .p-rental-basics__note {
    font-size: 13px;
  }
}

.is-accent {
  color: var(--color-red);
  font-weight: 700;
  font-size: 14px;
}
@media screen and (min-width: 1024px) {
  .is-accent {
    font-size: 18px;
  }
}

/* ==========================================================================
   賃貸管理ページ 費用についてセクション (p-rental-cost)
   ========================================================================== */
.p-rental-cost {
  background-color: var(--color-blue);
  padding: 80px 0;
}
@media screen and (min-width: 1024px) {
  .p-rental-cost {
    padding: 100px 0;
  }
}
.p-rental-cost__title {
  color: #fff;
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 40px;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 1024px) {
  .p-rental-cost__title {
    font-size: 35px;
    margin-bottom: 60px;
  }
}
.p-rental-cost__title + .p-rental-cost__lead {
  margin-top: -20px;
}
@media screen and (min-width: 1024px) {
  .p-rental-cost__title + .p-rental-cost__lead {
    margin-top: -30px;
  }
}
.p-rental-cost__lead {
  color: #fff;
  text-align: center;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 40px;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 1024px) {
  .p-rental-cost__lead {
    font-size: 20px;
    margin-bottom: 60px;
  }
}
.p-rental-cost__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}
@media screen and (min-width: 768px) {
  .p-rental-cost__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }
}
.p-rental-cost__item {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-rental-cost__item {
    width: auto;
  }
}
.p-rental-cost__item img {
  width: 100%;
  height: auto;
  border-radius: 16px;
}
.p-rental-cost__note {
  color: #fff;
  margin-top: 16px;
  margin-bottom: 0;
}
@media screen and (min-width: 1024px) {
  .p-rental-cost__note {
    margin-top: 24px;
  }
}
.p-rental-cost__example-box {
  background-color: #fff;
  border-radius: 24px;
  padding: 40px 24px;
  margin-top: 60px;
}
@media screen and (min-width: 1024px) {
  .p-rental-cost__example-box {
    padding: 60px 40px;
    margin-top: 80px;
  }
}
.p-rental-cost__example {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-blue);
  border-bottom: 1px solid var(--color-blue);
  padding-bottom: 12px;
  margin-bottom: 30px;
}
@media screen and (min-width: 1024px) {
  .p-rental-cost__example {
    font-size: 25px;
    padding-bottom: 16px;
    margin-bottom: 40px;
  }
}
.p-rental-cost__example-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media screen and (min-width: 768px) {
  .p-rental-cost__example-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}
.p-rental-cost__example-item img {
  width: 100%;
  height: auto;
}
.p-rental-cost__note2 {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-blue);
  text-align: center;
  margin-top: 30px;
  margin-bottom: 0;
}
@media screen and (min-width: 1024px) {
  .p-rental-cost__note2 {
    font-size: 30px;
    margin-top: 40px;
  }
}
.p-rental-cost__disclaimer {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 40px;
}
@media screen and (min-width: 1024px) {
  .p-rental-cost__disclaimer {
    flex-direction: row;
    align-items: center;
    gap: 24px;
    margin-top: 60px;
  }
}
.p-rental-cost__disclaimer-title {
  color: #fff;
  border: 1px solid #fff;
  font-size: 20px;
  font-weight: 700;
  padding: 8px 16px;
  text-align: center;
  margin: 0;
}
@media screen and (min-width: 1024px) {
  .p-rental-cost__disclaimer-title {
    font-size: 25px;
    padding: 12px 32px;
    flex-shrink: 0;
  }
}
.p-rental-cost__disclaimer-text {
  color: #fff;
  font-size: 13px;
  line-height: 1.8;
  margin: 0;
}
@media screen and (min-width: 1024px) {
  .p-rental-cost__disclaimer-text {
    font-size: 15px;
  }
}

/* ==========================================================================
   賃貸管理ページ オプションセクション (p-rental-option)
   ========================================================================== */
.p-rental-option {
  padding: 150px 0 80px;
}
@media screen and (min-width: 1024px) {
  .p-rental-option {
    padding: 200px 0 100px;
  }
}
.p-rental-option__box {
  background-color: #e8f1f8;
  border-radius: 24px;
  padding: 80px 24px 40px;
  position: relative;
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .p-rental-option__box {
    padding: 120px 60px 80px;
  }
}
.p-rental-option__hero {
  display: block;
  text-align: center;
  top: -140px;
  position: relative;
}
@media screen and (min-width: 1024px) {
  .p-rental-option__hero {
    top: -250px;
  }
}
.p-rental-option__hero img {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 55%;
  height: auto;
  max-width: 180px;
}
@media screen and (min-width: 1024px) {
  .p-rental-option__hero img {
    max-width: 300px;
  }
}
.p-rental-option__pill {
  background-color: var(--color-blue);
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  border-radius: 100px;
  padding: 16px 24px;
  display: inline-block;
  margin-bottom: 16px;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 1024px) {
  .p-rental-option__pill {
    font-size: 35px;
    padding: 24px 60px;
  }
}
.p-rental-option__pill-text {
  font-size: 18px;
  margin-bottom: 40px;
  color: #333;
  text-align: left;
}
@media screen and (min-width: 1024px) {
  .p-rental-option__pill-text {
    font-size: 20px;
    margin-bottom: 60px;
    text-align: center;
  }
}
.p-rental-option__title {
  font-size: 28px;
  font-weight: 700;
  color: var(--color-blue);
  margin-bottom: 24px;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 1024px) {
  .p-rental-option__title {
    font-size: 40px;
    margin-bottom: 30px;
  }
}
.p-rental-option__lead {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 40px;
  text-align: left;
}
@media screen and (min-width: 1024px) {
  .p-rental-option__lead {
    font-size: 25px;
    margin-bottom: 60px;
    text-align: center;
  }
}
.p-rental-option__list {
  list-style: none;
  padding: 0;
  margin: 40px 0 0;
  display: flex;
  flex-direction: column;
  gap: 60px;
}
@media screen and (min-width: 1024px) {
  .p-rental-option__list {
    margin-top: 0;
    gap: 20px;
  }
}
.p-rental-option__item {
  background-color: #fff;
  border: 2px solid var(--color-blue);
  border-radius: 16px;
  padding: 50px 24px 30px;
  display: flex;
  flex-direction: column;
  text-align: center;
  gap: 16px;
  position: relative;
}
@media screen and (min-width: 1024px) {
  .p-rental-option__item {
    flex-direction: row;
    align-items: center;
    padding: 30px 40px;
    gap: 40px;
    text-align: left;
  }
}
.p-rental-option__item-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
@media screen and (min-width: 1024px) {
  .p-rental-option__item-head {
    flex-direction: row;
    min-width: 410px;
    flex-shrink: 0;
    border-right: 1px solid var(--color-blue);
    padding-right: 20px;
    gap: 16px;
  }
}
.p-rental-option__item-icon {
  width: 80px;
  height: 80px;
  background-color: var(--color-blue);
  border-radius: 50%;
  padding: 12px;
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (min-width: 1024px) {
  .p-rental-option__item-icon {
    width: 63px;
    height: 63px;
    position: static;
    transform: none;
    background-color: transparent;
    padding: 0;
    filter: none;
  }
}
.p-rental-option__item-title-wrap {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 1024px) {
  .p-rental-option__item-title-wrap {
    flex-direction: column;
    align-items: baseline;
    gap: 0;
  }
}
.p-rental-option__item-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--color-blue);
  margin: 0;
}
@media screen and (min-width: 1024px) {
  .p-rental-option__item-title {
    font-size: 30px;
  }
}
.p-rental-option__item-sub {
  font-size: 18px;
  color: var(--color-blue);
  font-weight: 700;
  display: block;
}
@media screen and (min-width: 1024px) {
  .p-rental-option__item-sub {
    font-size: 20px;
  }
}
.p-rental-option__item-body {
  text-align: left;
}
.p-rental-option__item-body p {
  font-size: 16px;
  line-height: 1.8;
  margin: 0;
}
@media screen and (min-width: 1024px) {
  .p-rental-option__item-body p {
    font-size: 20px;
  }
}

/* /kanri/ ページ c-parking-img 上余白オーバーライド */
@media screen and (min-width: 1024px) {
  .page-id-13 .c-parking-img {
    margin-top: 80px;
  }
}

/* ==========================================================================
   サブリースページ お問い合わせリード (p-sublease-contact-lead)
   ========================================================================== */
.p-sublease-contact-lead {
  padding: 60px 0;
  text-align: center;
  background-color: #fff;
}
@media screen and (min-width: 1024px) {
  .p-sublease-contact-lead {
    padding: 100px 0;
  }
}
.p-sublease-contact-lead__text {
  font-size: 24px;
  font-weight: 700;
  color: var(--color-blue);
  line-height: 1.8;
  letter-spacing: 0.05em;
  margin: 0;
}
@media screen and (min-width: 1024px) {
  .p-sublease-contact-lead__text {
    font-size: 45px;
    line-height: 1.6;
  }
}

/* ==========================================================================
   賃貸管理フローページ (p-rental-flow)
   ========================================================================== */
.p-rental-flow {
  list-style: none;
  padding: 0;
  margin: 0;
}
.p-rental-flow__item {
  background-color: #fff;
  border-radius: 16px;
  margin-bottom: 60px;
  position: relative;
}
.p-rental-flow__item:not(:last-child)::after {
  content: "";
  position: absolute;
  bottom: -36px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 24px 32px 0 32px;
  border-color: var(--color-blue) transparent transparent transparent;
}
@media screen and (min-width: 1024px) {
  .p-rental-flow__item {
    margin-bottom: 60px;
    min-height: 300px;
  }
  .p-rental-flow__item:not(:last-child)::after {
    bottom: -40px;
    border-width: 25px 50px 0 50px;
  }
}
.p-rental-flow__item:nth-child(1) .p-rental-flow__img {
  max-width: 180px;
}
@media screen and (min-width: 1024px) {
  .p-rental-flow__item:nth-child(1) .p-rental-flow__img {
    width: 274px;
    max-width: none;
    right: 36px;
  }
}
.p-rental-flow__item:nth-child(2) .p-rental-flow__img {
  max-width: 180px;
}
@media screen and (min-width: 1024px) {
  .p-rental-flow__item:nth-child(2) .p-rental-flow__img {
    width: 270px;
    max-width: none;
    right: 55px;
    bottom: -20px;
  }
}
.p-rental-flow__item:nth-child(3) .p-rental-flow__img {
  max-width: 180px;
}
@media screen and (min-width: 1024px) {
  .p-rental-flow__item:nth-child(3) .p-rental-flow__img {
    width: 270px;
    max-width: none;
    right: 50px;
    bottom: 15px;
  }
}
.p-rental-flow__item:nth-child(4) .p-rental-flow__img {
  max-width: 180px;
}
@media screen and (min-width: 1024px) {
  .p-rental-flow__item:nth-child(4) .p-rental-flow__img {
    width: 270px;
    max-width: none;
    right: 60px;
    bottom: -15px;
  }
}
.p-rental-flow__item:nth-child(5) .p-rental-flow__img {
  max-width: 180px;
}
@media screen and (min-width: 1024px) {
  .p-rental-flow__item:nth-child(5) .p-rental-flow__img {
    width: 270px;
    max-width: none;
    right: 60px;
    bottom: 5px;
  }
}
.p-rental-flow__item:nth-child(6) .p-rental-flow__img {
  max-width: 180px;
}
@media screen and (min-width: 1024px) {
  .p-rental-flow__item:nth-child(6) .p-rental-flow__img {
    width: 270px;
    max-width: none;
    right: 60px;
    bottom: 50px;
  }
}
.p-rental-flow__item:nth-child(7) .p-rental-flow__img {
  max-width: 180px;
}
@media screen and (min-width: 1024px) {
  .p-rental-flow__item:nth-child(7) .p-rental-flow__img {
    width: 270px;
    max-width: none;
    right: 60px;
    bottom: -5px;
  }
}
.p-rental-flow__item:nth-child(8) .p-rental-flow__img {
  max-width: 180px;
}
@media screen and (min-width: 1024px) {
  .p-rental-flow__item:nth-child(8) .p-rental-flow__img {
    width: 270px;
    max-width: none;
    right: 70px;
    bottom: 5px;
  }
}
.p-rental-flow__head {
  background-color: var(--color-blue);
  color: #fff;
  border-radius: 16px 16px 0 0;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
}
@media screen and (min-width: 1024px) {
  .p-rental-flow__head {
    padding: 13px 25px 14px;
    gap: 25px;
  }
}
.p-rental-flow__step-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
}
.p-rental-flow__step-en {
  writing-mode: vertical-rl;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1;
}
.p-rental-flow__step-num {
  font-size: 36px;
  font-weight: 700;
  font-family: "Roboto", sans-serif;
  line-height: 1;
}
@media screen and (min-width: 1024px) {
  .p-rental-flow__step-num {
    font-size: 53px;
  }
}
.p-rental-flow__title {
  font-size: 20px;
  font-weight: 500;
  margin: 0;
  letter-spacing: 0.05em;
  text-align: left;
  line-height: 1.4;
}
@media screen and (min-width: 1024px) {
  .p-rental-flow__title {
    font-size: 30px;
  }
}
.p-rental-flow__body {
  padding: 30px 24px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media screen and (min-width: 1024px) {
  .p-rental-flow__body {
    padding: 40px 50px;
    flex-direction: row;
    align-items: center;
    gap: 60px;
  }
}
.p-rental-flow__text {
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .p-rental-flow__text {
    width: 70%;
  }
}
.p-rental-flow__text p {
  font-size: 16px;
  line-height: 1.8;
  margin: 0;
  text-align: left;
  letter-spacing: -0.01em;
}
@media screen and (min-width: 1024px) {
  .p-rental-flow__text p {
    font-size: 20px;
  }
}
.p-rental-flow__img {
  width: 100%;
  margin: 0 auto;
  max-width: 180px;
}
@media screen and (min-width: 1024px) {
  .p-rental-flow__img {
    position: absolute;
    margin: 0;
    right: 0;
    bottom: 0;
    width: 300px;
  }
}
.p-rental-flow__img img {
  width: 100%;
  height: auto;
}

/* ==========================================================================
   入居者様専用ページ ナビセクション (p-residen-nav)
   ========================================================================== */
.p-residen-nav {
  background-color: #568ebc;
  padding: 0 0 60px;
  position: relative;
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .p-residen-nav {
    padding: 0 0 80px;
  }
}
.p-residen-nav__man {
  text-align: center;
  margin-bottom: 40px;
}
.p-residen-nav__man img {
  width: 120px;
  height: auto;
  margin: 0 auto;
  transform: translateY(-50%);
}
@media screen and (min-width: 768px) {
  .p-residen-nav__man img {
    width: 162px;
  }
}
.p-residen-nav__cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 40px;
}
@media screen and (min-width: 768px) {
  .p-residen-nav__cards {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
  }
}
.p-residen-nav__card {
  list-style: none;
}
.p-residen-nav__card-link {
  display: flex;
  flex-direction: row;
  align-items: center;
  background-color: #fff;
  border-radius: 16px;
  padding: 22px 20px;
  text-decoration: none;
  color: var(--color-blue);
  transition: opacity 0.3s;
}
.p-residen-nav__card-link:hover {
  opacity: 0.85;
}
@media screen and (min-width: 1024px) {
  .p-residen-nav__card-link {
    flex-direction: column;
    align-items: center;
    padding: 32px 20px 28px;
    min-height: 180px;
  }
}
.p-residen-nav__card-title {
  display: block;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.02em;
  margin-right: 8px;
}
@media screen and (min-width: 1024px) {
  .p-residen-nav__card-title {
    font-size: 45px;
    margin-right: 0;
    margin-bottom: 6px;
  }
}
.p-residen-nav__card-sub {
  display: block;
  font-size: 16px;
  font-weight: 500;
  flex: 1;
  text-align: left;
}
@media screen and (min-width: 1024px) {
  .p-residen-nav__card-sub {
    font-size: 28px;
    flex: none;
    margin-bottom: auto;
  }
}
.p-residen-nav__card-arrow {
  display: flex;
  align-items: center;
  margin-top: 0;
  margin-left: auto;
}
@media screen and (min-width: 1024px) {
  .p-residen-nav__card-arrow {
    margin-left: 0;
    margin-top: 16px;
  }
}
.p-residen-nav__card-arrow img {
  width: auto;
  height: 18px;
  display: block;
}
@media screen and (min-width: 1024px) {
  .p-residen-nav__card-arrow img {
    height: 26px;
  }
}
.p-residen-nav__tel {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  border-top: 1.5px solid #fff;
  padding-top: 32px;
  padding-bottom: 32px;
  border-bottom: 1.5px solid #fff;
}
@media screen and (min-width: 768px) {
  .p-residen-nav__tel {
    flex-direction: row;
    justify-content: center;
    gap: 0;
  }
}
.p-residen-nav__tel-label {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.05em;
  height: 50px;
  line-height: 50px;
}
@media screen and (min-width: 768px) {
  .p-residen-nav__tel-label {
    font-size: 25px;
    padding-right: 32px;
    margin-right: 32px;
    border-right: 1.5px solid #fff;
  }
}
.p-residen-nav__tel-number {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 30px;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: opacity 0.3s;
}
@media screen and (min-width: 768px) {
  .p-residen-nav__tel-number {
    font-size: 45px;
  }
}
.p-residen-nav__tel-number:hover {
  opacity: 0.8;
}
.p-residen-nav__tel-icon {
  width: auto;
  height: 36px;
}
@media screen and (min-width: 768px) {
  .p-residen-nav__tel-icon {
    height: 55px;
  }
}

/* ==========================================================================
   入居者様専用ページ よくある質問 (p-residen-faq)
   ========================================================================== */
.p-residen-faq {
  background-color: var(--color-bg2);
  padding: 60px 0 100px;
}
@media screen and (min-width: 1024px) {
  .p-residen-faq {
    padding: 100px 0 130px;
  }
}
.p-residen-faq__title {
  text-align: center;
  color: var(--color-blue);
  font-weight: 700;
  font-size: 24px;
  margin-bottom: 40px;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 1024px) {
  .p-residen-faq__title {
    font-size: 45px;
    margin-bottom: 60px;
  }
}
.p-residen-faq__list {
  display: flex;
  flex-direction: column;
}
.p-residen-faq__item {
  margin-bottom: 0;
}
.p-residen-faq__q {
  display: flex;
  align-items: center;
  background-color: #fff;
  border-top: 1px solid var(--color-blue);
  border-bottom: 1px solid var(--color-blue);
  padding: 20px 20px 20px 15px;
  cursor: pointer;
  font-weight: 700;
  color: var(--color-blue);
  font-size: 16px;
  line-height: 1.5;
  margin: 0;
  transition: opacity 0.3s;
}
.p-residen-faq__q:hover {
  opacity: 0.8;
}
.p-residen-faq__item + .p-residen-faq__item:not(.is-open) .p-residen-faq__q {
  margin-top: -1px;
}
@media screen and (min-width: 1024px) {
  .p-residen-faq__q {
    font-size: 35px;
    padding: 32px 0;
    padding-left: 40px;
    padding-right: 40px;
  }
}
.p-residen-faq__q-icon {
  margin-right: 12px;
}
@media screen and (min-width: 1024px) {
  .p-residen-faq__q-icon {
    margin-right: 20px;
  }
}
.p-residen-faq__icon {
  margin-left: auto;
  width: 20px;
  height: 12px;
  position: relative;
  flex-shrink: 0;
  transition: transform 0.3s;
  background-image: url(../images/residen/icon-arrow.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
@media screen and (min-width: 1024px) {
  .p-residen-faq__icon {
    width: 32px;
    height: 20px;
  }
}
.is-open .p-residen-faq__icon {
  transform: rotate(180deg);
}
.p-residen-faq__a {
  padding: 20px 0 40px;
  font-size: 14px;
  line-height: 1.8;
  font-weight: 500;
  color: var(--color-text);
  display: none;
  margin: 0;
}
.p-residen-faq__a p {
  letter-spacing: 0.01em;
  margin: 0;
}
.p-residen-faq__a a {
  color: var(--color-blue);
  text-decoration: underline;
  transition: opacity 0.3s;
}
.p-residen-faq__a a:hover {
  opacity: 0.8;
}
@media screen and (min-width: 1024px) {
  .p-residen-faq__a {
    font-size: 20px;
    padding: 30px 0 50px;
  }
}

/* ==========================================================================
   更新ページ (p-koushin)
   ========================================================================== */
.p-koushin {
  padding: 60px 0 0;
  background-color: #fff;
}
@media screen and (min-width: 1024px) {
  .p-koushin {
    padding: 80px 0 0;
  }
}
.p-koushin__intro {
  text-align: center;
  margin-bottom: 40px;
}
.p-koushin__intro p {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.8;
  margin: 0;
}
.p-koushin__intro p:not(:last-child) {
  margin-bottom: 24px;
}
@media screen and (min-width: 1024px) {
  .p-koushin__intro p {
    font-size: 24px;
  }
}
.p-koushin__notice {
  background-color: #fee898;
  border-radius: 12px;
  padding: 24px 20px;
  text-align: center;
  margin-bottom: 40px;
}
.p-koushin__notice p {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-blue);
  margin: 0;
}
.p-koushin__notice p:not(:last-child) {
  margin-bottom: 10px;
}
@media screen and (min-width: 1024px) {
  .p-koushin__notice p {
    font-size: 20px;
  }
}
@media screen and (min-width: 1024px) {
  .p-koushin__notice {
    padding: 30px 40px;
    margin-bottom: 60px;
    border-radius: 16px;
  }
}
.p-koushin__box {
  border: 1px solid var(--color-blue);
  border-radius: 7px;
  padding: 30px 20px;
  background-color: #fff;
  margin-bottom: 60px;
}
@media screen and (min-width: 1024px) {
  .p-koushin__box {
    padding: 50px 60px;
    border-radius: 7px;
  }
}
.p-koushin__box-title {
  text-align: center;
  color: var(--color-blue);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 1024px) {
  .p-koushin__box-title {
    font-size: 25px;
  }
}
.p-koushin__box-text {
  text-align: left;
  font-size: 15px;
  line-height: 1.8;
  font-weight: 500;
  margin: 0;
}
@media screen and (min-width: 1024px) {
  .p-koushin__box-text {
    font-size: 20px;
  }
}
.p-koushin__box-text .is-blue {
  color: var(--color-blue);
  font-weight: 700;
}
.p-koushin__box-text .is-link {
  text-decoration: underline;
}
.p-koushin__section {
  margin-bottom: 40px;
}
.p-koushin__section:last-child {
  margin-bottom: 0;
}
@media screen and (min-width: 1024px) {
  .p-koushin__section {
    margin-bottom: 60px;
  }
}
.p-koushin__title {
  color: var(--color-blue);
  font-size: 20px;
  font-weight: 700;
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.p-koushin__title::before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 1.1em;
  background-color: var(--color-blue);
  margin-right: 12px;
}
@media screen and (min-width: 1024px) {
  .p-koushin__title {
    font-size: 25px;
    margin-bottom: 30px;
  }
}
.p-koushin__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.p-koushin__list li {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.8;
  color: var(--color-text);
  margin-bottom: 10px;
}
.p-koushin__list li:last-child {
  margin-bottom: 0;
}
@media screen and (min-width: 1024px) {
  .p-koushin__list li {
    font-size: 20px;
    margin-bottom: 12px;
  }
}

.p-koushin__form {
  background-color: var(--color-bg2);
  padding: 60px 0 100px;
}
@media screen and (min-width: 1024px) {
  .p-koushin__form {
    padding: 100px 0 130px;
  }
}
.p-koushin__form .l-container {
  background-color: #fff;
  padding: 40px 20px;
  border-radius: 8px;
}
@media screen and (min-width: 1024px) {
  .p-koushin__form .l-container {
    padding: 80px 100px;
    border-radius: 12px;
  }
}

.p-company {
  padding-top: 60px;
  padding-bottom: 60px;
}
@media screen and (min-width: 1024px) {
  .p-company {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
.p-company__list {
  border-top: 1px solid #cdcdcd;
  margin-bottom: 20px;
}
.p-company__item {
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid #cdcdcd;
  padding: 15px 0;
  font-size: 16px;
}
@media screen and (min-width: 1024px) {
  .p-company__item {
    flex-direction: row;
    padding: 25px 10px 22px;
    font-size: 20px;
  }
}
.p-company__item dt {
  font-weight: bold;
  margin-bottom: 10px;
  letter-spacing: 0.1em;
  line-height: 1.8;
}
@media screen and (min-width: 1024px) {
  .p-company__item dt {
    width: 236px;
    flex-shrink: 0;
    margin-bottom: 0;
  }
}
.p-company__item dd {
  line-height: 1.8;
}
@media screen and (min-width: 1024px) {
  .p-company__item dd {
    flex-grow: 1;
  }
}
.p-company__note {
  text-align: right;
  font-size: 16px;
}
@media screen and (min-width: 1024px) {
  .p-company__note {
    font-size: 20px;
  }
}

.p-privacy {
  padding-top: 60px;
  padding-bottom: 60px;
}
@media screen and (min-width: 1024px) {
  .p-privacy {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
.p-privacy__lead {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 40px;
}
@media screen and (min-width: 1024px) {
  .p-privacy__lead {
    font-size: 20px;
    margin-bottom: 60px;
  }
}
.p-privacy__heading {
  font-size: 20px;
  font-weight: bold;
  margin-top: 40px;
  margin-bottom: 20px;
}
@media screen and (min-width: 1024px) {
  .p-privacy__heading {
    font-size: 25px;
    margin-top: 60px;
    margin-bottom: 30px;
  }
}
.p-privacy__text {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 10px;
}
@media screen and (min-width: 1024px) {
  .p-privacy__text {
    font-size: 20px;
  }
}
.p-privacy__list {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
  list-style: none;
}
@media screen and (min-width: 1024px) {
  .p-privacy__list {
    font-size: 20px;
  }
}
.p-privacy__list li {
  position: relative;
  padding-left: 1.2em;
  margin-bottom: 5px;
}
.p-privacy__list li::before {
  content: "";
  position: absolute;
  left: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: currentColor;
  top: 50%;
  transform: translateY(-50%);
}