/* =========================================================
   LIFE X DEALER
   CONCEPT PAGE
========================================================= */

/* =========================================================
   LIFE X DEALER
   CONCEPT PAGE
   BOX SIZING
========================================================= */

.lifex-concept-about,
.lifex-concept-about *,
.lifex-concept-about *::before,
.lifex-concept-about *::after,
.lifex-concept-features,
.lifex-concept-features *,
.lifex-concept-features *::before,
.lifex-concept-features *::after {
  box-sizing: border-box;
}
/* =========================================================
   WHAT IS LIFE X?
========================================================= */

.lifex-concept-about {
  width: 100%;
  overflow: hidden;
  padding: 110px 0 130px;
  background: #fff;
}

.lifex-concept-about__inner {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}


/* =========================================================
   MAIN
========================================================= */

.lifex-concept-about__main {
  display: grid;
  grid-template-columns: minmax(300px, .9fr) minmax(0, 1.1fr);

  gap: clamp(55px, 6vw, 95px);
  align-items: center;
}


/* =========================================================
   HEADING
========================================================= */

.lifex-concept-about__heading {
  position: relative;
  z-index: 5;
}

.lifex-concept-about__en {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-bottom: 38px;
}

.lifex-concept-about__en span {
  flex: 0 0 auto;
  color: #527B88;
  font-family: "Outfit", sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: .08em;
}

.lifex-concept-about__en i {
  display: block;
  width: 130px;
  height: 1px;
  background: #527B88;
}

.lifex-concept-about__title {
  margin: 0;
  color: #263f49;
  font-size: clamp(42px, 4.2vw, 43px);
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: .03em;
}

.lifex-concept-about__sub {
  margin: 38px 0 0;
  color: #53636a;
  font-size: 16px;
  font-weight: 500;
  line-height: 2;
  letter-spacing: .04em;
}


/* =========================================================
   PHOTO COLLAGE
========================================================= */

.lifex-concept-about__photos {
  position: relative;
  width: calc(100% + 40px);
  margin-right: -40px;
  padding-bottom: 155px;
}

.lifex-concept-about__photo {
  margin: 0;
}


/* ---------------------------------------------------------
   MAIN PHOTO
--------------------------------------------------------- */

.lifex-concept-about__photo--main {
  position: relative;
  z-index: 1;
  width: 100%;
  overflow: hidden;
}

.lifex-concept-about__photo--main img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}


/* ---------------------------------------------------------
   SUB PHOTO 01
   左下 / 縦型
--------------------------------------------------------- */

.lifex-concept-about__photo--sub01 {
  position: absolute;
  z-index: 3;

  left: -13%;
  bottom: 5px;

  width: 34%;
  height: 330px;

  overflow: hidden;
  border: 9px solid #fff;
  box-sizing: border-box;
}

.lifex-concept-about__photo--sub01 img {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center center;
}


/* ---------------------------------------------------------
   SUB PHOTO 02
   右下 / 横型
--------------------------------------------------------- */

.lifex-concept-about__photo--sub02 {
  position: absolute;
  z-index: 2;

  right: 7%;
  bottom: 0;

  width: 34%;
  aspect-ratio: 1.45 / 1;

  overflow: hidden;

  border: 9px solid #fff;
}

.lifex-concept-about__photo--sub02 img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}


/* =========================================================
   MESSAGE
========================================================= */

.lifex-concept-about__message {
  position: relative;

  display: grid;
  grid-template-columns:
    minmax(0, 1fr)
    minmax(250px, .58fr);

  gap: clamp(75px, 9vw, 135px);
  align-items: center;

  width: 100%;
  max-width: 1140px;

  margin: 105px auto 0;
  padding-top: 100px;
}

.lifex-concept-about__message::before {
  content: "";

  position: absolute;
  top: 0;
  left: 0;

  width: 72px;
  height: 1px;

  background: #527B88;
}


/* =========================================================
   MESSAGE COPY
========================================================= */

.lifex-concept-about__message-copy {
  min-width: 0;
}

.lifex-concept-about__message-en {
  margin: 0 0 22px;

  color: #527B88;

  font-family: "Outfit", sans-serif;
  font-size: 12px;
  font-weight: 600;
  line-height: 1;

  letter-spacing: .14em;
}

.lifex-concept-about__message-title {
  margin: 0 0 38px;

  color: #263f49;

  font-size: clamp(27px, 2.8vw, 38px);
  font-weight: 700;
  line-height: 1.65;

  letter-spacing: .025em;
}

