@charset "utf-8";
@import "setting-custom.css";
/* === CSS変数は setting-custom.cssを読み込み === */

/* ーーーーーーーーーーーーーーーーーーーーーーーーーー
白抜きフォントの指定（背景が白Var）
ーーーーーーーーーーーーーーーーーーーーーーーーーー */
.mv-copy {
  font-family: var(--main-font);
  font-size: clamp(3.2rem, 5.8vw, 6.3rem);
  font-weight: 600;
  line-height: 1.45;
  letter-spacing: 0.1em;
  color: var(--fontcolor-black);
  text-align: center;
  .outline {
    color: #fff;
    font-family: var(--notoserif-jp-font);
    -webkit-text-stroke: 3.9px var(--fontcolor-black);
    text-stroke: 3.9px var(--fontcolor-black);
    paint-order: stroke fill;
    @media (max-width: 767px) {
      -webkit-text-stroke: 3px var(--fontcolor-black);
      text-stroke: 3px var(--fontcolor-black);
    }
  }
}
/* ーーーーーーーーーーーーーーーーーーーーーーーーーー
白抜きフォントの指定（背景が黒Var）
ーーーーーーーーーーーーーーーーーーーーーーーーーー */
.mv-copy-bk {
  font-family: var(--main-font);
  font-size: clamp(3.2rem, 5.8vw, 6.3rem);
  font-weight: 600;
  line-height: 1.45;
  letter-spacing: 0.1em;
  color: var(--fontcolor-white);
  text-align: center;
  .outline {
    color:#303030;
    font-family: var(--notoserif-jp-font);
    -webkit-text-stroke: 3.9px var(--fontcolor-white);
    text-stroke: 3.9px var(--fontcolor-white);
    paint-order: stroke fill;
    @media (max-width: 767px) {
      -webkit-text-stroke: 2px var(--fontcolor-white);
      text-stroke: 2px var(--fontcolor-white);
    }
  }
}

/* 下からシュッとアニメーション */
.mv-copy {
  .reveal-line {
    overflow: hidden;
    /* display: block; */
    padding-bottom: 0.08em;
  }

  .reveal-line > span {
    display: inline-block;
    opacity: 0;
    transform: translateY(110%);
  }

  &.is-active {
    .reveal-line > span {
animation: mvCopySlideReveal 1.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    }
  }
}

