@charset "UTF-8";
/*;
* Copyright(c) 2008- All Rights Reserved
* Tecto co.,ltd.
* http://www.tec-tec.co.jp/
*/
/* Scss Document */
@font-face {
  /*フォントの名前*/
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  /*フォントファイルへのパス（複数指定の場合、上から順に読み込まれる）*/
  src: url("/bunjo/font/NotoSansJP-Regular.otf") format("opentype");
}
@font-face {
  /*フォントの名前*/
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  /*フォントファイルへのパス（複数指定の場合、上から順に読み込まれる）*/
  src: url("/bunjo/font/NotoSansJP-Medium.otf") format("opentype");
}
@font-face {
  /*フォントの名前*/
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  /*フォントファイルへのパス（複数指定の場合、上から順に読み込まれる）*/
  src: url("/bunjo/font/NotoSansJP-Bold.otf") format("opentype");
}
@font-face {
  /*フォントの名前*/
  font-family: "Noto Serif JP";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  /*フォントファイルへのパス（複数指定の場合、上から順に読み込まれる）*/
  src: url("/bunjo/font/NotoSerifJP-Regular.ttf") format("opentype");
}
@font-face {
  /*フォントの名前*/
  font-family: "Noto Serif JP";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  /*フォントファイルへのパス（複数指定の場合、上から順に読み込まれる）*/
  src: url("/bunjo/font/NotoSerifJP-Medium.ttf") format("opentype");
}
@font-face {
  /*フォントの名前*/
  font-family: "Noto Serif JP";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  /*フォントファイルへのパス（複数指定の場合、上から順に読み込まれる）*/
  src: url("/bunjo/font/NotoSerifJP-Bold.ttf") format("opentype");
}
.bottom-menu__area {
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.15s ease-out, visibility 0s linear 0.15s;
}
.bottom-menu__area.is-show-top {
  visibility: hidden;
}
.bottom-menu__area.is-show {
  opacity: 0;
}
.bottom-menu__area.is-show-top.is-show {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.15s ease-out, visibility 0s;
}

.bottom-form__area {
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.15s ease-out, visibility 0s linear 0.15s;
}
.bottom-form__area.is-show-top {
  visibility: hidden;
}
.bottom-form__area.is-show {
  opacity: 0;
}
.bottom-form__area.is-show-top.is-show {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.15s ease-out, visibility 0s;
}

.top-main-visual__area {
  margin-top: var(--bunjo-header-height);
  /* スクロール演出用の高さを確保（例：通常の表示 + 100vh分固定） */
  height: 200vh;
  position: relative;
}
@media screen and (max-width: 991px) {
  .top-main-visual__area {
    height: 150vh; /* スマホ用のスクロール量 */
    margin-top: 0;
  }
}

.top-main-visual__text-area {
  flex: 1;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 3.4722222222vw;
}
@media screen and (max-width: 767px) {
  .top-main-visual__text-area {
    width: 56.5333333333vw;
    margin: 0 auto;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 8vw 0;
  }
}

.top-main-visual__sticky-container {
  position: sticky;
  top: var(--bunjo-header-height);
  left: 0;
  width: 100%;
  height: calc(100vh - var(--bunjo-header-height));
  display: flex;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .top-main-visual__sticky-container {
    flex-direction: column;
  }
}

.top-main-visual__logo {
  height: 20.5555555556vw;
}
@media screen and (max-width: 767px) {
  .top-main-visual__logo {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .top-main-visual__logo img {
    width: 100%; /* 基本は幅いっぱい */
    height: auto;
    max-width: 100%;
    max-height: 100%; /* 高さ不足時に縮小させる */
    -o-object-fit: contain;
       object-fit: contain;
  }
}

@media screen and (max-width: 767px) {
  .top-main-visual__logo-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56.5333333333vw;
    margin: 0 auto;
    box-sizing: border-box;
    flex: 1;
  }
}

@media screen and (max-width: 767px) {
  .top-main-visual__access-wrap {
    width: 56.5333333333vw;
    height: auto;
    flex: unset;
    align-items: center;
    justify-content: center;
    width: 100%;
  }
}

.top-main-visual__link .contents__btn {
  margin-inline: auto;
  margin-top: 30px;
  font-size: clamp(10px, 1.1111111111vw, 16px);
}
@media screen and (max-width: 767px) {
  .top-main-visual__link .contents__btn {
    font-size: 16px;
  }
}
@media screen and (max-width: 575px) {
  .top-main-visual__link .contents__btn {
    margin-top: 20px;
    font-size: 13px;
  }
}