.lifex-concept-about__message-text {
  color: #53636a;
}

.lifex-concept-about__message-text p {
  margin: 0;
  line-height: 2.05;
}

.lifex-concept-about__message-text p + p {
  margin-top: 22px;
}


/* =========================================================
   DIAGRAM
========================================================= */

.lifex-concept-about__diagram {
  width: 100%;
  max-width: 350px;
  margin: 0 auto;
}

.lifex-concept-about__diagram-label {
  margin: 0 0 22px;

  color: #527B88;

  font-size: 13px;
  font-weight: 600;
  line-height: 1.7;

  letter-spacing: .06em;
}

.lifex-concept-about__diagram img {
  display: block;
  width: 100%;
  height: auto;
}


/* =========================================================
   TABLET
========================================================= */

@media screen and (max-width: 1024px) {

  .lifex-concept-about {
    padding: 90px 0 110px;
  }

  .lifex-concept-about__inner {
    padding: 0 30px;
  }

  .lifex-concept-about__main {
    grid-template-columns:
      minmax(260px, .75fr)
      minmax(0, 1.25fr);

    gap: 45px;
  }

  .lifex-concept-about__photos {
    width: calc(100% + 30px);
    margin-right: -30px;
    padding-bottom: 130px;
  }

  .lifex-concept-about__photo--sub01 {
    left: -10%;
    width: 34%;
  }

  .lifex-concept-about__photo--sub02 {
    right: 5%;
    width: 35%;
  }

  .lifex-concept-about__message {
    gap: 65px;
  }

}


/* =========================================================
   SP
========================================================= */

@media screen and (max-width: 767px) {

  .lifex-concept-about {
    padding: 65px 0 85px;
  }

  .lifex-concept-about__inner {
    padding: 0 20px;
  }


  /* =======================================================
     MAIN
  ======================================================= */

  .lifex-concept-about__main {
    display: block;
  }


  /* =======================================================
     HEADING
  ======================================================= */

  .lifex-concept-about__heading {
    margin-bottom: 42px;
  }

  .lifex-concept-about__en {
    gap: 14px;
    margin-bottom: 25px;
  }

  .lifex-concept-about__en span {
    font-size: 11px;
  }

  .lifex-concept-about__en i {
    width: 75px;
  }

  .lifex-concept-about__title {
    font-size: 27px;
    line-height: 1.5;
  }

  .lifex-concept-about__sub {
    margin-top: 25px;
    font-size: 13px;
    line-height: 1.9;
  }


  /* =======================================================
     PHOTO COLLAGE
  ======================================================= */

  .lifex-concept-about__photos {
    width: calc(100% + 20px);
    margin-right: -20px;
    padding-bottom: 125px;
  }

  .lifex-concept-about__photo--main {
    width: 100%;
    aspect-ratio: 1.22 / 1;
  }


  /* left vertical */

  .lifex-concept-about__photo--sub01 {
    left: -5px;
    bottom: -23px;
    height: 200px;
    width: 39%;
    aspect-ratio: .8 / 1;

    border-width: 6px;
  }


  /* right horizontal */

  .lifex-concept-about__photo--sub02 {
    right: -2px;
    bottom: 24px;

    width: 46%;
    aspect-ratio: 1.35 / 1;

    border-width: 6px;
  }


  /* =======================================================
     MESSAGE
  ======================================================= */

  .lifex-concept-about__message {
    display: flex;
    flex-direction: column;

    gap: 48px;

    margin-top: 60px;
    padding-top: 58px;
  }

  .lifex-concept-about__message::before {
    width: 48px;
  }


  /* =======================================================
     MESSAGE COPY
  ======================================================= */

  .lifex-concept-about__message-en {
    margin-bottom: 17px;
    font-size: 10px;
  }

  .lifex-concept-about__message-title {
    margin-bottom: 28px;
    font-size: 21px;
    line-height: 1.65;
  }

  .lifex-concept-about__message-text p {
    line-height: 1.95;
  }

  .lifex-concept-about__message-text p + p {
    margin-top: 18px;
  }


  /* =======================================================
     DIAGRAM
  ======================================================= */

  .lifex-concept-about__diagram {
    width: 68%;
    max-width: 260px;
    margin: 0 auto;
  }

  .lifex-concept-about__diagram-label {
    margin-bottom: 17px;
    text-align: center;
    font-size: 11px;
  }

}