@keyframes mvCopySlideReveal {
  0% {
    opacity: 1;
    transform: translateY(110%);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* アニメーション 一文字ずつ流れるように */
.js-fadeup-text {
  span {
    display: inline-block;
    opacity: 0;
    transform: translateY(24px);
  }

  &.is-active {
    span {
      animation: fadeupText 0.6s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
    }
  }
}

@keyframes fadeupText {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 順番に下からシュッと出現するアニメーション */
.js-stagger-item {
  opacity: 0;
  transform: translateY(40px);
}

.js-stagger.is-active .js-stagger-item {
  animation: staggerFadeUp 0.7s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
}

@keyframes staggerFadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


.lower-inner {
    max-width: 1600px;
    width: 100%;
    margin: 0 auto;
    @media (max-width: 1600px) {
        padding: 0 20px;
    }
}
/* 下層ページ h2見出し */
 .lower-comn__head {
    position: relative;
    z-index: 30;
    display: flex;
    align-items: end;
    gap: 25px;
    max-width: 1600px;
    width: 100%;
    margin: 0 auto 65px;
    @media (max-width: 767px) {
        flex-direction: column;
        gap: 0;
        align-items: flex-start;
        margin: 0 auto 45px;
    }
    h2 {
        margin: 0;
        font-size: 4.2rem;
        line-height: 1;
        font-weight: 400;
        font-family: var(--mplus1-font);
        letter-spacing: 0.04em;
        border-bottom: 2px solid #fff;
        @media (max-width: 820px) {
            font-size: 3.5rem;
        }
        @media (max-width: 767px) {
            font-size: 3rem;
        }
    }
    h2.dark {
        border-bottom: 2px solid #393939;
    }
    span {
        display: block;
        margin-top: 12px;
        font-size: 2rem;
        font-weight: 600;
        letter-spacing: 0.1rem;
        line-height: 1.5;
        @media (max-width: 767px) {
            font-size: 1.7rem;
        }
    }
  }

/* 下層ページ h3見出し 画像バージョン */
/* .lower-comn__imgttl {
    line-height: 1;
    & img {
        display: block;
        width: auto;
    }
} */

.lower_head {
  position: relative;
  overflow: hidden;
  height: 640px;
  @media (max-width: 767px) {
    height: 430px;
  }

  & #header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
  }

  & .lower-mv {
    position: relative;
    z-index: 1;
    width: 100%;
    aspect-ratio: 375 / 210;
    overflow: hidden;
    height: 100%;


    & .mv__video {
      position: absolute;
      inset: 0;
      z-index: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      pointer-events: none;
    }

    & .lower-mv__overlay {
      position: absolute;
      inset: 0;
      z-index: 1;
background: #ffffff;
background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%);
      pointer-events: none;
    }

    & .lower-mv__content {
      position: absolute;
      left: 7%;
      bottom: 30%;
      z-index: 2;
      color: #333;
      @media (max-width: 767px) {
          bottom: 37%;
      }
      .lower-ttl {
        margin: 0;
        font-size: 9rem;
        font-family: var(--mplus1-font);
        font-weight: 500;
        line-height: 1.1;
        @media (max-width: 820px) {
          font-size: 6rem;
        }
        @media (max-width: 767px) {
            font-size: 4.3rem;
        }
    }
    .lower-txt {
        margin: 10px 0 0;
        font-size: 2rem;
        font-family: var(--main-font);
        font-weight: 600;
        line-height: 1;
        @media (max-width: 767px) {
            font-size: 1.7rem;
        }
    }
    }
  }
}

/* 導入文 共通 */
.our-name--txt {
    font-size: 1.8rem;
    text-align: center;
    line-height: 2;
    letter-spacing: 0.05rem;
    @media (max-width: 767px) {
        font-size: 1.6rem;
    }
}

/* ーーーーーーーーーーーーーーーーーーーーーーーーーー
会社案内
ーーーーーーーーーーーーーーーーーーーーーーーーーー */
.column_about {
  padding-top: 100px;
  @media screen and (max-width: 767px) {
    padding: 65px 0;
  }
    .our-name {
        text-align: center;
        margin-bottom: 100px;
        padding: 0 20px;
        @media (max-width: 767px) {
            margin-bottom: 50px;
        }
        .our-name--subtxt {
            font-weight: 400;
            font-size: 4.2rem;
            font-family: var(--mplus1-font);
            border-bottom: 2px solid #000;
            margin-bottom: 30px;
            display: inline-block;
            line-height: 1;
            @media (max-width: 820px) {
              font-size: 3rem;
            } 
            @media (max-width: 767px) {
                font-size: 2.1rem;
            }
        }
.our-name--mainttl {
  font-size: 10rem;
  font-weight: 500;
  font-family: var(--times-new-roman-font);
  margin-bottom: 30px;
  line-height: 1.1;

  span {
    display: inline-block;
    opacity: 0;
    transform: translateY(24px);
  }

  &.is-active span {
    animation: ourNameFadeUp 0.6s cubic-bezier(0.215, 0.610, 0.355, 1.000) forwards;
  }

  @media (max-width: 1024px) {
    font-size: 8rem;
  }

  @media (max-width: 820px) {
    font-size: 7rem;
  }

  @media (max-width: 767px) {
    font-size: 3.3rem;
  }
}

   }

}
@keyframes ourNameFadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.xp-css-stack {
  overflow: clip;
  padding: 0 5px;

  & .xp-css-stack__frame {
    position: relative;
    margin: 0 auto;
    padding: 96px 40px 92px;
    border-radius: 10px;
    overflow: visible;
        background: linear-gradient(
        to bottom,
        #303030 100%,   /* 上は透明 */
        #222222 100%  /* 下は完全白 */
    );
    color: #fff;
    @media (max-width: 767px) {
        padding: 35px 20px;
    }
  }

  & .xp-css-stack__logo {
    position: sticky;
    top: 120px;
    z-index: 20;
    display: block;
    width: 690px;
    height: 544px;
    aspect-ratio: 1 / 0.55;
    margin: 0 auto -510px;
    background: url("../img/about/about-logo.png") center / contain no-repeat;
    opacity: 0.5;
    pointer-events: none;
    @media (max-width: 767px) {
      width: 450px;
    }
  }


  & .xp-css-stack__item {
    max-width: 1600px;
    width: 100%;
    margin:  0 auto;
    position: sticky;
    top: 120px;
    display: grid;
    align-items: start;
    grid-template-columns: 44px minmax(0, 1fr) 450px;
    gap: 28px;
    min-height: 210px;
    padding: 73px 0;
    overflow: hidden;
        background: linear-gradient(
        to bottom,
        #303030 100%,   /* 上は透明 */
        #222222 100%  /* 下は完全白 */
    );
  }

& .xp-css-stack__body--txx {
  grid-column: 2 / -1; /* ←ここがポイント */
  width: 100%;
      margin: 10px 0 0;
    font-size: 1.7rem;
    line-height: 2;
    font-weight: 400;
    letter-spacing: 0.06em;
}

  & .xp-css-stack__item + .xp-css-stack__item {
    border-top: 1px solid rgba(255, 255, 255, 0.16);
  }

  & .xp-css-stack__item--01 {
    z-index: 2;
  }

  & .xp-css-stack__item--02 {
    z-index: 3;
  }

  & .xp-css-stack__item--03 {
    z-index: 4;
  }

  & .xp-css-stack__num,
  & .xp-css-stack__body,
  & .xp-css-stack__word {
    position: relative;
    z-index: 30;
  }

  & .xp-css-stack__num {
    font-family: var(--mplus1-font);
    font-size: 3.2rem;
    line-height: 1;
    font-weight: 400;
    padding-top: 17px;
  }
  h3.mv-copy-bk {
    text-align: left;
    font-size: 6rem;
    @media (max-width: 1400px) {
      font-size: 4rem;
    }
  }

/* .xp-css-stack__body h3 {
  margin: 0;
  line-height: 1;
}

.xp-css-stack__body h3 img {
  display: block;
  width: auto;
} */



  & .xp-css-stack__word {
    align-self: start;
    justify-self: end;
    font-size: 10rem;
    font-family: var(--mplus1-font);
    line-height: 1;
    transform: translateY(-0.08em);
    font-weight: 700;
    color: rgba(255, 255, 255, 0.1);
  }
}
@media (max-width: 1024px) {
  .xp-css-stack {
  & .xp-css-stack__item {
    grid-template-columns: 44px minmax(0, 1fr) 330px;
  }
    & .xp-css-stack__word {
      font-size: 7rem;
    }
  h3.mv-copy-bk {
    font-size: 3.9rem;
  }
  }

  
}
@media (max-width: 820px) {

  .xp-css-stack {
    & .xp-css-stack__item {
      gap: 18px;
    }
  & .xp-css-stack__item {
    grid-template-columns: 44px minmax(0, 1fr) 230px;
  }
  & .xp-css-stack__num {
    font-size: 3rem;
    padding-top: 5px;
  }
  h3.mv-copy-bk {
    font-size: 3rem;
  }
    & .xp-css-stack__word {
      font-size: 5.1rem;
    }
    & .xp-css-stack__body--txx {
      font-size: 1.5rem;
    }
  }
}
@media (max-width: 767px) {
  .xp-css-stack {
    & .xp-css-stack__item {
      grid-template-columns: 32px 1fr; /* 28pxだと01が改行される */
      column-gap: 10px;
      gap: 10px;
    }
    & .xp-css-stack__item--01 {
        padding-top: 15px;
    }

    & .xp-css-stack__num {
      white-space: nowrap;
      font-size: 2rem;
      line-height: 1;
      writing-mode: horizontal-tb; /* 念のため */
    }

    /* & .xp-css-stack__body h3 img {
        margin-bottom: 10px;
    } */
  h3.mv-copy-bk {
    font-size: 2.2rem;
  }

    & .xp-css-stack__word {
      grid-column: 2 / 3;
      grid-row: 2;
      text-align: left;
      width: 100%;

      position: relative;
      top: auto;
      right: auto;
      font-size: 2.8rem;
      line-height: 1;
    }
    & .xp-css-stack__body--txx {
        margin-top: 0;
    }
  }
}


/* 会社案内 メッセージ */
.message-section {
  position: relative;
  padding: 80px 0 96px;
  background-color: #fff;
  overflow: hidden;
  color: #282828;


  & .message-section__inner {
    position: relative;
    z-index: 1;
    margin: 0 auto;

  }
  & .message-section__content {
    display: flex;
    gap: 30px;
    align-items: start;
    justify-content: space-between;
    @media (max-width: 820px) {
        flex-wrap: wrap;
        justify-content: center;
    }
    
  }
  & .mv-copy {
    text-align: left;
    margin-top: 30px;
    @media (max-width: 767px) {
      margin-top: 15px;
    }
  }
  & .mv-copy::before {
    content: "";
    background-image: url(../img/about/message-icon.png);
    background-size: contain;
    background-repeat: no-repeat;
    display: block;
    width: 30px;
    height: 26px;
    @media (max-width: 767px) {
      width: 20px;
      height: 16px;
    }
  }
  & .message-section__txt {
    width: 100%;
    max-width: 910px;
  }

  & .message-section__text {
    padding-top: 30px;
    & p {
      margin: 0;
      font-size: 1.7rem;
      line-height: 2;
      font-weight: 400;
      letter-spacing: 0.07em;
      @media (max-width: 767px) {
        font-size: 1.6rem;
      }

      & + p {
        margin-top: 22px;
      }
    }
  }

  & .message-section__sign {
    margin-top: 70px;
    text-align: right;
    @media (max-width: 820px) {
      margin-top: 30px;
    }

    & p {
      margin: 0 54px 12px 0;
      font-size: 1.7rem;
      line-height: 1;
      font-weight: 400;
      letter-spacing: 0.06em;
      @media (max-width: 820px) {
        margin: 0 auto 15px;
      text-align: center;
      }
      @media (max-width: 767px) {
        font-size: 1.5rem;
      }

      & span {
        font-size: 2.3rem;
        font-weight: 400;
        @media (max-width: 820px) {
          font-size: 1.9rem;
        }
      }
    }
    & img {
        display: block;
        margin-left: auto;
        @media (max-width: 820px) {
          width: 70% !important;
          margin: 0 auto;
        }
    }
  }

  & .message-section__sign.pc {
    @media (max-width: 820px) {
        display: none;
    }
  }
  & .message-section__sign.sp {
    display: none;
    @media (max-width: 820px) {
        display: block;
    }
  }

  & .message-section__photo {
    & img {
      display: block;
      width: 100%;
      max-width: 540px;
      margin-left: auto;
      border-radius: 8px;
      object-fit: cover;
    }
  }
}


.loop-slider {
  overflow: hidden;
  padding: 100px 0;

  @media (max-width: 767px) {
    padding: 0;
  }

  & .splide__track {
    overflow: visible;
  }

  & .splide__list {
    align-items: center;
  }

  & .splide__slide {
    width: auto;
    flex-shrink: 0;

    & img {
      display: block;
      width: 100%;
      height: 450px;
      object-fit: cover;
      border-radius: 6px;
      @media (max-width: 820px) {
        height: 300px;
      }
      @media (max-width: 767px) {
        height: 180px;
      }
    }
  }
}

/* 会社概要 */
.overview {
  position: relative;
  padding: 72px 0 96px;
  overflow: hidden;

  & .overview__table {
    width: 100%;
  }

  & .overview__row {
    display: grid;
    grid-template-columns: 300px 1fr;
    column-gap: 8px;
  }

  & .overview__th,
  & .overview__td {
    min-height: 72px;
    display: flex;
    align-items: center;
    border-top: 1px solid var(--fontcolor-black);
    font-size: 1.8rem;
    line-height: 1.9;
    letter-spacing: 0.04em;
  }

    & .overview__row:first-child .overview__th,
  & .overview__row:first-child .overview__td {
    border-top: none;
  }

  & .overview__row:last-child .overview__th,
  & .overview__row:last-child .overview__td {
    border-bottom: 1px solid rgba(0, 0, 0, 0.18);
  }

  & .overview__th {
    padding: 0 32px;
    font-weight: 600;
  }

  & .overview__td {
    padding: 15px 34px;
    font-weight: 400;
    border-top: 1px solid #CDCDCD;
  }
}

@media (max-width: 767px) {
  .overview {
    padding: 60px 0 64px;

    & .overview__table {
      width: 100%;
    }

    & .overview__row {
      display: block;
      border-top: 1px solid #cdcdcd;
      padding: 18px 0;
    }

    & .overview__row:first-child {
      border-top: none;
    }
    .overview__row:last-child .overview__th,
    .overview__row:last-child .overview__td {
      border-bottom: none;
    }
    & .overview__row:last-child {
      border-bottom: 1px solid #cdcdcd;
    }

    & .overview__th,
    & .overview__td {
      min-height: auto;
      display: block;
      border-top: none;
      padding: 0;
      line-height: 1.8;
      letter-spacing: 0.04em;
    }

    & .overview__th {
      margin-bottom: 8px;
      font-size: 1.4rem;
      font-weight: 600;
    }

    & .overview__td {
      font-size: 1.5rem;
      font-weight: 400;
    }

    & .overview__td br {
      display: block;
    }
  }
}

/* MAP */
.googlemap {
    padding-top: 35px;
    width: 100vw;
    margin-left: calc(50% - 50vw);

    iframe {
      display: block;
      width: 100%;
      height: 450px;
      border: 0;
    }

    @media (max-width: 767px) {
      iframe {
        height: 320px;
      }
    }
}

/* ーーーーーーーーーーーーーーーーーーーーーーーーーー
事業案内
ーーーーーーーーーーーーーーーーーーーーーーーーーー */
.column_business {
  padding-top: 100px;
  @media (max-width: 767px) {
    padding-top: 65px;
  }
  .business_ttl {
    display: block;
    width: auto;
    margin: 0 auto 50px;
    max-width: 100%;
    @media (max-width: 767px) {
      font-size: 2.3rem;
      margin: 0 auto 30px;
    }
  .outline {
    @media (max-width: 767px) {
      -webkit-text-stroke: 2px var(--fontcolor-black);
      text-stroke: 2px var(--fontcolor-black);
    }
  }
  }
.business__inner {
  max-width: 1600px;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  padding: 80px 20px 100px;
  @media (max-width: 820px) {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  @media (max-width: 767px) {
    padding: 50px 20px 70px;
  }
}

.business-card {
  position: relative;
  display: block;
  overflow: hidden;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
}

.business-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.12);
  border-radius: 8px;
  transition: transform 0.7s ease;
}

.business-card:hover {
  opacity: 1;
}
.business-card:hover .business-card__img {
  transform: scale(1);
}

.business-card__overlay {
  position: absolute;
  inset: 0;
  background: rgba(20, 23, 39, 0.65);
  border-radius: 8px;
  z-index: 1;
}

.business-card__text {
  position: absolute;
  top: 37px;
  left: 33px;
  z-index: 2;
  margin-bottom: 5px;
  @media (max-width: 767px) {
    top: 27px;
    left: 19px;
  }
}

.business-card__text span {
  display: block;
  font-size: 2.2rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.7);
  @media (max-width: 1024px) {
    font-size: 1.7rem;
  }
  @media (max-width: 767px) {
    font-size: 1.5rem;
  }
}

