@charset "UTF-8";

/* ==========================================================
guide
========================================================== */
/* sitenaviスタイル上書き */
body.is-fixed {
  padding-top: 0;
}
/* anchorスタイルに追加 */
.subpage-anchor {
    & .anchor-item {
        &.red {
            h3 {
                background-color: var(--red-primary);
                color: var(--white);
            }
        }
        &.light-blue {
            h3 {
                background-color: var(--blue-light-blue);
                color: var(--white);
            }
        }
    }
}
/* セクションタイトルスタイル上書き */
.section-title-box  .section-title-set .section-desc {
    max-width: none;
}
/* リンクラベルをnowrapに */
.text-link {
  white-space: nowrap;
}
/* セクション下グラデ */
.bg-bottom.green {
    &::after {
      background: linear-gradient(180deg, #FFF 6.68%, var(--green-accent, #E7FFF1) 100%);
      bottom: -100px;
    }
  }
/* 共通 */
.guide-list {
  width: 100%;
  max-width: 930px;
  margin: 0 auto;

  > .item {
    position: relative;
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    gap: 80px;

    .text-link {
      position: relative;
      z-index: 5;
    }

    .guide-title-set {
      flex: 0 1 430px;
      text-align: left;

      .guide-title {
        font-family: var(--sansation);
        font-size: 54px;
        line-height: 1.4;
        font-weight: bold;
      }
      .guide-desc {
        margin-top: 20px;
        font-size: 18px;
        line-height: 1.6;
        color: var(--black);
      }
    }
    .guide-pict {
      flex: 0 1 420px;
    }
  }
  > .item:nth-child(odd)::after {
    content: "";
    display: block;
    position: absolute;
    left: 35%;
    top: 90%;
    width: 340px;
    height: 114px;
    background: url(/facetofes/2026/img/guide/guide-input-arrow-odd.png) center center /contain no-repeat;
    z-index: 2;
  }

  > .item:nth-child(even) {
    flex-direction: row;
  }
  > .item:nth-child(even)::after {
    content: "";
    display: block;
    position: absolute;
    right: 35%;
    top: 90%;
    width: 320px;
    height: 160px;
    background: url(/facetofes/2026/img/guide/guide-input-arrow-even.png) center center /contain no-repeat;
    z-index: 2;
  }
   > .item:last-child::after {
    display: none;
   }

   @media screen and (max-width: 768px) {
    > .item {
      /* align-items: flex-start; */
      gap: 4px;

      .guide-title-set {
        flex: 0 1 auto;
        .guide-title {
          font-size: 32px;
        }
        .guide-desc {
          font-size: 12px;
          margin-top: 8px;

          > br {
            display: none;
          }
        }
      }
      .guide-pict {
        flex: none;
        width: 140px;
      }
    }
    > .item:nth-child(odd)::after {
      left: 30%;
      top: 100%;
      width: 160px;
      height: 54px;
    }
    > .item:nth-child(even)::after {
      right: 30%;
      top: 100%;
      width: 160px;
      height: 80px;
    }
   }

}
.guide-bg {
  position: relative;

  @media screen and (max-width: 768px) {
    padding: 0 16px;
  }

  &::before {
    content: "";
    position: absolute;
    top: 100px;
    left: 0;
    width: 100%;
    height: calc(100% - 100px);
    z-index: -3;

    @media screen and (max-width: 768px) {
      top: 128px;
      height: calc(100% - 128px);
    }
  }
  &.blue {
    &::before {
      background: url(/facetofes/2026/img/guide/guide-input-back.png) center top repeat-y;
      background-size: 100% auto;

      @media screen and (max-width: 768px) {
          background: url("/facetofes/2026/img/bg/bg-gradation-blue02_sp.png") top center / contain repeat-y;
      }
    }
  }
  &.red {
    &::before {
      background: url("/facetofes/2026/img/guide/guide-output-back.png") center top repeat-y;
      background-size: 100% auto;

      @media screen and (max-width: 768px) {
          background: url("/facetofes/2026/img/bg/bg-gradation-red02_sp.png") top center / contain repeat-y;
      }
    }
  }
  &.green {
    &::before {
      background: url("/facetofes/2026/img/guide/guide-enjoy-back.png") center top repeat-y;
      background-size: 100% auto;

      @media screen and (max-width: 768px) {
          background: url("/facetofes/2026/img/bg/bg-gradation-green02_sp.png") top center / contain repeat-y;
      }
    }
  }
}

/* セクションごと */
.section-input {
  /* background: url(/facetofes/2026/img/guide/guide-input-back.png) center top no-repeat; */

  .section-title-box .section-title-set .section-title,
  .guide-title {
    color: var(--blue-primary);
  }
  .item:nth-child(odd)::after {
    background: url(/facetofes/2026/img/guide/guide-input-arrow-odd.png) center center /contain no-repeat;
  }
  .item:nth-child(even)::after {
    background: url(/facetofes/2026/img/guide/guide-input-arrow-even.png) center center /contain no-repeat;
  }
}
.section-output {
  /* background: url(/facetofes/2026/img/guide/guide-output-back.png) center top no-repeat; */

  .section-title-box .section-title-set .section-title,
  .guide-title {
    color: var(--red-primary);
  }
  .item:nth-child(odd)::after {
    background: url(/facetofes/2026/img/guide/guide-output-arrow-odd.png) center center /contain no-repeat;
  }
  .item:nth-child(even)::after {
    background: url(/facetofes/2026/img/guide/guide-output-arrow-even.png) center center /contain no-repeat;
  }
}
.section-enjoy {
  /* background: url(/facetofes/2026/img/guide/guide-enjoy-back.png) center top no-repeat; */

  .section-title-box .section-title-set .section-title,
  .guide-title {
    color: var(--blue-light-blue);
  }
  .item:nth-child(odd)::after {
    background: url(/facetofes/2026/img/guide/guide-enjoy-arrow-odd.png) center center /contain no-repeat;
  }
  .item:nth-child(even)::after {
    background: url(/facetofes/2026/img/guide/guide-enjoy-arrow-even.png) center center /contain no-repeat;
  }
}
.floormap-list {
  &.two-columns {
    grid-template-columns: repeat(2, 1fr);
  }
  > .item {
    box-shadow: var(--ftf-shadow);
    border-radius: 20px;
    overflow: hidden;
  }
}
