@charset "UTF-8";
/* ----------------------------------------
 * 設定
 * ---------------------------------------- */
/* ----------------------------------------
 * 全体
 * ---------------------------------------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

body {
  font-family: "IBM Plex Sans JP", sans-serif;
  color: #444;
  background: #fff0e3;
  font-weight: bold;
}

p {
  font-size: 1.6rem;
  line-height: 1.6;
}

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

a,
a:hover,
a:focus,
a:active {
  text-decoration: none !important;
}

img {
  max-width: 100%;
  display: block;
}

@media screen and (max-width: 767px) {
  p {
    font-size: 4vw;
    line-height: 2;
  }
}
.sp {
  display: none;
}

@media screen and (max-width: 767px) {
  .sp {
    display: inline;
  }
}
.container {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 24px;
}

.a-text__center {
  text-align: center;
}

.fadein {
  opacity: 0;
  transform: translateY(60px) scale(0.96);
  transition: opacity 0.9s ease, transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.fadein.is-show {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* ----------------------------------------
 * ヘッダー
 * ---------------------------------------- */
.m-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  z-index: 9999;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.m-header__inner {
  max-width: 1500px;
  height: 80px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.m-header__logo img {
  height: 36px;
  max-width: 150px;
}

.m-header__tel-group {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  margin-left: auto;
  margin-right: 24px;
}

.m-header__tel-number {
  font-size: 3.2rem;
  font-weight: 700;
  color: #de709d;
  line-height: 1.2;
  margin: 0;
}

.m-header__tel-time {
  font-size: 1.1rem;
  color: #000;
  line-height: 1.2;
  margin: 0;
  margin-top: 2px;
}

.m-header__actions {
  display: flex;
  align-items: center;
}

.m-header__pc-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.m-header__sp-actions {
  display: none;
}

.a-header__contact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border-radius: 9999px;
  background: #de709d;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 700;
  transition: 0.3s;
}
.a-header__contact:hover {
  opacity: 0.8;
}

.a-header__document {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border-radius: 9999px;
  background: #fff;
  color: #de709d;
  border: 2px solid #de709d;
  font-size: 1.6rem;
  font-weight: 700;
  transition: 0.3s;
  box-sizing: border-box;
}
.a-header__document:hover {
  background: #de709d;
  color: #fff;
}

body.is-menu-open {
  overflow: hidden;
}

.m-header__hamburger {
  display: none;
}

.m-sp-menu {
  display: none;
}