.business-card__text h3 {
  margin: 0;
  font-size: 3.7rem;
  font-weight: 400;
  letter-spacing: 0.07em;
  @media (max-width: 1024px) {
    font-size: 2.7rem;
  }
  @media (max-width: 820px) {
    font-size: 4rem;
  }
  @media (max-width: 767px) {
    font-size: 2.1rem;
  }
}

.business-card__arrow {
  position: absolute;
  right: 33px;
  bottom: 33px;
  z-index: 2;
  width: 65px;
  height: 65px;
  transition: background 0.3s ease, transform 0.3s ease;
  @media (max-width: 767px) {
  right: 23px;
  bottom: 23px;
  width: 40px;
  height: 40px;
  }
}

/* .business-card:hover .business-card__arrow {
  background: rgba(255,255,255,0.18);
  transform: translateX(3px);
} */

}

/* ーーーーーーーーーーーーーーーーーーーーーーーーーー
不動産売買事業
ーーーーーーーーーーーーーーーーーーーーーーーーーー */
.column_real-estate {
  padding: 100px 0 100px; 
  @media (max-width: 767px) {
    padding: 65px 0 60px;
  }
.lower-inner {
  display: grid;
  grid-template-columns: 1fr 46.5%;
  gap: 35px;
  align-items: start;
  @media (max-width: 820px) {
    grid-template-columns: 1fr;
    gap: 15px;
  }

}

.investment__en {
  margin: 0 0 8px;
  color: #333;
  font-size: 6rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.03em;
  font-family: var(--mplus1-font);
  @media (max-width: 1024px) {
    font-size: 4rem;
  }
  @media (max-width: 767px) {
    font-size: 3.5rem;
  }
}

.investment__ttl {
  margin-bottom: 45px;
  color: #333;
  font-size: 3.7rem;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.06em;
  @media (max-width: 1400px) {
    font-size: 3rem;
    margin-bottom: 30px;
  }
  @media (max-width: 1200px) {
    font-size: 2.8rem;
  }
  @media (max-width: 1024px) {
    font-size: 2.6rem;
    margin-bottom: 30px;
  }
  @media (max-width: 767px) {
    font-size: 1.8rem;
  }
}

.investment__content p:not(.investment__en) {
  margin-bottom: 15px;
  font-size: 1.7rem;
  line-height: 2.1;
  letter-spacing: 0.04em;
  @media (max-width: 1024px) {
    font-size: 1.6rem;
    margin-bottom: 10px;
  }
}

.investment__image {
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 600 / 450;
}

.investment__image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
}