/* =========================================================
   LIFE X 5 FEATURES
========================================================= */

.lifex-concept-features {
  width: 100%;
  padding: 130px 0 150px;
  background: #f7f9f9;
}


/* =========================================================
   INTRO
========================================================= */

.lifex-concept-features__intro {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto 130px;
  padding: 0 40px;
}

.lifex-concept-features__intro-en {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 28px;
}

.lifex-concept-features__intro-en span {
  color: #527B88;
  font-family: "Outfit", sans-serif;
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: .12em;
}

.lifex-concept-features__intro-en i {
  display: block;
  width: 130px;
  height: 1px;
  background: #527B88;
}

.lifex-concept-features__intro-title {
  margin: 0;
  color: #263f49;
  font-size: clamp(36px, 4vw, 54px);
  font-weight: 700;
  line-height: 1.5;
}

.lifex-concept-features__intro-text {
  margin: 32px 0 0;
  color: #53636a;
  line-height: 2;
}


/* =========================================================
   FEATURE
========================================================= */

.lifex-concept-feature {
  display: grid;
  grid-template-columns:
    minmax(320px, .85fr)
    minmax(0, 1.15fr);

  align-items: center;
  gap: clamp(65px, 8vw, 120px);

  width: 100%;
  max-width: 1280px;

  margin: 0 auto;
  padding: 0 40px;
}

.lifex-concept-feature + .lifex-concept-feature {
  margin-top: 170px;
}


/* =========================================================
   REVERSE
========================================================= */

.lifex-concept-feature--reverse {
  grid-template-columns:
    minmax(0, 1.15fr)
    minmax(320px, .85fr);
}

.lifex-concept-feature--reverse .lifex-concept-feature__media {
  order: 2;
}

.lifex-concept-feature--reverse .lifex-concept-feature__content {
  order: 1;
}


/* =========================================================
   MEDIA
========================================================= */

.lifex-concept-feature__media {
  position: relative;
  width: 100%;
  height: clamp(430px, 48vw, 640px);
  overflow: hidden;
}

.lifex-concept-feature__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform .8s ease;
}

.lifex-concept-feature:hover .lifex-concept-feature__media img {
  transform: scale(1.025);
}


/* =========================================================
   CONTENT
========================================================= */

.lifex-concept-feature__content {
  position: relative;
  max-width: 670px;
}

.lifex-concept-feature__number {
  position: absolute;
  top: -70px;
  right: 0;

  color: rgba(82, 123, 136, .08);

  font-family: "Outfit", sans-serif;
  font-size: clamp(90px, 9vw, 140px);
  font-weight: 500;
  line-height: 1;
}

.lifex-concept-feature__en {
  position: relative;
  z-index: 1;

  margin: 0 0 12px;

  color: #527B88;

  font-family: "Outfit", sans-serif;
  font-size: 12px;
  font-weight: 600;
  line-height: 1;

  letter-spacing: .13em;
}

.lifex-concept-feature__title {
  position: relative;
  z-index: 1;
padding-bottom: 21px;
    border-bottom: solid 1px #527B87;
  margin: 0 0 34px;

  color: #527B87;

  font-size: 35px;
  font-weight: 700;
}

.lifex-concept-feature__catch {
  position: relative;
  z-index: 1;

  margin: 0 0 28px;

  color: #263f49;

  font-size: clamp(25px, 2.5vw, 28px);
  font-weight: 700;
  line-height: 1.65;
}

.lifex-concept-feature__text {
  margin: 0;

  color: #53636a;

  line-height: 2;
}

.lifex-concept-feature__note {
  margin: 28px 0 0;

  color: #69777c;

  line-height: 1.95;
}


/* =========================================================
   TAGS
========================================================= */

.lifex-concept-feature__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;

  margin: 28px 0 0;
  padding: 0;

  list-style: none;
}

.lifex-concept-feature__tags li {
  margin: 0;
  padding: 7px 13px;

  border: 1px solid #b7c9ce;

  color: #527B88;

  font-size: 12px;
  font-weight: 600;
  line-height: 1.4;
}


/* =========================================================
   LINK
========================================================= */

.lifex-concept-feature__link {
  display: inline-flex;
  align-items: center;
  gap: 35px;

  margin-top: 38px;
  padding-bottom: 9px;

  border-bottom: 1px solid #527B88;

  color: #263f49;
  text-decoration: none;

  transition:
    color .3s ease,
    gap .3s ease;
}