.top-main-visual__img-wrap {
  width: 73.4027777778vw;
  height: 100%;
  overflow: hidden;
  position: sticky;
  top: var(--bunjo-header-height); /* ヘッダーの下で固定 */
  height: calc(100vh - var(--bunjo-header-height));
}
@media screen and (max-width: 767px) {
  .top-main-visual__img-wrap {
    aspect-ratio: 750/500;
    -o-object-fit: cover;
       object-fit: cover;
    width: 100%;
    height: auto;
    flex: none;
  }
}

@media screen and (max-width: 767px) {
  .top-main-visual__img--pc {
    display: none;
  }
}

.top-main-visual__img--sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .top-main-visual__img--sp {
    display: block;
    height: 100%;
  }
}

.top-main-visual__img-ja {
  position: absolute;
  top: 4.3055555556vh;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  width: 15.625vw;
}
@media screen and (max-width: 767px) {
  .top-main-visual__img-ja {
    width: 35.2vw;
  }
}

.top-main-visual__img-en {
  position: absolute;
  bottom: 4.6527777778vh;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  width: 53.3333333333vw;
}
@media screen and (max-width: 767px) {
  .top-main-visual__img-en {
    width: 83.2vw;
    bottom: 6.1333333333vw;
  }
}

.top-main-visual__img-bg {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  will-change: transform;
}

.top-main-visual__img-main {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.top-bottom-menu__area {
  width: 100%;
  background-color: rgba(255, 255, 255, 0.8);
  padding-inline: var(--padding-side);
  min-height: 69px;
}
@media screen and (max-width: 767px) {
  .top-bottom-menu__area {
    margin-top: 15.2vw;
    margin-top: 0;
    padding-inline: 15px;
  }
}

.top-bottom-menu__wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-inline: auto;
  width: 100%;
  max-width: 1222px;
  padding-block: 10px;
  padding-right: 4.8611111111vw;
}
@media screen and (max-width: 991px) {
  .top-bottom-menu__wrap {
    padding-block: 1px;
    padding-right: 0;
  }
}

.top-bottom-menu-logo__img-wrap {
  width: 100%;
  max-width: 148px;
}