.column_strength {
  overflow: clip;
  padding: 0 5px 100px;
  .strength_bg {
    padding: 150px 0 130px;
    color: var(--fontcolor-white);
    background: #202020;
    border-radius: 8px;
    overflow: hidden;
    @media screen and (max-width: 767px) {
      padding: 70px 15px 15px;
    }
  }

.strength__head {
  display: flex;
  align-items: flex-end;
  gap: 22px;
  margin-bottom: 58px;
}

.strength__head h2 {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 28px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.03em;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.strength__head span {
  margin-bottom: 2px;
  font-size: 12px;
  font-weight: 700;
}

.strength__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  @media (max-width: 820px) {
    gap: 100px;
     grid-template-columns: 1fr;
  }
}

.strength__item {
  position: relative;
  min-height: 280px;
}

.strength__point {
  display: inline-block;
  margin-bottom: 40px;
  padding: 3px 6px;
  color: var(--fontcolor-black);
  background: var(--fontcolor-white);
  font-size: 1.8rem;
  font-weight: 600;
  font-family: var(--mplus1-font);
  line-height: 1;
  @media (max-width: 767px) {
    margin-bottom: 15px;
  }
}

.strength__icon {
  position: absolute;
  top: -8px;
  right: 22px;
  filter: grayscale(1);
  @media (max-width: 767px) {
    top: -10px;
    right: 0;
  }
}

.strength__item h3 {
  margin: 0 0 26px;
  font-size: 2.3rem;
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: 0.08em;
  @media (min-width: 1450px) {
    font-size: 3rem;
  }
}

.strength__text {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.06em;
}

.strength__bgtext {
  margin-top: 30px;
  text-align: right;
  color: rgba(255,255,255,0.12);
  font-family: var(--mplus1-font);
  font-size: 3rem;
  font-weight: 400;
  line-height: 1;
  white-space: nowrap;
  letter-spacing: 0.02em;
  @media (min-width: 1450px) {
    font-size: 4rem;
  }
}
}

.column_offerings {
  padding: 0 0 100px;
  @media (max-width: 767px) {
    padding: 0;
  }
  .offerings__lead {
    margin-bottom: 50px;
    font-size: 1.6rem;
    line-height: 1.8;
    letter-spacing: 0.04em;
  }

.offerings__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  @media (max-width: 820px) {
     grid-template-columns: 1fr;
  }
}

.offerings-card {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  color: var(--fontcolor-white);
}
.offerings-card--img {
  width: 100%;
}
.offerings-card img {
  display: block;
  object-fit: contain;
}

.offerings-card__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.56);
  z-index: 1;
}

.offerings-card__content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: translateY(8px);
  text-align: center;
}

.offerings-card__icon {
  margin-bottom: 10px;
}

.offerings-card h3 {
  margin-bottom: 17px;
  font-size: 2.2rem;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.06em;
  @media (max-width: 767px) {
    font-size: 2rem;
  }
}

.offerings-card p {
  font-size: 1.6rem;
  line-height: 1.9;
  letter-spacing: 0.04em;
}
}

.column_process {
  padding: 100px 5px 200px;
  @media (max-width: 767px) {
    padding: 60px 5px 70px;
  }
  .process_bg {
    padding: 150px 0 130px;
    color: var(--fontcolor-black);
    background: linear-gradient(
      to bottom right,
      #ffffff 0%,
      #f0f0f0 100%
    );
    border-radius: 8px;
    overflow: hidden;
    @media (max-width: 767px) {
      padding: 60px 0;
    }
  }
}

.process__list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  .process__item {
    width: calc(100%/3 - 30px);
    @media (max-width: 767px) {
      width: 100%;
    }
  }
}



.process__step--flex {
  display: flex;
  align-items: center;
  width: 100%;
  min-width: 0;
  .process__step {
    position: relative;
    flex: 0 0 auto;
    & span {
      position: relative;
      z-index: 2;
      white-space: nowrap;
      display: inline-block;
      padding: 3px 5px;
      color: var(--fontcolor-white);
      background: var(--fontcolor-black);
      font-size: 1.8rem;
      font-family: var(--mplus1-font);
      font-weight: 600;
      line-height: 1;
    }
  }
  img {
  flex: 1 1 auto;
  min-width: 0;
  width: auto;
  max-width: 100%;
  height: 11px;
  object-fit: contain;
  }
}

.process__step.is-last::after {
  content: "";
  top: 6px;
  right: 0;
  width: 8px;
  height: 8px;
  background: #333;
  border-radius: 50%;
}

.process__body {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 15px;
  align-items: center;
  padding: 30px 20px;
  @media screen and (max-width: 767px) {
    grid-template-columns: 64px 1fr;
    padding: 30px 0;
  }
}

.process__icon {
  color: #171b35;
  font-size: 58px;
  line-height: 1;
  text-align: center;
}

.process__body h3 {
  margin-bottom: 20px;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.05em;
  @media (max-width: 1380px) {
    font-size: 2.2rem;
  }
  @media (max-width: 767px) {
    font-size: 1.9rem;
  }
}

.process__body p {
  font-size: 1.7rem;
  line-height: 2;
  letter-spacing: 0.04em;
  @media (max-width: 767px) {
    font-size: 1.6rem;
    line-height: 1.5;
  }
}