@media screen and (max-width: 900px) {
  .m-header__inner {
    height: 64px;
    padding: 0 16px;
  }
  .m-header__logo img {
    height: 28px;
    max-width: 120px;
  }
  .m-header__tel-group {
    display: none;
  }
  .m-header__pc-actions {
    display: none;
  }
  .m-header__hamburger {
    display: block;
  }
  .m-header__menu-btn {
    width: 44px;
    height: 44px;
    border: 0;
    background: #de709d;
    border-radius: 50%;
    position: relative;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .m-header__menu-btn span {
    position: absolute;
    left: 11px;
    width: 22px;
    height: 2px;
    background: #fff;
    transition: 0.3s;
  }
  .m-header__menu-btn span:nth-child(1) {
    top: 14px;
  }
  .m-header__menu-btn span:nth-child(2) {
    top: 21px;
  }
  .m-header__menu-btn span:nth-child(3) {
    top: 28px;
  }
  .m-header__menu-btn.is-open span:nth-child(1) {
    top: 21px;
    transform: rotate(45deg);
  }
  .m-header__menu-btn.is-open span:nth-child(2) {
    opacity: 0;
  }
  .m-header__menu-btn.is-open span:nth-child(3) {
    top: 21px;
    transform: rotate(-45deg);
  }
  .m-sp-menu {
    display: block;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: 0.3s;
    overflow-y: auto;
  }
  .m-sp-menu::before {
    content: "";
    position: fixed;
    top: 64px;
    left: 0;
    width: 100%;
    height: calc(100vh - 64px);
    background-color: rgba(187, 153, 127, 0.8);
    z-index: -1;
    pointer-events: none;
  }
  .m-sp-menu.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .m-sp-menu__inner {
    padding: 60px 40px 80px;
    background-color: #fff;
  }
  .m-sp-menu__link {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 24px 0;
    color: #de709d;
    font-size: 1.8rem;
    font-weight: 700;
    border-top: 1px solid #de709d;
  }
  .m-sp-menu__link span:first-child {
    margin: 0 auto;
    transform: translateX(12px);
  }
  .m-sp-menu__link span:last-child {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
  }
  .m-sp-menu__link:last-of-type {
    border-bottom: 1px solid #de709d;
  }
  .m-sp-menu__tel {
    margin-top: 32px;
    border: 2px solid #de709d;
    border-radius: 12px;
    padding: 5px 20px;
    text-align: center;
    background-color: #fff;
  }
  .m-sp-menu__number {
    display: block;
    color: #de709d;
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.2;
  }
  .m-sp-menu__time {
    margin-top: 8px;
    font-size: 1.3rem;
    line-height: 1.6;
    color: #444;
  }
}
/* ----------------------------------------
 * フッター
 * ---------------------------------------- */
.m-footer {
  padding: 40px 0;
}

.m-footer__inner {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.m-footer__copy {
  color: #de709d;
  font-size: 1.2rem;
}

.m-footer__logo img {
  height: 32px;
}

@media screen and (max-width: 767px) {
  .m-footer__inner {
    flex-direction: column-reverse;
    gap: 20px;
    text-align: center;
  }
  .m-footer__logo img {
    height: 28px;
  }
}
/* ----------------------------------------
 * main
 * ---------------------------------------- */
.o-top {
  max-width: 1920px;
  margin: 0 auto;
}

.m-kv {
  margin-bottom: clamp(20px, 2.6041666667vw, 50px);
}

.m-message {
  padding: 0px 24px;
  margin-bottom: 40px;
}
.m-message__inner {
  max-width: 1500px;
  margin: 0 auto;
  padding: 4.1145833333vw 40px 3.3854166667vw;
  background: #fff;
  border-radius: 60px;
  border: 1px solid #de709d;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}
.m-message__heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin-bottom: 3.125vw;
}
.m-message__image {
  flex: 0 1 120px;
  width: 100%;
  max-width: 1500px;
  height: auto;
  display: block;
}
.m-message__image img {
  width: 100%;
  height: auto;
  display: block;
}

.a-message__title {
  text-align: center;
  margin-bottom: 20px;
  font-size: 4rem;
}
.a-message__title span {
  position: relative;
  display: inline-block;
  color: #de709d;
  letter-spacing: 0.05em;
}
.a-message__title span::before, .a-message__title span::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 17px;
  height: 2px;
  background: #de709d;
}
.a-message__title span::before {
  right: calc(100% + 20px);
}
.a-message__title span::after {
  left: calc(100% + 20px);
}
.a-message__lead {
  font-size: clamp(32px, 2.5vw, 48px);
}
.a-message__text {
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 0;
  background: #fff0e3;
  border-radius: 30px;
  border: 1px solid #de709d;
}
.a-message__text p {
  margin-bottom: 20px;
  color: #de709d;
  font-weight: 500;
}

.m-text__head {
  font-size: 3rem;
  font-weight: bold;
}

.marker {
  background: linear-gradient(transparent 50%, #F2E1EA 50%);
  display: inline;
  background-repeat: no-repeat;
  background-size: 0% 100%;
  transition: background-size 1.5s;
  font-size: 3rem;
  font-weight: bold;
}

.marker.on {
  background-size: 100% 100%;
}

.is-pc {
  display: block;
}

.is-sp {
  display: none;
}

@media screen and (max-width: 767px) {
  .m-kv {
    margin-bottom: 13.3333333333vw;
  }
  .is-pc {
    display: none !important;
  }
  .is-sp {
    display: block;
  }
  .m-message {
    padding: 0 10px;
  }
  .m-message__inner {
    padding: 5.3333333333vw 4vw;
    border-radius: 6.6666666667vw;
  }
  .a-message__text {
    text-align: left;
    padding: 8vw 5.3333333333vw 1.3333333333vw;
  }
  .a-message__title {
    font-size: 5.3333333333vw;
  }
  .a-message__lead {
    line-height: 1.2;
  }
  .a-message__lead p {
    line-height: 1.2;
  }
  .marker {
    font-size: 5.3333333333vw;
  }
}
@media screen and (max-width: 767px) {
  .m-message__images-sp.is-sp {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    margin-top: 30px;
    padding: 0 20px;
  }
}

.m-message__image-sp-item {
  width: 48%;
}
.m-message__image-sp-item img {
  width: 100%;
  height: auto;
  display: block;
}

.m-leaseback__image {
  position: relative;
  display: block;
  box-sizing: border-box;
  transform-style: preserve-3d;
  margin: 0 auto;
  margin-top: 2.5vw;
}
.m-leaseback__image__inner {
  position: relative;
  border: 1px solid #de709d;
  border-radius: 30px;
  overflow: hidden;
  background: #fff;
  transform: translateZ(2px);
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 16px;
}
.m-leaseback__image__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 0 50px;
  box-sizing: border-box;
}
.m-leaseback__image__row img {
  width: calc(50% - 8px);
  height: auto;
  display: block;
}
.m-leaseback__image__caption {
  width: 100%;
  text-align: left;
  padding: 0 50px;
  box-sizing: border-box;
  margin: 0;
  font-weight: bold;
}
.m-leaseback__text {
  margin-top: min(48px, 3vw);
}
.m-leaseback__text p b {
  font-size: 2.4rem;
}
.m-leaseback__slider-container {
  width: 100%;
  overflow-x: auto;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
  padding: 40px 0 35px;
  margin-top: 40px;
}
.m-leaseback__slider-container::-webkit-scrollbar {
  display: none;
}
.m-leaseback__slider-container {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.m-leaseback__slider {
  display: flex;
  gap: 24px;
  justify-content: flex-start;
  width: max-content;
  margin: 0 auto;
}
.m-leaseback__flex-container {
  width: 100%;
  padding: 40px 0 35px;
  margin-top: 40px;
}
.m-leaseback__flex {
  display: flex;
  gap: 24px;
  justify-content: center;
  width: 100%;
  margin: 0 auto;
}
.m-leaseback__flex__content {
  width: 100%;
}
.m-leaseback__flex__content .m-leaseback__card-header {
  align-items: center;
}
.m-leaseback__flex__list {
  width: 20%;
  flex: initial;
}
.m-leaseback__card {
  position: relative;
  flex: 0 0 calc((100% - 96px) / 5);
  min-height: 300px;
  white-space: normal;
  background: #fff;
  border-radius: 24px;
  padding: 36px 24px;
  box-sizing: border-box;
  border-style: solid;
  border-width: 25px 1px 1px 1px;
  transform-style: preserve-3d;
  transform: translateZ(2px);
  justify-content: center;
}
.m-leaseback__card--slider {
  flex: 0 0 260px;
}
.m-leaseback__card--slider .m-leaseback__card-ttl {
  font-size: 3rem;
}
.m-leaseback__card--blue {
  border-color: #2e74b8;
}
.m-leaseback__card--blue::after {
  border-color: #2e74b8;
}
.m-leaseback__card--blue .m-leaseback__card-ttl {
  color: #2e74b8;
}
.m-leaseback__card--green {
  border-color: #6eb98f;
}
.m-leaseback__card--green::after {
  border-color: #6eb98f;
}
.m-leaseback__card--green .m-leaseback__card-ttl {
  color: #6eb98f;
}
.m-leaseback__card--orange {
  border-color: #f0a23a;
}
.m-leaseback__card--orange::after {
  border-color: #f0a23a;
}
.m-leaseback__card--orange .m-leaseback__card-ttl {
  color: #f0a23a;
}
.m-leaseback__card--purple {
  border-color: #8e72c7;
}
.m-leaseback__card--purple::after {
  border-color: #8e72c7;
}
.m-leaseback__card--purple .m-leaseback__card-ttl {
  color: #8e72c7;
}
.m-leaseback__card--lightblue {
  border-color: #5e9ed5;
}
.m-leaseback__card--lightblue::after {
  border-color: #5e9ed5;
}
.m-leaseback__card--lightblue .m-leaseback__card-ttl {
  color: #5e9ed5;
}
.m-leaseback__card-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 20px;
}
.m-leaseback__card-num {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 700;
  font-family: sans-serif;
  margin-bottom: 3.125vw;
}
.m-leaseback__card-ttl {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.5;
}
.m-leaseback__card-txt {
  font-size: 1.4rem;
  line-height: 1.6;
  color: #333;
}

@media screen and (max-width: 767px) {
  .m-leaseback__text {
    text-align: left;
  }
  .m-leaseback p b {
    font-size: 1.6rem;
  }
  .m-leaseback__card-ttl {
    font-size: 4.6666666667vw;
  }
  .m-leaseback__card-ttl br {
    display: none;
  }
  .m-leaseback__image::after {
    top: 6px;
    left: 6px;
    border-radius: 24px;
  }
  .m-leaseback__image__inner {
    border-radius: 24px;
    display: block;
  }
  .m-leaseback__image__inner img {
    padding: 0;
    max-width: 100%;
    width: 100%;
  }
  .m-leaseback__slider-container {
    width: 100%;
    overflow-x: visible;
    white-space: normal;
    padding: 20px 0;
    margin-top: 20px;
    margin-left: 0;
    margin-right: 0;
  }
  .m-leaseback__slider {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 0;
    width: 100%;
  }
  .m-leaseback__flex-container {
    display: block;
    padding: 0;
  }
  .m-leaseback__flex {
    display: block;
  }
  .m-leaseback__card {
    width: 100%;
    flex: none;
    min-height: auto;
    padding: 28px 16px;
    border-radius: 24px;
    border-width: 25px 1px 1px 1px;
    margin-bottom: 8px;
  }
  .m-leaseback__card::after {
    top: 8px;
    left: 8px;
    width: 100%;
    height: 100%;
    border-radius: 24px;
  }
  .m-leaseback__card-header {
    gap: 10px;
    margin-bottom: 14px;
  }
  .m-leaseback__card-num {
    width: 32px;
    height: 32px;
    font-size: 1.3rem;
  }
  .m-leaseback__card-ttl {
    font-size: clamp(17.5px, 4.6667vw, 35px) !important;
  }
  .m-leaseback__card-txt {
    font-size: 1.4rem;
  }
  .m-leaseback__image__row {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0;
    gap: 12px;
  }
  .m-leaseback__image__row img {
    width: 100%;
  }
  .m-leaseback__image__caption {
    padding: 0;
    font-size: 1.4rem;
  }
}
.m-leaseback__card {
  display: flex;
  flex-direction: column;
}
.m-leaseback__card--pink-fixed {
  flex: 0 1 calc((100% - 48px) / 3);
  border-color: #e57373;
}
.m-leaseback__card--pink-fixed::after {
  border-color: #e57373;
}
.m-leaseback__card--pink-fixed .m-leaseback__card-num {
  background: #e57373;
}
.m-leaseback__card--pink-fixed .m-leaseback__card-ttl {
  color: #e57373;
  font-size: 2.2rem;
}
.m-leaseback__card--pink-fixed .m-leaseback__card-txt {
  margin-top: auto;
}

.m-leaseback__card--pink-fixed {
  border-width: 1px;
  border-color: #de709d;
  text-align: center;
  flex: 0 0 calc((100% - 48px) / 3);
  min-height: 320px;
}
.m-leaseback__card--pink-fixed::after {
  border-color: #de709d;
}
.m-leaseback__card--pink-fixed .m-leaseback__card-header {
  gap: 8px;
}
.m-leaseback__card--pink-fixed .m-leaseback__card-num {
  background: transparent;
  border-radius: 0;
  width: auto;
  height: auto;
  color: #de709d;
  font-size: 3.6rem;
  font-weight: 700;
  font-family: sans-serif;
  line-height: 1;
  margin-bottom: 0;
}
.m-leaseback__card--pink-fixed .m-leaseback__card-ttl {
  color: #de709d;
  font-size: 3rem;
  margin: 0 auto;
}
.m-leaseback__card--deco {
  max-width: 80px;
  margin-bottom: 10px;
}
.m-leaseback__card-img {
  width: 100%;
  height: auto;
  margin-bottom: 24px;
  border-radius: 12px;
  overflow: hidden;
  max-width: 100px;
  max-height: 100px;
  margin: 20px auto;
}
.m-leaseback__card-img img {
  width: 100%;
  height: auto;
  display: block;
}

@media screen and (max-width: 767px) {
  .m-leaseback__card--pink-fixed {
    border-width: 1px;
    margin-bottom: 30px;
    min-height: auto;
    width: 100%;
    flex: initial;
  }
  .m-leaseback__card--pink-fixed .m-leaseback__card-num {
    font-size: 2.8rem;
  }
  .m-leaseback__card--pink-fixed .m-leaseback__card-ttl {
    text-align: center;
    display: block;
    margin: 0 auto;
  }
  .m-leaseback__card-header {
    display: flex;
    flex-direction: row;
    gap: 2.6666666667vw;
    margin-bottom: 0;
  }
  .m-leaseback__card {
    padding: 3.0666666667vw 5.2vw;
    border-radius: 10px;
  }
  .m-leaseback__card-img {
    border-radius: 8px;
  }
}
.m-voice {
  margin: 60px auto;
  background: transparent;
}
.m-voice__inner {
  max-width: 1500px;
  margin: 0 auto;
}
.m-voice__heading {
  margin-bottom: 60px;
}
.m-voice__heading .a-message__title {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 20px;
}
.m-voice__heading .a-message__title span::before {
  right: calc(100% + 15px);
}
.m-voice__heading .a-message__title span::after {
  left: calc(100% + 15px);
}
.m-voice__title-icon {
  width: auto;
  height: 40px;
  display: block;
}
.m-voice__content {
  margin: 0 auto;
  padding: 0px 24px;
}
.m-voice__list {
  display: flex;
  flex-direction: column;
  gap: 60px;
}
.m-voice__card {
  position: relative;
  box-sizing: border-box;
  transform-style: preserve-3d;
  transform: translateZ(2px);
}
.m-voice__card-inner {
  position: relative;
  background: #fff;
  border: 1px solid #de709d;
  border-radius: 0 30px 30px;
  padding: 40px 40px;
  z-index: 2;
}
.m-voice__label {
  position: absolute;
  top: -29px;
  left: -1px;
  background: #de709d;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 700;
  padding: 6px 24px;
  border-radius: 10px 10px 0 0;
  z-index: 3;
}
.m-voice__accordion {
  width: 100%;
  display: block;
}
.m-voice__accordion[open] .m-voice__btn-arrow {
  transform: rotate(180deg);
}
.m-voice__main {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  cursor: pointer;
  list-style: none;
  user-select: none;
  width: 100%;
}
.m-voice__main::-webkit-details-marker {
  display: none;
}
.m-voice__marker {
  background-image: linear-gradient(transparent 50%, #F2E1EA 50%);
  background-repeat: no-repeat;
  background-size: 0% 100%;
  display: inline;
  transition: background-size 1.5s;
}
.m-voice__marker br {
  display: none;
}
.m-voice__marker.on {
  background-size: 100% 100%;
}
.m-voice__text-area {
  flex: 1;
  max-width: 650px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}
.m-voice__sub-ttl {
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.5;
  color: #333;
  margin-bottom: 20px;
  text-align: left;
  width: 100%;
}
.m-voice__quote-block {
  display: inline-block;
  text-align: right;
  width: auto;
}
.m-voice__quote {
  font-size: 3.4rem;
  font-weight: 700;
  line-height: 1.6;
  position: relative;
  padding: 0 40px;
  text-align: left;
  display: block;
  width: auto;
  margin-bottom: 0;
}
.m-voice__quote::before {
  content: "";
  position: absolute;
  left: 0;
  top: -5px;
  width: 30px;
  height: 30px;
  background-image: url("../../img/leaseback/deco_1.png");
  background-size: contain;
  background-repeat: no-repeat;
}
.m-voice__quote::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -5px;
  width: 30px;
  height: 30px;
  background-image: url("../../img/leaseback/deco_2.png");
  background-size: contain;
  background-repeat: no-repeat;
}
.m-voice__name {
  font-size: 1.6rem;
  color: #666;
  text-align: right;
  display: block;
  width: 100%;
  margin-top: 20px;
  padding-right: 15px;
}
.m-voice__right-area {
  flex: 0 0 auto;
  display: flex;
  align-items: flex-end;
  gap: 20px;
}
.m-voice__img-block {
  width: 180px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.m-voice__img-box {
  width: 100%;
  height: auto;
  border-radius: 20px;
  overflow: hidden;
}
.m-voice__img-box img {
  width: 100%;
  height: auto;
  display: block;
}
.m-voice__caption {
  font-size: 1.1rem;
  color: #999;
  text-align: center;
  white-space: nowrap;
}
.m-voice__btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  background: #fff;
  color: #de709d;
  border: 1px solid #de709d;
  border-radius: 16px;
  padding: 12px 20px;
  white-space: nowrap;
  pointer-events: none;
}
.m-voice__btn-txt {
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.2;
}
.m-voice__btn-arrow {
  font-size: 0.8rem;
  color: #de709d;
  line-height: 1;
  transition: transform 0.3s ease;
}
.m-voice__body {
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px dashed #de709d;
}
.m-voice__detail-section {
  margin-bottom: 30px;
}
.m-voice__detail-section:last-child {
  margin-bottom: 0;
}
.m-voice__detail-ttl {
  position: relative;
  padding-left: 36px;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.5;
  color: #333;
  margin-bottom: 16px;
}
.m-voice__detail-ttl::before {
  content: "？";
  position: absolute;
  left: 0;
  top: 0.15em;
  width: 24px;
  height: 24px;
  background: #de709d;
  color: #fff;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1;
}
.m-voice__detail-marker {
  background-image: linear-gradient(transparent 50%, #F2E1EA 50%);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}
.m-voice__detail-txt {
  font-size: 1.5rem;
  line-height: 1.8;
  padding-left: 36px;
}
.m-voice__detail-txt p {
  margin-bottom: 12px;
}
.m-voice__detail-txt p:last-child {
  margin-bottom: 0;
}

.m-voice__more {
  text-align: center;
  margin-top: 40px;
  width: 100%;
}
.m-voice__more .a-button-pink {
  display: inline-block;
  font-size: 2rem;
  padding: 15px 50px;
}

@media screen and (max-width: 767px) {
  .m-voice {
    padding: 20px 16px;
  }
  .m-voice__content {
    padding: 0;
  }
  .m-voice__sub-ttl {
    text-align: center;
    font-size: 2rem;
  }
  .m-voice__marker br {
    display: block;
  }
  .m-voice__quote {
    font-size: 1.8rem;
    padding: 0;
    margin: 0 auto;
    width: 100%;
    text-align: center;
  }
  .m-voice__quote::before {
    left: 0;
    top: -5px;
    width: 15px;
    height: 15px;
  }
  .m-voice__quote::after {
    right: 0;
    bottom: -5px;
    width: 15px;
    height: 15px;
  }
  .m-voice__quote-block {
    text-align: center;
    width: 100%;
  }
  .m-voice__name {
    text-align: center;
  }
  .m-voice__heading {
    margin-bottom: 40px;
  }
  .m-voice__heading .a-message__title {
    gap: 10px;
  }
  .m-voice__heading .a-message__title span {
    font-size: 2.2rem;
  }
  .m-voice__heading .a-message__title span::before, .m-voice__heading .a-message__title span::after {
    width: 10px;
  }
  .m-voice__title-icon {
    height: 20px;
  }
  .m-voice__list {
    gap: 40px;
  }
  .m-voice__card-inner {
    padding: 30px 10px;
    border-radius: 0 20px;
  }
  .m-voice__card::after {
    top: 8px;
    left: 8px;
    border-radius: 20px;
  }
  .m-voice__label {
    top: -22px;
    font-size: 1.4rem;
    padding: 4px 16px;
  }
  .m-voice__main {
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
  }
  .m-voice__right-area {
    display: block;
  }
  .m-voice__img-block {
    width: 140px;
    text-align: center;
    margin: 0 auto;
  }
  .m-voice__btn {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 10px 16px;
    border-radius: 10px;
    width: 100%;
    box-sizing: border-box;
    margin-top: 20px;
  }
  .m-voice__btn-txt {
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.2;
  }
  .m-voice__btn-arrow {
    position: absolute;
    right: 16px;
    font-size: 0.8rem;
    color: #de709d;
    line-height: 1;
    transition: transform 0.3s ease;
  }
  .m-voice__body {
    margin-top: 20px;
    padding-top: 20px;
  }
  .m-voice__detail-ttl {
    padding-left: 7.4666666667vw;
    font-size: 4.6666666667vw;
  }
  .m-voice__detail-ttl::before {
    width: 5.3333333333vw;
    height: 5.3333333333vw;
    font-size: 3.2vw;
  }
  .m-voice__detail-txt {
    padding: 0;
    font-size: 4vw;
  }
  .m-voice__more .a-button-pink {
    font-size: 1.6rem;
  }
}
.m-article {
  padding: 0;
}
.m-article .m-message__inner {
  max-width: 1500px;
  margin: 0 auto;
  display: block;
}
.m-article .m-leaseback__heading {
  margin-bottom: 60px;
}
.m-article__content {
  width: 100%;
  display: block;
}
.m-article__list {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  gap: 24px;
  flex-wrap: wrap;
  width: 100%;
}
.m-article__card {
  position: relative;
  flex: 0 0 calc((100% - 48px) / 3);
  max-width: calc((100% - 48px) / 3);
  box-sizing: border-box;
  transform-style: preserve-3d;
  transform: translateZ(2px);
}
.m-article__card-link {
  display: block;
  text-decoration: none;
  color: inherit;
  height: 100%;
}
.m-article__card-inner {
  position: relative;
  background: #fff;
  border: 1px solid #de709d;
  border-radius: 20px;
  padding: 24px;
  height: 100%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  z-index: 2;
}
.m-article__card-img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 16px;
}
.m-article__card-img img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  aspect-ratio: 16/9;
}
.m-article__card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  position: relative;
  padding-bottom: 30px;
}
.m-article__card-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.m-article__cat-label {
  display: inline-block;
  background: #de709d;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  padding: 2px 10px;
  border-radius: 4px;
  line-height: 1.4;
}
.m-article__card-ttl {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.5;
  color: #de709d;
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-box-direction: normal;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.m-article__card-txt {
  font-size: 1.4rem;
  line-height: 1.6;
  color: #666;
  display: -webkit-box;
  -webkit-box-direction: normal;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.m-article__acf-fields {
  margin-top: 12px;
  border-top: 1px dotted #F2E1EA;
  padding-top: 12px;
}
.m-article__target {
  font-size: 1.2rem;
  color: #de709d;
  font-weight: 700;
  margin-bottom: 8px;
}
.m-article__point {
  background: #F8F1F5;
  padding: 12px;
  border-radius: 8px;
  margin-bottom: 8px;
}
.m-article__point span {
  display: block;
  font-size: 1.1rem;
  color: #de709d;
  font-weight: 700;
  margin-bottom: 4px;
}
.m-article__point p {
  font-size: 1.3rem;
  line-height: 1.5;
}
.m-article__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
}
.m-article__tags a {
  display: inline-block;
  background: #F8F1F5;
  color: #de709d;
  font-size: 1.2rem;
  padding: 4px 12px;
  border-radius: 4px;
  font-weight: 700;
  transition: all 0.3s ease;
}
.m-article__tags a:hover {
  background: #de709d;
  color: #fff;
}
.m-article__card-arrow {
  position: absolute;
  right: 0;
  bottom: 0;
  font-size: 2rem;
  font-weight: 700;
  color: #de709d;
  line-height: 1;
}
.m-article__btn-wrap {
  display: flex;
  justify-content: center;
  margin-top: 50px;
}
.m-article__btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  background: #fff;
  color: #de709d;
  border: 1px solid #de709d;
  border-radius: 16px;
  padding: 12px 32px;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  text-decoration: none;
}
.m-article__btn:hover {
  background: #de709d;
  color: #fff;
}
.m-article__btn:hover .m-article__btn-arrow {
  color: #fff;
}
.m-article__btn-txt {
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.2;
}
.m-article__btn-arrow {
  font-size: 0.8rem;
  color: #de709d;
  line-height: 1;
  transition: color 0.3s ease;
}
.m-article__pager {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}
.m-article__pager .nav-links {
  display: flex;
  gap: 8px;
}
.m-article__pager .page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid #de709d;
  border-radius: 8px;
  color: #de709d;
  font-size: 1.4rem;
  font-weight: 700;
  text-decoration: none;
}
.m-article__pager .page-numbers.current {
  background: #de709d;
  color: #fff;
}
.m-article__pager .page-numbers:hover:not(.current) {
  background: #F8F1F5;
}
.m-article__none {
  font-size: 1.6rem;
  color: #666;
  text-align: center;
  width: 100%;
  padding: 40px 0;
}

