@charset "UTF-8";

@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@500&family=Noto+Sans+JP:wght@500;600&display=swap");

.oswald {
  font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}

/* 全体 */
html,
body {
  background-color: #fffadd;
}
.inner {
  width: 1212px;
  margin: 0 auto;
}
@media screen and (min-width: 681px) {
}
@media all and (max-width: 680px) {
  .inner {
    width: 100%;
    padding: 0 25px;
  }
}

/* インビュー */
.action_up {
  opacity: 0;
  filter: blur(12px);
  transform: translateY(50px);
  will-change: opacity, transform, filter;
}
/* in-view 時に発火 */
.action_up.is-inview {
  animation: fadeUp 0.8s ease-out both;
}

/* mvWrap */
.mvWrap {
  position: relative;
}
.site_id a {
  width: 120px;
  display: block;
  transition: 0.3s ease;
}
@keyframes mv-fade-blur {
  from {
    opacity: 0;
    filter: blur(12px);
  }
  to {
    opacity: 1;
    filter: blur(0);
  }
}
@keyframes fadeUp {
  from {
    opacity: 0;
    filter: blur(12px);
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
  }
}
@media screen and (min-width: 681px) {
  .site_id {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    padding: 35px 27px 26px 46px;
    border-bottom-right-radius: 10px;
    background-color: #fffadd;
  }
  .site_id a:hover {
    opacity: 0.7;
  }
}
/* scroll1 */
.scroll1 {
  width: 14px;
  height: 120px;
  position: absolute;
  left: 40px;
  bottom: -220px;
  margin: auto;
}
/* 黒ラインベース */
.scroll1_line {
  position: relative;
  width: 2px; /* 線の太さ */
  height: 63px; /* 黒線の高さ */
  margin: 10px auto 0;
  background-color: #000000;
  overflow: hidden; /* 擬似要素がはみ出さないように */
}
/* 黄色ライン（アニメーション） */
.scroll1_line::before {
  content: "";
  position: absolute;
  top: -10px; /* 黄色線の初期位置（上に隠す） */
  left: 0;
  width: 100%;
  height: 10px; /* 黄色線の高さ */
  background-color: #fffadd;
  animation: scroll-line 1.5s linear infinite;
}
/* 上から下に流れてループ */
@keyframes scroll-line {
  0% {
    top: -10px;
  }
  100% {
    top: 63px;
  }
}

.mv_vis {
  padding: 45px 48px 38px;
}
.mv_vis_in {
  /* background-color: #edc961; */
  border-radius: 10px;
  overflow: clip;
}
.mv_vis_img {
  width: 100%;
  margin: 0 auto;
}

@media all and (max-width: 680px) {
  .site_id {
    position: static;
    width: 100%;
    height: 60px;
    padding: 0 17px;
    display: flex;
    align-items: center;
  }
  .site_id a {
    width: 66px;
  }
  .site_id_txt1 {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.034em;
    line-height: calc(18 / 14);
    border-left: 1px solid #000000;
    margin-left: 16px;
    padding-left: 13px;
  }
  /* scroll1 */
  .scroll1 {
    width: 11px;
    height: 92px;
    left: 10px;
    bottom: auto;
    top: calc(100svh - 92px);
  }
  /* 黒ラインベース */
  .scroll1_line {
    height: 45px; /* 黒線の高さ */
  }
  /* 黄色ライン（アニメーション） */
  .scroll1_line::before {
    top: -7px; /* 黄色線の初期位置（上に隠す） */
    height: 7px; /* 黄色線の高さ */
  }
  /* 上から下に流れてループ */
  @keyframes scroll-line {
    0% {
      top: -7px;
    }
    100% {
      top: 45px;
    }
  }

  .mv_vis {
    padding: 11px 15px 23px;
  }
}