/* お問い合わせバナー */
/* .process_link {
  position: relative;
  display: block;
  width: 100%;
  min-height: 250px;
  border-radius: 8px;
  overflow: hidden;
  text-decoration: none;
  background: url("../img/real-estate/process-contact_bg.png") center / contain no-repeat;


  .process_link--flex {
    position: relative;
    z-index: 3;
    min-height: 250px;
    max-width: 1230px;
    width: 100%;
    margin: 0 auto;
    padding: 0 56px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .process_link--l {
    color: #fff;

    h3 {
      margin-bottom: 15px;
      font-size: 3.7rem;
      font-weight: 600;
      line-height: 1.35;
      letter-spacing: 0.04em;
    }

    p {
      font-size: 1.7rem;
      font-weight: 400;
      line-height: 1.8;
      letter-spacing: 0.04em;
    }
  }

  .process_link--r {
    max-width: 400px;
    width: 100%;
    height: 82px;
    padding: 0 34px 0 44px;
    border-radius: 999px;
    background: var(--bgcolor-white);
    color: var(--fontcolor-black);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-shrink: 0;

    p {
      font-size: 1.8rem;
      font-weight: 600;
      letter-spacing: 0.04em;
      margin: 0 auto;
    }

  }
  .process_link--r::after {
    content: "";
    background: url(../img/real-estate/contact_arrow.png);
    display: block;
    width: 20px;
    height: 16px;
  }

  &:hover {
    opacity: 1;
  }

} */
.process_link {
  max-width: 1600px;
  width: 100%;
  margin: -300px auto 200px;
  display: block;
  position: relative;
  z-index: 10;
  &:hover {
    opacity: 1;
  }
  @media screen and (max-width: 1600px) {
    padding: 0 20px;
  }
  @media screen and (max-width: 767px) {
    margin: -100px auto 100px;
  }
}

/* オプション販売事業 */
.options-btn {
  width: 100%;
  height: 100px;
  background: #EBEBEB;
  display: block;
  & .options-btn--flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    gap: 30px;
    @media (max-width: 767px) {
      gap: 15px;
    }
    .options-btn--l {
      display: flex;
      align-items: center;
      @media (max-width: 767px) {
        flex-direction: column;
        justify-content: start;
        align-items: flex-start;
      }
      .options-btn--l--sp {
        display: flex;
        align-items: center;
      }
      .options-btn--next {
        font-size: 2.2rem;
        font-family: var(--mplus1-font);
        font-weight: 600;
        @media (max-width: 767px) {
          font-size: 1.5rem;
        }
      }
      img {
        display: block;
        padding: 0 20px;
      }
      .options-btn--txt {
        font-size: 2.7rem;
        font-weight: 600;
        letter-spacing: 0.15rem;
        @media (max-width: 767px) {
          font-size: 2rem;
        }
      }
      .options-btn--sml {
        font-size: 1.9rem;
        color: rgba(0, 0, 0, 0.5);
        margin-left: 20px;
        @media (max-width: 820px) {
          font-size: 1.7rem;
        }
        @media (max-width: 767px) {
          margin-left: 0;
          font-size: 1.4rem;
          line-height: 1;
        }
      }
    }
  }
}


/* ーーーーーーーーーーーーーーーーーーーーーーーーーー
オプション販売事業
ーーーーーーーーーーーーーーーーーーーーーーーーーー */
.column_lineup {
  padding: 0 5px 100px; 
  @media (max-width: 767px) {
    padding: 0 0 60px;
  }
  .lineup_bg {
    padding: 150px 0 130px;
    color: var(--fontcolor-white);
    background: #202020;
    border-radius: 8px;
    overflow: hidden;
    @media screen and (max-width: 767px) {
      padding: 70px 0 70px;
      border-radius: 0;
    }
  }

.lineup__list {
  counter-reset: lineup;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 42px;
  padding-top: 65px;
  @media screen and (max-width: 820px) {
    grid-template-columns: 1fr;
    gap: 26px;
    padding-top: 35px;
  }
}

.lineup-card {
  counter-increment: lineup;
  position: relative;
  display: grid;
  grid-template-columns: 40% 1fr;
  gap: 0;
  min-height: 260px;
  overflow: hidden;
  background: var(--bgcolor-white);
  border-radius: 10px;
  @media screen and (max-width: 767px) {
    grid-template-columns: 1fr;
  }
}

/* 背景の大きな番号 */
.lineup-card::after {
  content: counter(lineup, decimal-leading-zero);
  position: absolute;
  right: 24px;
  bottom: -18px;
  z-index: 1;
  color: rgba(16, 24, 39, 0.055);
  font-family: Arial, sans-serif;
  font-size: 112px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.05em;
}

.lineup-card__img {
  position: relative;
  height: 100%;
  min-height: 260px;
  overflow: hidden;
  background: #101827;
}

.lineup-card__img::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(135deg, rgba(8,16,30,0.32), rgba(8,16,30,0.15)),
    linear-gradient(0deg, rgba(0,0,0,0.2), rgba(0,0,0,0));
}


.lineup-card__img img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transform: scale(1.12);
  filter: grayscale(15%) contrast(1.08);
  transition: transform 0.75s ease, filter 0.75s ease;
}

.lineup-card__body {
  position: relative;
  z-index: 2;
  padding: 40px 35px;
  @media screen and (max-width: 767px) {
    padding: 30px 15px;
  }
}

/* 左上の小さい番号ラベル */
.lineup-card__body::before {
  content: "0" counter(lineup);
  display: inline-block;
  margin-bottom: 15px;
  padding: 4px 9px 5px;
  color: #fff;
  background: var(--bgcolor-black);
  font-family: var(--mplus1-font);
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.08em;
}

.lineup-card__body h3 {
  position: relative;
  margin-bottom: 23px;
  padding-bottom: 18px;
  color: var(--fontcolor-black);
  font-size: 2.3rem;
  font-weight: 600;
  line-height: 1.45;
  letter-spacing: 0.04em;
  @media screen and (max-width: 767px) {
    font-size: 2rem;
  }
}

.lineup-card__body h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 90%;
  height: 1px;
  background: linear-gradient(90deg, #20242b, rgba(32,36,43,0));
}

.lineup-card__body p {
  margin: 0;
  color: var(--fontcolor-black);
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0.04em;
  @media screen and (max-width: 767px) {
    font-size: 1.5rem;
  }
}

/* hover時にカード自体も少し浮かせる */
.lineup-card {
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
}