.top-bottom-menu__list {
  display: flex;
  gap: 5px;
  justify-content: space-between;
  width: 100%;
  max-width: 932px;
  color: var(--c-black01);
}
@media screen and (max-width: 991px) {
  .top-bottom-menu__list {
    flex-wrap: wrap;
    gap: 0;
    position: relative;
  }
  .top-bottom-menu__list::before {
    content: "";
    width: 100%;
    height: 1px;
    background-color: var(--c-brown03);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}

@media screen and (max-width: 991px) {
  .top-bottom-menu__item {
    min-height: 37.5px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
  }
  .top-bottom-menu__item::before {
    content: "";
    width: 1px;
    height: 70%;
    background-color: var(--c-brown03);
    position: absolute;
    right: 0;
    top: 50%;
    transform: translate(50%, -50%);
  }
}

/* --- 1段目：4つ (100% ÷ 4 = 25%) --- */
@media screen and (max-width: 991px) {
  .top-bottom-menu__item:nth-child(1),
  .top-bottom-menu__item:nth-child(2),
  .top-bottom-menu__item:nth-child(3),
  .top-bottom-menu__item:nth-child(4) {
    width: 25%;
  }
}

/* --- 2段目：5つ (100% ÷ 5 = 20%) --- */
@media screen and (max-width: 991px) {
  .top-bottom-menu__item:nth-child(5),
  .top-bottom-menu__item:nth-child(6),
  .top-bottom-menu__item:nth-child(7),
  .top-bottom-menu__item:nth-child(8),
  .top-bottom-menu__item:nth-child(9) {
    width: 20%;
  }
}

@media screen and (max-width: 991px) {
  .top-bottom-menu__item:nth-child(4)::before,
  .top-bottom-menu__item:nth-child(9)::before {
    display: none;
  }
}

.top-bottom-menu__link {
  display: block;
  font-size: 0.8125rem;
  font-weight: 500;
  transition: all 0.15s ease-out 0s;
  color: var(--c-black01);
}
@media screen and (max-width: 991px) {
  .top-bottom-menu__link {
    text-align: center;
  }
}
@media screen and (max-width: 767px) {
  .top-bottom-menu__link {
    font-size: 0.65625rem;
    line-height: 1.2;
  }
}
@media (any-hover: hover) {
  .top-bottom-menu__link:hover {
    color: var(--c-blue01);
  }
}

.top .bottom-menu__link--top {
  color: var(--c-blue01);
}
.top .top-bottom-menu__link--top {
  color: var(--c-blue01);
}

.pre-sale-announcement__area {
  background-color: #f0eeeb;
  padding-inline: var(--padding-side);
  padding-top: 48px;
  padding-bottom: 48px;
}
@media screen and (max-width: 767px) {
  .pre-sale-announcement__area {
    padding-inline: 27px;
    padding-top: 32px;
  }
}

.pre-sale-announcement__wrap {
  display: flex;
  flex-wrap: nowrap;
  margin-inline: auto;
  width: 100%;
  max-width: 975px;
}
@media screen and (max-width: 767px) {
  .pre-sale-announcement__wrap {
    flex-direction: column;
    align-items: center;
  }
}

.pre-sale-announcement__title {
  font-size: 1.75rem;
  font-weight: 500;
  border-style: solid;
  border-width: 0 1px 0 1px;
  border-color: var(--c-black01);
  padding: 8px 29px;
  width: -moz-fit-content;
  width: fit-content;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .pre-sale-announcement__title {
    font-size: 1.25rem;
    padding: 4px 13px;
    margin-bottom: 14px;
  }
}

.pre-sale-announcement__text {
  font-size: 0.9375rem;
  text-align: justify;
  letter-spacing: -0.01em;
  font-weight: 500;
  color: var(--c-black01);
  padding-left: 29px;
}
@media screen and (max-width: 767px) {
  .pre-sale-announcement__text {
    font-size: 0.78125rem;
    padding-left: 0;
  }
}

.news__area {
  padding-top: 152px;
  padding-inline: var(--padding-side);
  background-color: var(--c-white01);
}
@media screen and (max-width: 767px) {
  .news__area {
    padding-top: 74px;
  }
}

.news__wrap {
  margin-inline: auto;
  width: 100%;
  max-width: var(--container);
  display: flex;
  flex-wrap: wrap;
  gap: 170px;
}
@media screen and (max-width: 767px) {
  .news__wrap {
    row-gap: 33px;
  }
}

.news__title-wrap {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: start;
}
@media screen and (max-width: 767px) {
  .news__title-wrap {
    gap: 16px;
  }
}

.news__title {
  width: 231px;
}
@media screen and (max-width: 767px) {
  .news__title {
    width: 182px;
  }
}
.news__title > img {
  width: auto;
  height: 100%;
}

.news__title-text {
  font-size: 1rem;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .news__title-text {
    font-size: 0.875rem;
  }
}

.news__list {
  display: flex;
  flex-direction: column;
  width: calc(100% - 231px - 170px) !important;
}
@media screen and (max-width: 767px) {
  .news__list {
    width: 100% !important;
  }
}

.news__item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.8125rem;
  border-style: solid;
  border-width: 0 0 1px 0;
  border-color: var(--c-brown02);
  padding-block: 27px;
}
@media screen and (max-width: 767px) {
  .news__item {
    padding-block: 19px;
    gap: 10px;
    font-size: 0.75rem;
  }
}
.news__item:first-of-type {
  border-top: solid var(--c-brown02) 1px;
}
.news__item .date {
  font-size: 0.875rem;
  color: var(--c-brown01);
}
@media screen and (max-width: 767px) {
  .news__item .date {
    font-size: 0.6875rem;
  }
}
.news__item .date-big {
  font-size: clamp(16px, 2.0833333333vw, 30px);
  color: var(--c-brown01);
  letter-spacing: 0;
}

.outine__area {
  padding-inline: var(--padding-side);
  margin-top: 149px;
}
@media screen and (max-width: 767px) {
  .outine__area {
    padding-inline: 30px;
    margin-top: 80px;
  }
}

.outline__wrap {
  margin-inline: auto;
  width: 100%;
  max-width: var(--container);
}