/* introWrap */
.introWrap {
  width: 1212px;
  margin: 0 auto;
  padding: 60px 0 100px;
  border-radius: 10px;
  overflow: clip;
}
.intro_tit1 {
  color: #1fa200;
  font-size: 39px;
  font-weight: 800;
  text-align: center;
  letter-spacing: 0.03em;
  line-height: calc(75 / 39);
}
.intro_txt1 {
  margin-top: 40px;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.05em;
  line-height: calc(43 / 18);
}
@media screen and (min-width: 681px) {
  .introWrap {
    background: #fff url(../images/event_lp/intro_bg1.svg) no-repeat center bottom / contain;
  }
  .intro_tit1 {
    display: flex;
    flex-flow: column;
    align-items: center;
  }
  .intro_tit1 .line_pc {
    position: relative;
    display: block;
  }
  .intro_tit1 .line_pc::after {
    content: "";
    width: 100%;
    height: 5px;
    background-color: #ffe86c;
    position: absolute;
    bottom: 5px;
    left: 0;
    right: 0;
    margin: auto;
  }
}
@media all and (max-width: 680px) {
  .introWrap {
    width: calc(100% - 60px);
    padding: 25px 0 55px;
    background: #fff url(../images/event_lp/intro_bg1_sp.svg) no-repeat center bottom / 800px;
  }
  .intro_tit1 {
    font-size: 20px;
    letter-spacing: 0;
    line-height: calc(38 / 20);
  }
  .intro_tit1,
  .intro_tit1 .line_pc {
    display: flex;
    flex-flow: column;
    align-items: center;
  }
  .intro_tit1 .line_sp {
    position: relative;
    display: block;
  }
  .intro_tit1 .line_sp::after {
    content: "";
    width: 100%;
    height: 3px;
    background-color: #ffe86c;
    position: absolute;
    bottom: 1.5px;
    left: 0;
    right: 0;
    margin: auto;
  }
  .intro_txt1 {
    width: 266px;
    margin: 20px auto 0;
    padding: 0;
    font-size: 15px;
    text-align: justify;
    letter-spacing: 0;
    line-height: calc(26 / 14);
  }
}

/* eventWrap */
.eventWrap {
  padding: 78px 0 130px;
}
.eventWrap_inner {
  width: 1212px;
  margin: 0 auto;
}
.event_numBox1 {
  width: 450px;
  height: 123px;
  padding-bottom: 30px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1fa200;
  font-weight: 700;
  background: url(../images/event_lp/fukidashi1.svg) no-repeat center / contain;
}
.event_numBox1_t1 {
  font-size: 25px;
}
.event_numBox1_t2 {
  font-size: 70px;
  padding-left: 12px;
  padding-right: 5px;
  padding-bottom: 8px;
}
.event_numBox1_t3 {
  font-size: 39px;
}
/* event_list1 */
.event_list1 {
  padding-top: 28px;
  display: flex;
  flex-flow: wrap;
  gap: 80px 44px;
}
.event_list1_item {
  width: calc((100% - 88px) / 3);
}
.event_list1_item_link {
  width: 100%;
  height: 100%;
  display: flex;
  flex-flow: column;
}
.event_list1_item_thumb {
  width: 100%;
  height: 250px;
  border-radius: 10px;
  overflow: clip;
}
.event_list1_item_thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.event_list1_item_textBox {
  flex-grow: 1;
  padding: 16px 0;
}
.event_list1_item_tag {
  display: flex;
  flex-flow: wrap;
  gap: 10px;
}
.event_list1_item_tag .tag {
  background-color: #3bae00;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  text-align: center;
  letter-spacing: 0.02em;
  line-height: 1.3;
  padding: 4px 9px;
  border-radius: 7px;
}
.event_list1_item_tit1 {
  font-size: 23px;
  font-weight: 600;
  text-align: justify;
  letter-spacing: 0;
  line-height: calc(31 / 23);
  margin-top: 12px;
}
.event_list1_item_data {
  margin-top: 12px;
  padding-left: 30px;
  position: relative;
  color: #3bae00;
  font-size: 16px;
  text-align: justify;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: calc(22 / 16);
}
.event_list1_item_data + .event_list1_item_data {
  margin-top: 6px;
}
.event_list1_item_data::before {
  content: "";
  width: 22px;
  height: 22px;
  position: absolute;
  top: 1px;
  left: 0;
  background: url(../images/event_lp/ico1.svg) no-repeat center / 21.89px;
}
.event_list1_item_data.time::before {
  background-image: url(../images/event_lp/ico2.svg);
  background-size: 19.91px;
}
.event_list1_item_txt1 {
  margin-top: 12px;
  font-size: 15px;
  font-weight: 500;
  text-align: justify;
  letter-spacing: 0.02em;
  line-height: 1.3;
}
.event_list1_item_btn1 {
  width: 100%;
  height: 45px;
  border-radius: 10px;
  border: 1px solid #3bae00;
  background-color: #fff;
  color: #3bae00;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  letter-spacing: 0.02em;
  line-height: 1.4;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease;
}
@media screen and (min-width: 681px) {
  a.event_list1_item_link:hover .event_list1_item_thumb img {
    transform: scale(1.1);
  }
  a.event_list1_item_link:hover .event_list1_item_btn1,
  a.event_list1_item_btn1:hover {
    background-color: #3bae00;
    color: #fff;
  }
}
@media all and (max-width: 680px) {
  .eventWrap {
    padding: 50px 0 100px;
  }
  .eventWrap_inner {
    width: 100%;
    padding: 0 22px;
  }
  .event_numBox1 {
    width: 301px;
    height: 105px;
    padding-bottom: 23px;
    background-image: url(../images/event_lp/fukidashi1_sp.svg);
  }
  .event_numBox1_t1 {
    font-size: 18px;
  }
  .event_numBox1_t2 {
    font-size: 40px;
    padding-left: 10px;
    padding-right: 5px;
    padding-bottom: 5px;
  }
  .event_numBox1_t3 {
    font-size: 22px;
  }
  /* event_list1 */
  .event_list1 {
    padding-top: 11px;
    display: block;
  }
  .event_list1_item {
    width: 100%;
  }
  .event_list1_item + .event_list1_item {
    margin-top: 34px;
    padding-top: 34px;
    border-top: 1px solid #707070;
  }
  .event_list1_item_link {
    display: block;
  }
  .event_list1_item_thumb {
    height: calc((219 / 375) * 100vw);
  }
  .event_list1_item_textBox {
    padding: 11px 0 13px;
  }
  .event_list1_item_tag {
    gap: 5px;
  }
  .event_list1_item_tag .tag {
    letter-spacing: 0;
  }
  .event_list1_item_tit1 {
    font-size: 20px;
    line-height: calc(27 / 20);
    margin-top: 6px;
  }
  .event_list1_item_data {
    margin-top: 5px;
  }
  .event_list1_item_txt1 {
    margin-top: 7px;
    font-size: 14px;
  }
}