.column_reason {
  padding: 0 0 100px;

.reason2__list {
  counter-reset: reason;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  @media screen and (max-width: 820px) {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* ===== カード ===== */
.reason2__item {
  counter-increment: reason;
  position: relative;
  padding: 50px 29px 40px;
  background: #fff;
  border-radius: 10px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 20px 50px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  overflow: hidden;
}

/* 左アクセントライン */
.reason2__item::before {
  content: "";
  position: absolute;
  top: 30px;
  left: 0;
  width: 4px;
  height: 70px;
  background: var(--bgcolor-black);
}

/* 背景番号 */
/* 元の数字は消す */
.reason2__item::after {
  content: "";
  position: absolute;
  right: 35px;
  top: 55px;
  width: 45px;
  height:45px;
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.7;
  pointer-events: none;
}

/* 各アイコン */
.reason2__item--01::after {
  background-image: url("../img/option/reason-icon01.png");
}

.reason2__item--02::after {
  background-image: url("../img/option/reason-icon02.png");
}

.reason2__item--03::after {
  background-image: url("../img/option/reason-icon03.png");
}

/* ===== ラベル ===== */
.reason2__label {
  display: inline-block;
  margin-bottom: 20px;
  padding: 5px 12px;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  background: var(--bgcolor-black);
  color: var(--fontcolor-white);
  @media screen and (max-width: 767px) {
    padding: 5px 10px;
    font-size: 1.4rem;
  }
}



/* ===== タイトル ===== */
.reason2__item h3 {
  margin-bottom: 23px;
  font-size: 2.3rem;
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: 0.04em;
  position: relative;
  padding-bottom: 23px;
  @media screen and (max-width: 767px)  {
    font-size: 2rem;
  }
}

.reason2__item h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 2px;
  background: var(--bgcolor-black);
}

/* ===== テキスト ===== */
.reason2__item p {
  font-size: 1.6rem;
  line-height: 1.7;
  color: var(--fontcolor-black);
}

/* ===== 背景英字 ===== */
.reason2__bg {
  font-size: 2.9rem;
  font-weight: 700;
  margin-top: 10px;
  color: rgba(0,0,0,0.05);
  letter-spacing: 0.08em;
}
}


/* ーーーーーーーーーーーーーーーーーーーーーーーーーー
販売実績 一覧
ーーーーーーーーーーーーーーーーーーーーーーーーーー */
.work-archive {
  padding: 50px 0 100px;
  @media (max-width: 767px) {
    padding-bottom: 70px;
    padding: 30px 0 70px;
  }
}

.work-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 72px 32px;
  @media (max-width: 767px) {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
}

.work-card__link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.work-card__img {
  position: relative;
  aspect-ratio: 1 / 1.28;
  overflow: hidden;
  border-radius:10px;
}

.work-card__img img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.7s ease;
  border-radius: 10px;
}
.work-card__img::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 145px;
  background: linear-gradient(
    -180deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(0, 0, 0, 1) 100%
  );
  pointer-events: none;
  border-radius: 0 0 10px 10px;
}
.work-card__link:hover .work-card__img img {
  transform: scale(1.06);
}
.work-card:hover .work-card__img img {
  transform: scale(1.06);
}

.work-card__soldout {
  position: absolute;
  top: 20px;
  right: 20px;
  max-width: 125px;
  width: 100%;
  height: 33px;
  border-radius: 30px;
  background: #363D87;
  color: var(--fontcolor-white);
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  font-family: var(--mplus1-font);
  font-weight: 500;
  letter-spacing: 0.04em;
  z-index: 2;
  @media (max-width: 820px) {
      line-height: 1.1;
    top: 10px;
    right: 10px;
    max-width: 100px;
    height: 25px;
    font-size: 1.3rem;
  }
}

.work-card__title {
  position: absolute;
  left: 0;
  bottom: 0;
  margin: 0;
  padding: 13px 14px 20px;
  color: var(--fontcolor-white);
  font-size: 2.1rem;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.1em;
  z-index: 2;
  @media (max-width: 767px) {
    font-size: 1.4rem;
  }
}

.work-pagination {
  margin-top: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  a {
    &:hover {
      border: initial;
    }
  }
}

.work-pagination .nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
}

.work-pagination .page-numbers {
  width: 43px;
  height: 43px;
  border: 1px solid transparent;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--fontcolor-darkblue);
  font-size: 1.4rem;
  text-decoration: none;
  line-height: 1;
}

.work-pagination .page-numbers.current {
  border-color: var(--fontcolor-darkblue);
}

.work-pagination a.page-numbers:hover {
  border-color: var(--fontcolor-darkblue);
}

/* ーーーーーーーーーーーーーーーーーーーーーーーーーー
販売実績 詳細
ーーーーーーーーーーーーーーーーーーーーーーーーーー */
.work-detail {
  padding: 90px 0;
}

.work-detail__title {
  text-align: center;
  font-size: 2.6rem;
  margin-bottom: 40px;
}

.work-slider {
  margin-bottom: 40px;
  padding-bottom: 30px;
  position: relative;
    overflow: hidden;

  .splide__track {
    overflow: hidden;
  }

  .splide__slide {
    opacity: 0.4;
    transition: opacity 0.3s ease;
  }

  .splide__slide.is-active {
    opacity: 1;
  }
}

.work-slider__img {
  position: relative;
  aspect-ratio: 6 / 4;
  overflow: hidden;
  background: #f5f5f5;

  img {
    width: 100%;
    height: 100%;
    display: block;
    border-radius:10px;
    object-fit: cover;
  }
  .work-card__soldout {
    @media (max-width: 820px) {
    top: 10px;
    right: 10px;
    max-width: 100px;
    height: 25px;
    font-size: 1.3rem;
    }
  }
}


.work-detail__content {
  max-width: 1200px;
  width: 100%;
  margin: 50px auto 0;
  line-height: 2;
  font-size: 1.6rem;
  @media (max-width: 767px) {
    font-size: 1.5rem;
    margin-top: 15px;
  }
}

/* 関連 */
.work-related {
  padding: 100px 0;
  @media (max-width: 767px) {
    padding: 50px 0;
  }
}

.work-related__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  .works_more_link {
    margin: 30px auto 0;
    display: flex;
    justify-content: center;
  }
}

.work-related h2 {
  text-align: center;
  margin-bottom: 40px;
}

.work-other-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.work-related__inner {
  .work-card__img {
  @media (max-width: 767px) {
        aspect-ratio: 3 / 2;
  }
}

}
.work-card__img {
  position: relative;
}

.work-slider .splide__arrow {
  width: 72px;
  height: 72px;
  background: transparent;
  opacity: 1;
}

.work-slider .splide__arrow svg {
  display: none;
}

.work-slider .splide__arrow--prev {
  left: 0;
  background: url("../img/work/arrow-l.png") center / contain no-repeat;
  filter: brightness(0) saturate(100%) invert(0%) sepia(97%) saturate(0%) hue-rotate(14deg) brightness(102%) contrast(103%);
}

.work-slider .splide__arrow--next {
  right: 0;
  background: url("../img/work/arrow-r.png") center / contain no-repeat;
  filter: brightness(0) saturate(100%) invert(0%) sepia(97%) saturate(0%) hue-rotate(14deg) brightness(102%) contrast(103%);
}
.work-slider .splide__pagination__page {
  background: var(--fontcolor-darkblue);
  opacity: 1;
}