.lifex-concept-feature__link span {
  font-weight: 600;
}

.lifex-concept-feature__link i {
  color: #527B88;

  font-family: "Outfit", sans-serif;
  font-style: normal;
}

.lifex-concept-feature__link:hover {
  gap: 46px;
  color: #527B88;
}


/* =========================================================
   VARIATION
========================================================= */

.lifex-concept-feature--performance .lifex-concept-feature__media {
  height: clamp(500px, 53vw, 690px);
}

.lifex-concept-feature--standard .lifex-concept-feature__media {
  height: clamp(410px, 43vw, 560px);
}

.lifex-concept-feature--design .lifex-concept-feature__media {
  height: clamp(520px, 54vw, 700px);
}

.lifex-concept-feature--cost .lifex-concept-feature__media {
  height: clamp(420px, 45vw, 580px);
}

.lifex-concept-feature--plan .lifex-concept-feature__media {
  height: clamp(480px, 50vw, 650px);
}


/* =========================================================
   TABLET
========================================================= */

@media screen and (max-width: 1024px) {

  .lifex-concept-features {
    padding: 110px 0 130px;
  }

  .lifex-concept-features__intro {
    margin-bottom: 100px;
    padding: 0 30px;
  }

  .lifex-concept-feature {
    grid-template-columns:
      minmax(280px, .9fr)
      minmax(0, 1.1fr);

    gap: 55px;
    padding: 0 30px;
  }

  .lifex-concept-feature--reverse {
    grid-template-columns:
      minmax(0, 1.1fr)
      minmax(280px, .9fr);
  }

  .lifex-concept-feature + .lifex-concept-feature {
    margin-top: 135px;
  }

  .lifex-concept-feature__number {
    top: -50px;
  }

}


/* =========================================================
   SP
========================================================= */

@media screen and (max-width: 767px) {

  .lifex-concept-features {
    padding: 80px 0 95px;
  }


  /* INTRO */

  .lifex-concept-features__intro {
    margin-bottom: 75px;
    padding: 0 20px;
  }

  .lifex-concept-features__intro-en {
    gap: 14px;
    margin-bottom: 20px;
  }

  .lifex-concept-features__intro-en span {
    font-size: 10px;
  }

  .lifex-concept-features__intro-en i {
    width: 75px;
  }

  .lifex-concept-features__intro-title {
    font-size: 30px;
    line-height: 1.55;
  }

  .lifex-concept-features__intro-text {
    margin-top: 22px;
    line-height: 1.9;
  }


  /* FEATURE */

  .lifex-concept-feature,
  .lifex-concept-feature--reverse {
    display: flex;
    flex-direction: column;

    gap: 42px;

    padding: 0 20px;
  }

  .lifex-concept-feature + .lifex-concept-feature {
    margin-top: 105px;
  }

  .lifex-concept-feature--reverse .lifex-concept-feature__media,
  .lifex-concept-feature--reverse .lifex-concept-feature__content {
    order: initial;
  }


  /* MEDIA */

  .lifex-concept-feature__media,
  .lifex-concept-feature--performance .lifex-concept-feature__media,
  .lifex-concept-feature--standard .lifex-concept-feature__media,
  .lifex-concept-feature--design .lifex-concept-feature__media,
  .lifex-concept-feature--cost .lifex-concept-feature__media,
  .lifex-concept-feature--plan .lifex-concept-feature__media {
    height: auto;
    aspect-ratio: 1.15 / 1;
  }


  /* CONTENT */

  .lifex-concept-feature__content {
    max-width: none;
  }

  .lifex-concept-feature__number {
    top: -34px;
    right: 0;

    font-size: 78px;
  }

  .lifex-concept-feature__en {
    font-size: 10px;
  }

  .lifex-concept-feature__title {
    margin-bottom: 24px;
    font-size: 16px;
  }

  .lifex-concept-feature__catch {
    margin-bottom: 23px;

    font-size: 19px;
    line-height: 1.6;
  }

  .lifex-concept-feature__text {
    line-height: 1.9;
  }

  .lifex-concept-feature__tags {
    margin-top: 23px;
  }

  .lifex-concept-feature__tags li {
    padding: 6px 10px;
    font-size: 11px;
  }

  .lifex-concept-feature__note {
    margin-top: 23px;
    line-height: 1.9;
  }

  .lifex-concept-feature__link {
    gap: 25px;
    margin-top: 30px;
  }

}