/* p-page-map */
@media screen and (min-width: 681px) {
  .p-page-map,
  .map-lst__bg {
    height: calc((680 / 1200) * 100vw);
  }
}
@media all and (max-width: 680px) {
  .p-page-map {
    display: block !important;
    position: relative;
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-gutter: stable both-edges;
  }
  .p-page-map,
  .map-lst__bg {
    height: 442px;
  }
  .p-page-map__body {
    width: 780px;
    flex: 0 0 auto;
    position: relative;
  }
  .p-page-map__body::after {
    content: "";
    background: url(../images/modelhouse_lp/ico_scroll1.png) no-repeat center / contain;
    width: 120px;
    height: 120px;
    position: absolute;
    z-index: 5555;
    top: 0;
    bottom: 0;
    left: 50px;
    right: 0;
    margin: auto;
    transition: 0.3s ease;
    pointer-events: none !important;
  }
  .p-page-map__body.active::after {
    opacity: 0 !important;
  }
}

/* footer */
.footer {
  background-color: #1f2021;
  padding: 60px 0 25px;
  color: #fff;
}
.f_id1 {
  width: 151px;
  display: block;
  margin: 0 auto;
  transition: 0.3s ease;
}
.f_id1 svg {
  fill: #fff;
}
.f_address1 {
  margin-top: 22px;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  letter-spacing: 0.05em;
  line-height: calc(25 / 16);
}
.f_tel1 {
  margin-top: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.f_tel1_link {
  color: #fff;
  display: block;
  font-size: 46px;
  font-weight: 500;
  text-align: center;
  letter-spacing: 0.02em;
  line-height: 1;
  background: url(../images/modelhouse_lp/ico_tel1_w.svg) no-repeat left top 11px / 32.2px;
  padding-left: 48px;
}
.cRight {
  margin-top: 50px;
  font-size: 12px;
  font-weight: 500;
  text-align: center;
  letter-spacing: 0;
}
@media screen and (min-width: 681px) {
  a.f_id1:hover {
    opacity: 0.6;
  }
}
@media all and (max-width: 680px) {
  .footer {
    padding: 40px 0 20px;
  }
  .f_id1 {
    width: 94.14px;
  }
  .f_address1 {
    margin-top: 16px;
    font-size: 13px;
  }
  .f_tel1_link {
    font-size: 28px;
    background-size: 23px;
    background-position: left top 5px;
    padding-left: 32px;
  }
  .cRight {
    font-size: 10px;
  }
}

/* コンテンツ */
@media screen and (min-width: 681px) {
}
@media all and (max-width: 680px) {
}

/* コンテンツ */
@media screen and (min-width: 681px) {
}
@media all and (max-width: 680px) {
}