.work-slider .splide__pagination__page.is-active {
  background: #001730;
  transform: scale(1);
}
@media (max-width: 820px) {
  .work-slider .splide__arrow {
    top: 45%;
    width: 33px;
    height: 33px;
  }

}
@media (max-width: 767px) {

  .work-detail {
    padding: 60px 0;
  }

  .work-detail__title {
    font-size: 2rem;
    margin-bottom: 28px;
  }

  .work-other-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }


  .work-slider .splide__arrow--prev {
    left: 0;
  }

  .work-slider .splide__arrow--next {
    right: 0;
  }

}

/* ーーーーーーーーーーーーーーーーーーーーーーーーーー
プライバシーポリシー
ーーーーーーーーーーーーーーーーーーーーーーーーーー */
.privacy {
  color: var(--fontcolor-black);
  background: var(--bgcolor-white);
}

.privacy-fv {
  padding: 100px 0 30px;
  @media (max-width: 767px) {
    padding: 65px 0 15px;
  }
}
.privacy-section__inner,
.privacy-fv__inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 40px;
  text-align: center;
  @media (max-width: 767px) {
    padding: 0 20px;
  }
}

.privacy-fv__label,
.privacy-section__head span {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--fontcolor-darkblue);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  font-family:var(--mplus1-font);
}

.privacy-fv h2 {
  margin: 0 0 28px;
  font-size: 3.8rem;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: 0.06em;
  @media (max-width: 820px) {
    font-size: 3rem;
  }
  @media (max-width: 767px) {
    font-size: 2.1rem;
  }
}

.privacy-fv p {
  margin: 0;
  font-size: 1.7rem;
  font-weight: 600;
  line-height: 2;
  letter-spacing: 0.04em;
  @media (max-width: 767px) {
    font-size: 1.5rem;
    font-weight: 500;
  }
}

.privacy-section {
  padding: 100px 0;
  background: var(--bgcolor-white);
  @media (max-width: 767px) {
    padding: 70px 0;
  }
}

.privacy-section--gray {
  background: #f6f6f6;
}


.privacy-section__head {
  margin-bottom: 38px;
  text-align: center;
}

.privacy-section__head h2 {
  position: relative;
  margin: 0;
  padding-bottom: 20px;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0.05em;
  @media (max-width: 767px) {
    font-size: 2.1rem;
  }
}

.privacy-section__head h2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 70px;
  height: 2px;
  transform: translateX(-50%);
  background: #2b2d31;
}

.privacy-section p {
  margin: 0;
  font-size: 1.7rem;
  font-weight: 500;
  line-height: 2.2;
  letter-spacing: 0.04em;
  @media (max-width: 767px) {
    font-size: 1.5rem;
  }
}

.privacy-section ul {
  margin: 28px 0 0;
  padding-left: 1.4em;
}

.privacy-section li {
  margin-bottom: 10px;
  font-size: 1.45rem;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.04em;
}

.privacy-contact {
  margin-top: 36px;
  border: 1px solid #ddd;
  background: var(--bgcolor-white);
}

.privacy-contact dl {
  display: grid;
  grid-template-columns: 180px 1fr;
  margin: 0;
  border-bottom: 1px solid #ddd;
  @media (max-width: 767px) {
    grid-template-columns: 1fr;
  }
}

.privacy-contact dl:last-child {
  border-bottom: none;
}

.privacy-contact dt,
.privacy-contact dd {
  padding: 18px 22px;
  font-size: 1.4rem;
  line-height: 1.8;
}

.privacy-contact dt {
  font-weight: 800;
  background: #f6f6f6;
}

.privacy-contact dd {
  margin: 0;
}

.privacy-back {
  padding: 20px 0 90px;
  text-align: center;
}

.privacy-back a {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--fontcolor-black);
  text-decoration: none;
  font-size: 1.4rem;
  font-weight: 700;
}

.privacy-back span {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--fontcolor-white);
  background: var(--bgcolor-black);
}

/* ーーーーーーーーーーーーーーーーーーーーーーーーーー
お問い合わせ
ーーーーーーーーーーーーーーーーーーーーーーーーーー */
.column_contact {
  padding-top: 100px;
    @media (max-width: 767px) {
      padding-top: 70px;
    }
}
.column_contact .contact_note {
  max-width: 800px;
  margin: 0 auto 70px;
  background: var(--bgcolor-white);
  border: 1px solid rgba(17, 24, 39, 0.12);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 22px 60px rgba(17, 24, 39, 0.08);
  padding: 13px;
}

.column_contact .contact_note__tit {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 22px 30px;
  color: var(--fontcolor-white);
  background: linear-gradient(135deg, #111827, #263244);
  cursor: pointer;
  border-radius: 10px;
}


.column_contact .contact_note__tit p {
  margin: 0;
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: 0.05em;
}

.column_contact .contact_note__tit::after {
  content: "";
  margin-left: auto;
  width: 11px;
  height: 11px;
  border-right: 2px solid var(--bgcolor-white);
  border-bottom: 2px solid var(--bgcolor-white);
  transform: rotate(45deg);
  transition: transform 0.3s ease;
}

.column_contact .contact_note__tit.open::after {
  transform: rotate(225deg);
}

.column_contact .accordion_content {
  display: none;
  margin: 0;
  padding: 30px 25px;
  background: linear-gradient(to bottom right, #fff, #f7f8fa);
}

.column_contact .accordion_content li {
  position: relative;
  margin-bottom: 12px;
  padding-left: 1.6em;
  color: var(--fontcolor-black);
  font-size: 1.5rem;
  line-height: 1.9;
  letter-spacing: 0.03em;
  list-style:none;
}

.column_contact .accordion_content li:last-child {
  margin-bottom: 0;
}

.column_contact .accordion_content li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.78em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #111827;
}

/* 入力フォーム */
.contact-form {
  max-width: 1120px;
  margin: 0 auto 100px;
  @media (max-width: 767px) {
    margin-bottom: 70px;
  }
}

.contact-form__row {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 36px;
  align-items: center;
  padding: 22px 0;
  border-top: 1px solid rgba(17, 24, 39, 0.16);
  @media (max-width: 767px) {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 20px 0;
  }
}

.contact-form__row:last-of-type {
  border-bottom: 1px solid rgba(17, 24, 39, 0.16);
}
.contact-form__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--fontcolor-black);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  @media (max-width: 767px) {
    gap: 10px;
  }
}
.contact-form__privacy-check em {
  flex-shrink: 0;
}

.contact-form__privacy-check .wpcf7-form-control-wrap,
.contact-form__privacy-check .wpcf7-acceptance,
.contact-form__privacy-check .wpcf7-list-item {
  margin: 0;
}

.contact-form__privacy-check label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  @media (max-width: 767px) {
    font-size: 1.4rem;
    gap: 3px;
  }
}
.contact-form__head em,
.contact-form__privacy-check em {
  flex-shrink: 0;
  padding: 5px 9px;
  background: var(--bgcolor-black);
  color: var(--fontcolor-white);
  font-style: normal;
  font-size: 1.3rem;
  font-weight: 600;
  line-height: 1;
}