@media screen and (max-width: 767px) {
  .m-article .m-message__inner {
    display: flex;
  }
  .m-article .m-leaseback__heading {
    margin-bottom: 40px;
  }
  .m-article__list {
    flex-direction: column;
    gap: 32px;
  }
  .m-article__card {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .m-article__card-inner {
    padding: 20px;
  }
  .m-article__btn-wrap {
    margin-top: 35px;
  }
}
.m-leaseback__deco {
  max-width: 200px;
}
.m-leaseback__flex__content {
  display: flex;
  gap: 24px;
  width: 100%;
  justify-content: space-between;
  align-items: stretch;
}
.m-leaseback__flex__content .m-leaseback__card-num {
  display: flex;
  align-items: baseline;
  gap: 6px;
  color: #de709d;
  margin-bottom: 8px;
}
.m-leaseback__flex__content .m-leaseback__card-step {
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1;
}
.m-leaseback__flex__content .m-leaseback__card-number {
  font-size: 4.8rem;
  font-weight: 700;
  line-height: 1;
  font-family: sans-serif;
}
@media screen and (max-width: 767px) {
  .m-leaseback__flex__content {
    flex-direction: column;
    gap: 0;
    align-items: center;
  }
  .m-leaseback__flex__content .m-leaseback__card-num {
    align-items: baseline;
    align-self: flex-start;
  }
  .m-leaseback__flex__content .m-leaseback__card-step {
    font-size: 1.5rem;
  }
  .m-leaseback__flex__content .m-leaseback__card-number {
    font-size: 3.8rem;
  }
}
.m-leaseback__card--fixed {
  flex: 0 0 calc((100% - 96px) / 5);
  border: 1px solid #de709d;
  background: #fff;
  border-radius: 24px;
  padding: 20px;
  position: relative;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.m-leaseback__card--fixed .m-leaseback__card-num {
  color: #de709d;
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 8px;
  background: none !important;
  width: auto;
  height: auto;
}
.m-leaseback__card--fixed .m-leaseback__card-ttl {
  color: #de709d;
  font-size: 1.8rem;
  margin-bottom: 40px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 5.4rem;
}
.m-leaseback__card--fixed .m-leaseback__card-txt {
  text-align: left;
  flex-grow: 1;
  width: 100%;
}
.m-leaseback__card--fixed .m-leaseback__card-arrow {
  position: absolute;
  right: -27px;
  top: 50%;
  transform: translateY(-50%);
  color: #de709d;
  font-size: 2rem;
  font-weight: bold;
}
.m-leaseback__card-img {
  margin: 15px auto;
}
.m-leaseback__card-img img {
  width: 100%;
  height: auto;
}

.m-leaseback__card-info {
  display: contents;
}
.m-leaseback__card--deco {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 60px;
  margin: 15px auto;
}
.m-leaseback__card--deco img {
  display: block;
  width: auto;
  max-width: 100%;
  height: 100%;
  max-height: 60px;
  object-fit: contain;
}

@media screen and (max-width: 767px) {
  .m-leaseback__card--fixed {
    flex: 0 0 200px;
    padding: 20px 10px;
  }
  .m-leaseback__card--fixed .m-leaseback__card-arrow {
    right: inherit;
    top: inherit;
    bottom: -36px;
    transform: rotate(90deg);
  }
  .m-leaseback__card--fixed .m-leaseback__card-ttl {
    min-height: auto;
    margin-bottom: 0;
  }
  .m-leaseback__card--fixed .m-leaseback__card-txt {
    flex-grow: 0;
  }
  .m-leaseback__flex__list {
    width: 100%;
    margin-bottom: 50px;
  }
  .m-leaseback__flex__content .m-leaseback__card-ttl {
    justify-content: flex-start;
  }
}
@media screen and (max-width: 767px) {
  .m-leaseback__card--fixed {
    flex: 0 0 200px;
    padding: 20px 10px;
  }
  .m-leaseback__card--fixed .m-leaseback__card-arrow {
    right: inherit;
    top: inherit;
    bottom: -36px;
    transform: rotate(90deg);
  }
  .m-leaseback__flex__list {
    width: 100%;
    margin-bottom: 50px;
  }
  .m-leaseback__card-info {
    display: flex;
    align-items: center;
    gap: 16px;
    width: 100%;
    margin: 12px 0;
  }
  .m-leaseback__card--deco {
    width: 8.8vw;
    height: 8.8vw;
    flex-shrink: 0;
    margin: 0;
  }
  .m-leaseback__card-ttl {
    text-align: left;
    margin: 0;
    flex: 1;
  }
  .m-leaseback__card-txt {
    text-align: left;
    width: 100%;
  }
}
.m-contact-integrated {
  position: relative;
  border: 1px solid #de709d;
  border-radius: 30px;
  padding: 40px;
  margin-top: 40px;
  width: 100%;
  box-sizing: border-box;
  background: #fff;
  transform-style: preserve-3d;
  transform: translateZ(2px);
}
.m-contact-integrated__title {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  font-size: 3.2rem;
  color: #de709d;
  margin-bottom: 30px;
  font-weight: bold;
  background-color: #fff;
}
.m-contact-integrated__content {
  display: flex;
  justify-content: space-around;
  gap: 60px;
  align-items: center;
  text-align: center;
  margin-top: 20px;
}
.m-contact-integrated__tel-num {
  display: block;
  font-size: 5.2rem;
  color: #de709d;
  font-weight: 700;
  text-decoration: none;
  margin: 8px 0;
  line-height: 1;
}
.m-contact-integrated__time {
  font-size: 1.4rem;
  color: #333;
}

.a-button-pink {
  display: block;
  padding: 15px 30px;
  background: #de709d;
  color: #fff;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  margin-top: 15px;
  transition: opacity 0.3s;
  font-size: 2.6rem;
}
.a-button-pink:hover {
  opacity: 0.8;
}
.a-button-pink-white {
  background: #fff;
  color: #de709d;
  border: 1px solid #de709d;
}
.a-button-pink-white:hover {
  background: #de709d;
  color: #fff;
}

.m-message--centered-content .m-leaseback__deco {
  display: block;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.m-message--centered-content .m-leaseback__deco img {
  display: inline-block;
}
.m-message--centered-content .m-text__head {
  font-size: 3rem;
  text-align: center;
  width: 100%;
}
.m-message--centered-content p {
  text-align: center;
  width: 100%;
}

@media screen and (max-width: 1057px) {
  .m-contact-integrated__tel-num {
    font-size: 3.6rem;
  }
  .m-contact-integrated .a-button-pink {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  .m-message--centered-content .m-text__head {
    font-size: 5.3333333333vw;
    text-align: center;
    width: 100%;
  }
  .m-contact-integrated {
    border: none;
    background: transparent;
    padding: 0;
    margin-top: 50px;
  }
  .m-contact-integrated::after {
    display: none;
  }
  .m-contact-integrated__content {
    display: block;
    margin-top: 0;
  }
  .m-contact-integrated__title {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: auto;
    margin: 0;
    padding: 0 15px;
    background: #fff;
    font-size: 1.6rem;
    white-space: nowrap;
    z-index: 2;
  }
  .m-contact-integrated__tel {
    position: relative;
    padding: 40px 20px 25px;
    border: 1px solid #de709d;
    border-radius: 20px;
    background: #fff;
    transform-style: preserve-3d;
    transform: translateZ(2px);
    margin-bottom: 30px;
  }
  .m-contact-integrated__mail {
    border: none;
    padding: 0;
    background: transparent;
  }
  .m-contact-integrated__tel-num {
    font-size: 2.6rem;
  }
}
.m-document {
  margin: 60px auto;
  background: transparent;
}
.m-document__heading {
  margin-bottom: 60px;
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .m-document__heading {
    padding: 0 24px;
  }
}
.m-document__heading .a-message__title {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: 100%;
}
.m-document__heading span {
  font-size: 2.8rem;
  font-weight: 700;
  white-space: nowrap;
  text-align: center;
  justify-self: center;
}
.m-document__title-icon {
  height: 40px;
  width: auto;
  display: block;
  max-width: 100%;
}
.m-document .a-message__title img:first-child {
  justify-self: start;
}
.m-document .a-message__title img:last-child {
  justify-self: end;
}
@media (max-width: 768px) {
  .m-document__heading .a-message__title {
    grid-template-columns: auto 1fr auto;
    gap: 10px;
  }
  .m-document span {
    font-size: 2rem;
    padding: 0 8px;
    white-space: normal;
  }
  .m-document__title-icon {
    height: auto;
    max-width: 100px;
  }
}
.m-document__inner {
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .m-document__inner {
    padding: 0 24px;
  }
}
.m-document__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  grid-template-rows: auto auto auto auto;
}
@media (max-width: 768px) {
  .m-document__list {
    display: flex;
    flex-direction: column;
  }
}
.m-document__card {
  box-sizing: border-box;
  border-width: 3px;
  border-color: #de709d;
  border-style: solid;
  border-radius: 25px;
  background-image: linear-gradient(180deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0.6) 60%, rgb(252, 223, 233) 100%);
  padding: 40px 30px;
  grid-row: span 4;
  display: grid;
  grid-template-rows: subgrid;
  align-items: start;
}
@media (max-width: 768px) {
  .m-document__card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
}
.m-document__card-title {
  font-size: 2rem;
  font-weight: 700;
  color: #de709d;
  margin-bottom: 0;
  line-height: 1.4;
}
.m-document__card-text {
  font-size: 1.5rem;
  line-height: 1.6;
  color: #333;
  margin-top: 20px;
  margin-bottom: 0;
}
.m-document__card-img {
  width: 100%;
  margin-top: 20px;
  display: flex;
  justify-content: center;
  align-self: end;
}
.m-document__card-img img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
}
.m-document__card-btn {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 30px;
  padding: 15px 20px;
  background-color: #de709d;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  border-radius: 4px;
  box-sizing: border-box;
  transition: opacity 0.3s ease;
  align-self: end;
}
.m-document__card-btn:hover {
  opacity: 0.8;
}
.m-document__card-btn-icon {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  width: auto;
  height: 16px;
  display: block;
}

/*# sourceMappingURL=leaseback.css.map */