.outline__title-wrap {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
@media screen and (max-width: 767px) {
  .outline__title-wrap {
    gap: 14px;
  }
}

.outline__title {
  width: 230px;
}
.outline__title > img {
  width: auto;
  height: 100%;
}

.outline__title-text {
  color: var(--c-brown01);
  font-size: 1rem;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .outline__title-text {
    font-size: 0.875rem;
  }
}

.outline__table-wrap {
  display: flex;
  gap: 11.7391304348%;
  position: relative;
  margin-top: 44px;
}
@media screen and (max-width: 1199px) {
  .outline__table-wrap {
    gap: 4.1208791209%;
  }
}
@media screen and (max-width: 767px) {
  .outline__table-wrap {
    flex-direction: column;
    gap: 8px;
    margin-top: 26px;
  }
}
.outline__table-wrap::before {
  content: "";
  width: 1px;
  height: 100%;
  background-color: var(--c-brown01);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
  .outline__table-wrap::before {
    content: unset;
  }
}

.outline__table {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .outline__table {
    width: 100%;
  }
}
.outline__table tbody {
  display: flex;
  flex-direction: column;
  gap: 17px;
}
@media screen and (max-width: 767px) {
  .outline__table tbody {
    gap: 8px;
  }
}
.outline__table .row {
  margin-inline: 0;
}
.outline__table .title {
  min-width: 122px;
  flex-shrink: 0;
  font-size: 0.8125rem;
  padding-right: 20px;
  vertical-align: top;
}
@media screen and (max-width: 767px) {
  .outline__table .title {
    font-size: 0.71875rem;
    min-width: 93px;
    padding-right: 0;
  }
}
.outline__table .detail {
  font-size: 0.8125rem;
}
@media screen and (max-width: 767px) {
  .outline__table .detail {
    font-size: 0.71875rem;
  }
}

.contents__wrap {
  display: block;
}

.contents__section {
  position: relative;
  background: #fff;
}

.contents__txt-wrap {
  position: relative;
  z-index: 10;
  background-color: #fff;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.contents__txt-area {
  margin-inline: auto;
  width: 100%;
  max-width: var(--container);
  padding-inline: var(--padding-side);
}

.contents__txt-ttl {
  margin-bottom: 88px;
}
@media screen and (max-width: 767px) {
  .contents__txt-ttl {
    margin-bottom: 36px;
  }
}
.contents__txt-ttl--01 {
  display: flex;
  justify-content: left;
}
.contents__txt-ttl--01 img {
  width: 328px;
}
@media screen and (max-width: 767px) {
  .contents__txt-ttl--01 img {
    width: 219px;
  }
}
.contents__txt-ttl--02 img {
  width: 328px;
}
@media screen and (max-width: 767px) {
  .contents__txt-ttl--02 img {
    width: 217px;
  }
}
.contents__txt-ttl--03 img {
  width: 430px;
}
@media screen and (max-width: 767px) {
  .contents__txt-ttl--03 img {
    width: 286.5px;
  }
}

.contents__link-wrap {
  display: flex;
  justify-content: end;
}
@media screen and (max-width: 767px) {
  .contents__link-wrap {
    justify-content: left;
  }
}

.contents__link {
  font-size: 35px;
  text-align: left;
}
.contents__link--02 {
  max-width: 455px;
}
.contents__link--03 {
  max-width: 447px;
}

.contents__link-txt {
  font-size: 35px;
  font-family: YakuHanMPs, "Noto Serif JP", "YuMincho", "游明朝", "ＭＳ Ｐ明朝", "MS PMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", serif !important;
  margin-bottom: 20px;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .contents__link-txt {
    font-size: 20px;
  }
}

.contents__link-note {
  font-size: 14px;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .contents__link-note {
    text-align: justify;
    font-size: 12px;
  }
}

.contents__img-wrap {
  position: relative;
  height: 200vh;
}

.contents__img {
  position: sticky;
  top: 0;
  /* 画面全体の高さからバナー分を引く */
  height: calc(100vh - 70px);
  width: 100%;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .contents__img { /* 767px以下の指定 */
    /* SPサイズ：バナー50px分を引く */
    height: calc(100vh - 50px);
  }
}
.contents__img picture,
.contents__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  will-change: transform;
}
.menu__area {
  padding-inline: var(--padding-side);
}
@media screen and (max-width: 767px) {
  .menu__area {
    padding-inline: 40px;
  }
}

.menu__wrap {
  margin-inline: auto;
  width: 100%;
  max-width: 1295px;
  margin-top: 200px;
}
@media screen and (max-width: 767px) {
  .menu__wrap {
    margin-top: 100px;
  }
}

.menu__list {
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
}

.menu__list-item {
  width: calc((100% - 120px) / 3);
}
@media screen and (max-width: 991px) {
  .menu__list-item {
    width: 100%;
  }
}

.menu__list-ttl {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
}
@media screen and (max-width: 767px) {
  .menu__list-ttl {
    margin-bottom: 15px;
  }
}

.menu__list-ttl--01 {
  width: 61.0256410256%;
}
@media screen and (max-width: 991px) {
  .menu__list-ttl--01 {
    max-width: 167px;
  }
}

.menu__list-ttl--02 {
  width: 100%;
}
@media screen and (max-width: 991px) {
  .menu__list-ttl--02 {
    max-width: 272px;
  }
}

.menu__list-ttl--03 {
  width: 86.6666666667%;
}
@media screen and (max-width: 991px) {
  .menu__list-ttl--03 {
    max-width: 237px;
  }
}

.menu__list-img {
  margin-bottom: 15px;
}

.menu__list-txt {
  font-size: 21px;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .menu__list-txt {
    font-size: 15px;
  }
}

.menu__list-txt-ttl {
  display: block;
  margin-bottom: 22px;
  font-size: 20px;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .menu__list-txt-ttl {
    font-size: 13px;
    margin-bottom: 15px;
  }
}

.menu__list-item .contents__btn {
  margin: 40px auto 0;
}
@media screen and (max-width: 767px) {
  .menu__list-item .contents__btn {
    margin: 32px auto 0;
    max-width: 225px;
    height: 45px;
  }
}/*# sourceMappingURL=frestier-kisarazu-jozai-top.css.map */