.contact-form__body input,
.contact-form__body select,
.contact-form__body textarea {
  width: 100%;
  border: none;
  border-radius: 0;
  background: #f3f4f5;
  padding: 16px 18px;
  color: var(--fontcolor-black);
  font-size: 1.5rem;
  line-height: 1.6;
  outline: none;
  transition: background 0.25s ease, box-shadow 0.25s ease;
}

.contact-form__body input,
.contact-form__body select {
  height: 54px;
}

.contact-form__body textarea {
  min-height: 150px;
  resize: vertical;
}

.contact-form__body input:focus,
.contact-form__body select:focus,
.contact-form__body textarea:focus {
  background: var(--bgcolor-white);
  box-shadow: inset 0 0 0 1px #111827;
}

.contact-form__body select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, #555 50%),
    linear-gradient(135deg, #555 50%, transparent 50%);
  background-position:
    calc(100% - 22px) 50%,
    calc(100% - 16px) 50%;
  background-size: 6px 6px;
  background-repeat: no-repeat;
}

.contact-form__privacy {
  padding: 24px 0;
  border-bottom: 1px solid rgba(17, 24, 39, 0.16);
  text-align: center;
}

.contact-form__privacy p {
  margin-bottom: 20px;
  color: var(--fontcolor-black);
  font-size: 1.56rem;
  font-weight: 600;
  line-height: 1.8;
  @media (max-width: 767px) {
    font-size: 1.3rem;
  }
}
.contact-form__privacy a {
  color: var(--fontcolor-darkblue);
}

.contact-form__privacy-check {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  width: fit-content;
  margin: 0 auto;
  @media (max-width: 767px) {
    gap: 8px;
  }
}

.contact-form__privacy-check .wpcf7-list-item {
  margin: 0;
}

.contact-form input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin-right: 8px;
  accent-color: #111827;
}

.contact-form__submit {
  margin-top: 34px;
  text-align: center;
}

.contact-form__submit .wpcf7-submit {
  max-width: 370px;
  width: 100%;
  height: 82px;
  border: none;
  border-radius: 999px;
  background: #111827;
  color: #fff;
  cursor: pointer;
  font-size: 1.7rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.contact-form__submit .wpcf7-submit:hover {
  transform: translateY(-3px);
  opacity: 0.86;
}

/* 確認画面 */
.contact-form--confirm .contact-form__body {
  min-height: 54px;
  display: flex;
  align-items: center;
  padding: 16px 18px;
  @media (max-width: 767px) {
    padding: 15px 0;
  }
}

.contact-form--confirm .contact-form__body p {
  margin: 0;
  color: var(--fontcolor-black);
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.8;
  letter-spacing: 0.04em;
  font-weight: 400;

}

.contact-form__submit--confirm {
  display: flex;
  justify-content: center;
  gap: 18px;
}

.contact-form__submit--confirm input[type="button"],
.contact-form__submit--confirm .wpcf7-submit {
  max-width: 370px;
  width: 100%;
  height: 82px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.contact-form__submit--confirm input[type="button"] {
  border: 1px solid #111827;
  background: #fff;
  color: #111827;
}

.contact-form__submit--confirm .wpcf7-submit {
  border: none;
  background: #111827;
  color: #fff;
}

@media screen and (max-width: 767px) {
  .contact-form__submit--confirm {
    flex-direction: column;
  }

  .contact-form__submit--confirm input[type="button"],
  .contact-form__submit--confirm .wpcf7-submit {
    width: 100%;
  }
}

/* 完了ページ */

.column_contact-thanks {
  padding: 100px 0;
  @media (max-width: 767px) {
    padding: 70px 0;
  }
}

.thanks_cont {
  max-width: 780px;
  margin: 0 auto;
  padding: 70px 50px;
  text-align: center;
  background: var(--bgcolor-white);
  border-radius: 18px;
  box-shadow: 0 24px 70px rgba(17, 24, 39, 0.08);
  @media (max-width: 767px) {
    padding: 70px 20px;
  }
}

.thanks_icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #111827;
  color: var(--fontcolor-white);
  font-size: 3rem;
  font-weight: 700;
  @media (max-width: 767px) {
    width: 50px;
    height: 50px;
    font-size: 2.5rem;
  }
}

.thanks_title {
  margin-bottom: 20px;
  font-size: 2.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  @media (max-width: 767px) {
    font-size: 2.5rem;
    line-height: 1.5;
  }
}


.thanks_box {
  padding: 22px 26px;
  margin-bottom: 40px;
  background: #f7f8fa;
  border-radius: 10px;
  font-size: 1.4rem;
  color: #555;
  line-height: 1.9;
}

.thanks_actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.thanks_bttn {
  max-width: 240px;
  width: 100%;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--fontcolor-darkblue);
  color: var(--fontcolor-white);
  border-radius: 999px;
  font-size: 1.5rem;
  font-weight: 800;
  text-decoration: none;
  transition: 0.3s;
}

.thanks_bttn:hover {
  transform: translateY(-3px);
  opacity: 0.85;
}



/* ーーーーーーーーーーーーーーーーーーーーーーーーーー
404
ーーーーーーーーーーーーーーーーーーーーーーーーーー */
.error404-content {
  /* position: relative; */
  padding: 30px 20px 150px;
  overflow: hidden;
}
/* 
.error404-content::before {
  content: "NOT FOUND";
  position: absolute;
  left: 50%;
  top: 46%;
  transform: translate(-50%, -50%);
  color: rgba(0,0,0,0.035);
  font-size: clamp(7rem, 12vw, 18rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.04em;
  white-space: nowrap;
  pointer-events: none;
} */

.error404-content__inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.error404-content__num {
  margin: 0 0 10px;
  color: #111;
  font-size: clamp(3rem, 13vw, 7rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.05em;
  position: relative;
  padding-bottom: 30px;

}

/* .error404-content h1 {
  position: relative;
  margin: 0 0 36px;
  padding-bottom: 22px;
  color: #222;
  font-size: 2.4rem;
  font-weight: 800;
  letter-spacing: 0.05em;
} */

.error404-content .error404-content__num::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 72px;
  height: 2px;
  transform: translateX(-50%);
  background: #222;
}

.error404-content__text {
  margin: 0 0 46px;
  color: #555;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 2;
  letter-spacing: 0.04em;
}

.error404-content__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-width: 230px;
  height: 58px;
  padding: 0 30px;
  border-radius: 999px;
  background: #111827;
  color: #fff;
  text-decoration: none;
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.error404-content__btn span {
  font-size: 1.6rem;
}

@media screen and (max-width: 767px) {
  .error404-content {
    padding: 10px 20px 100px;
  }

  .error404-content__text {
    font-size: 1.4rem;
  }

  .error404-content__btn {
    width: 100%;
  }
}