@charset "UTF-8";
img {
  width: 100%;
}

.test1 {
  -webkit-transition: all 0.4s cubic-bezier(0.33, 1, 0.68, 1) 0.01s;
  transition: all 0.4s cubic-bezier(0.33, 1, 0.68, 1) 0.01s;
  -webkit-transition: all 0.4s ease-out 0.01s;
  transition: all 0.4s ease-out 0.01s;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  transform: scale(1);
  transform: rotate(-45deg);
  border-radius: 50%;
  animation: Flash1 1s infinite;
  animation: beyooon_a 1s forwards;
  animation: beyooon_b 1s forwards;
  font-family: "Noto Serif JP", serif;
  background: linear-gradient(90deg, rgb(0, 72, 110) 0%, rgb(0, 120, 155) 100%);
}

@keyframes Flash1 {
  50% {
    opacity: 0;
  }
}
@keyframes beyooon_a {
  0% {
    transform: translate(-50%, 0%) scale(0.5);
  }
  16% {
    opacity: 1;
    transform: translate(-50%, 0%) scale(1.22);
  }
  28% {
    transform: translate(-50%, 0%) scale(1);
  }
  88% {
    transform: translate(-50%, 0%) scale(1);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, 0%) scale(1);
  }
}
@keyframes beyooon_b {
  0% {
    transform: scale(0.5);
  }
  16% {
    transform: scale(1.32);
  }
  28% {
    transform: scale(0.87);
  }
  44% {
    transform: scale(1.05);
  }
  59% {
    transform: scale(0.98);
  }
  73% {
    transform: scale(1.01);
  }
  88% {
    transform: scale(1);
  }
  100% {
    transform: scale(1);
  }
}
.test {
  content: "\f105";
  font-family: FontAwesome;
}

.shadow {
  text-shadow: 1px 2px 2px rgba(0, 0, 0, 0.4), 1px 3px 3px rgba(0, 0, 0, 0.4), 1px 2px 3px rgba(0, 0, 0, 0.4);
}

/**scss共通ここまで***/
body {
  background-color: #000;
}

body {
  overflow: hidden;
}

main {
  overflow: hidden;
  background-color: #000;
}
main.active1 {
  overflow: hidden;
  height: 100vh;
}
main.active2 {
  overflow: hidden;
  height: auto;
}

#section01 {
  width: 100%;
  font-family: "Noto Serif JP", serif;
  padding: 134px 0 90px 0;
  /*background-color: #fff;*/
  background-color: black;
  color: white;
}
@media screen and (max-width:800px) {
  #section01 {
    padding: 127px 0 50px 0;
  }
}
#section01 h1 {
  width: auto;
  margin: 0 auto 26px auto;
  text-align: center;
}
#section01 h1 figure {
  width: auto;
  height: 40px;
  margin-bottom: 18px;
}
#section01 h1 img {
  max-width: 196px;
  width: 60%;
  margin-bottom: 18px;
}
@media screen and (max-width:1200px) {
  #section01 h1 img {
    height: auto;
  }
}
@media screen and (max-width:800px) {
  #section01 h1 img {
    height: auto;
  }
}
#section01 h1 span {
  display: block;
  text-align: center;
  font-size: 22px;
}
@media screen and (max-width:1200px) {
  #section01 h1 span {
    font-size: 1.9vw;
  }
}
@media screen and (max-width:800px) {
  #section01 h1 span {
    font-size: 4vw;
  }
}
#section01 .base_text {
  text-align: center;
  width: 90%;
  margin: 0 auto;
  line-height: 180%;
}
@media screen and (max-width:800px) {
  #section01 .base_text {
    font-size: 3.9vw;
  }
}

.landplan .map_wrap {
  margin: 0 auto;
  max-width: 1070px;
  width: 100%;
  position: relative;
  top: 0;
  left: 0;
}
.landplan .map_wrap .map_caption {
  position: absolute;
  bottom: 2px;
  right: 20px;
  font-family: "Noto Serif JP", serif;
}
.landplan .map_wrap .map_icon {
  position: absolute;
  bottom: -7px;
  right: -28px;
  width: 24px;
}
/*np追加250513*/
.map_wrap--sec03 img {
  display: block;
  width: 50%;
  margin: 0 auto;
}
@media screen and (max-width:800px) {
.map_wrap--sec03 img {
  width: 100%;
}
}
.landplan .sec_border {
  width: 100%;
  height: 14px;
  margin-top: 80px;
  margin-bottom: 200px;
  background: url("../images/top2024/under_color.jpg") no-repeat center/cover;
}
@media screen and (max-width:800px) {
  .landplan .sec_border {
    background: url(../images/top2024/under_color.jpg) no-repeat center/cover;
    height: 8px;
    margin-top: 30px;
    margin-bottom: 40px;
  }
}
.landplan .list_wrap {
  font-family: "Noto Serif JP", serif;
  max-width: 760px;
  width: 89%;
  margin: 0 auto;
  margin-top: 105px;
  color: white;
}
@media screen and (max-width:800px) {
  .landplan .list_wrap {
    margin-top: 48px;
  }
}
.landplan .list_wrap .text_list {
  display: flex;
  flex-wrap: wrap;
}
.landplan .list_wrap .text_list li h3 {
  line-height: 1em;
}
.landplan .list_wrap .text_list.text_list--col2 li {
  margin-top: 30px;
  width: 48%;
}
.landplan .list_wrap .text_list.text_list--col2 li:nth-child(even) {
  margin-left: 4%;
}
.landplan .list_wrap .text_list.text_list--col2 li:first-child, .landplan .list_wrap .text_list.text_list--col2 li:nth-child(2) {
  margin-top: 0;
}
@media screen and (max-width:800px) {
  .landplan .list_wrap .text_list.text_list--col2 li {
    margin-top: 15px;
  }
}
.landplan .list_wrap .text_list.text_list--col3 {
  margin-top: 25px;
}
.landplan .list_wrap .text_list.text_list--col3 li {
  width: 32%;
  margin-right: 1.5%;
  margin-top: 10px;
}
.landplan .list_wrap .text_list.text_list--col3 li:nth-child(3n) {
  margin-right: 0;
}
.landplan .list_wrap .text_list.text_list--col3 li:first-child, .landplan .list_wrap .text_list.text_list--col3 li:nth-child(2), .landplan .list_wrap .text_list.text_list--col3 li:nth-child(3) {
  margin-top: 0;
}
.landplan .list_wrap .text_list .title_box {
  display: flex;
  margin-bottom: 10px;
}
@media screen and (max-width:800px) {
  .landplan .list_wrap .text_list .title_box {
    align-items: flex-start;
  }
}
.landplan .list_wrap .text_list .title_box i {
  width: 22px;
  margin-right: 15px;
}
@media screen and (max-width:800px) {
  .landplan .list_wrap .text_list .title_box i {
    min-width: 3.8vw;
    width: 3.8vw;
    margin-right: 2vw;
  }
  .landplan .list_wrap .text_list .title_box i img {
    display: block;
  }
}
@media screen and (max-width:800px) {
  .landplan .list_wrap .text_list .title_box h3 {
    font-size: 3.8vw;
  }
}
.landplan .slick-img {
  position: relative;
  padding-right: 40px;
  padding-left: 40px;
}
@media screen and (max-width:800px) {
  .landplan .slick-img {
    padding-right: 28px;
    padding-left: 28px;
  }
}
.landplan .sec02_prev,
.landplan .sec03_prev {
  position: absolute;
  top: 50%;
  left: 240px;
  z-index: 10;
  transition: all 0.4s ease-out;
  transform: translate(0, -50%);
  width: 75px;
}
.landplan .sec02_prev:hover,
.landplan .sec03_prev:hover {
  cursor: pointer;
  opacity: 0.7 !important;
}
@media screen and (max-width:800px) {
  .landplan .sec02_prev,
  .landplan .sec03_prev {
    width: 8vw !important;
    left: 0px;
  }
}
.landplan .sec02_next,
.landplan .sec03_next {
  position: absolute;
  top: 50%;
  right: 240px;
  z-index: 10;
  transition: all 0.4s ease-out;
  transform: translate(0, -50%);
  width: 75px;
}
.landplan .sec02_next:hover,
.landplan .sec03_next:hover {
  cursor: pointer;
  opacity: 0.7 !important;
}
@media screen and (max-width:800px) {
  .landplan .sec02_next,
  .landplan .sec03_next {
    width: 8vw !important;
    right: 0px;
  }
}
.landplan .textbig {
  width: 100%;
  text-align: center;
  z-index: 5;
  /*color: #000;*/
  color: white;
  letter-spacing: 0.05em;
  line-height: 120%;
  margin-top: 10px;
}
@media screen and (max-width:800px) {
  .landplan .textbig {
    font-size: 2.4vw;
    bottom: 0.5em;
  }
}

#intro {
  width: 100%;
  font-family: "Noto Serif JP", serif;
  padding: 24px 0 94px 0;
  /*background-color: #fff;*/
  background-color: black;
}
@media screen and (max-width:800px) {
  #intro {
    padding: 82px 0 50px 0;
  }
}
#intro .title {
  max-width: 284px;
  margin: 0 auto;
  margin-bottom: 34px;
  width: 61%;
}
@media screen and (max-width:800px) {
  #intro .title {
    margin-bottom: 50px;
  }
}
#intro .banner {
  margin: 0 auto;
  margin-top: 10px;
  max-width: 1070px;
}
@media screen and (max-width:800px) {
  #intro .banner {
    width: 92%;
    margin-top: 30px;
  }
}
#intro .banner_list {
  display: flex;
  justify-content: space-between;
  max-width: 645px;
  width: 93%;
  margin: 0 auto;
  margin-top: 93px;
}
@media screen and (max-width:800px) {
  #intro .banner_list {
    margin-top: 58px;
  }
}
#intro .banner_list li {
  width: 49%;
}
#intro .banner_list li a {
  display: block;
  text-align: center;
  box-sizing: border-box;
  padding: 12px 0;
  color: #fff;
}
@media screen and (max-width:800px) {
  #intro .banner_list li a {
    padding: 7px 0;
  }
}
#intro .banner_list li a span {
  display: inline-block;
  position: relative;
  top: 0;
  left: 0;
}
#intro .banner_list li a span:after {
  content: "";
  position: absolute;
  top: 0;
  right: -1.5em;
  height: 100%;
  width: 0.5em;
  background: url(../images/landplan/intro_btn_icon.svg) no-repeat center/100% auto;
}
#intro .banner_list li:first-child a {
  background: url(../images/landplan/intro_btn1_bg.jpg) no-repeat center/cover;
}
#intro .banner_list li:last-child a {
  background: url(../images/landplan/intro_btn2_bg.jpg) no-repeat center/cover;
}

#section02 {
  background-color: #fff;
  width: 100%;
  background-color: #fff;
  padding-bottom: 100px;
}
@media screen and (max-width:800px) {
  #section02 {
    padding-bottom: 70px;
  }
}
#section02 .mv_wrap {
  position: relative;
  top: 0;
  left: 0;
  background-color: #fff;
}
#section02 .mv_wrap .title {
  position: absolute;
  top: 8%;
  left: 0;
  width: 100%;
  text-align: center;
}
@media screen and (max-width:800px) {
  #section02 .mv_wrap .title {
    top: 10%;
  }
}
#section02 .mv_wrap .title img {
  width: 60%;
  max-width: 190px;
}
#section02 .map_content_wrap {
  padding-bottom: 74px;
}
@media screen and (max-width:800px) {
  #section02 .map_content_wrap {
    padding-bottom: 44px;
  }
}
#section02 .slider_contena {
  padding: 74px 0 44px;
  background: #E4E4E5;
  font-family: "Noto Serif JP", serif;
}
@media screen and (max-width:800px) {
  #section02 .slider_contena {
    padding: 32px 0 12px;
  }
}

#section03 {
  font-family: "Noto Serif JP", serif;
  width: 100%;
  /*background-color: #fff;*/
  background-color: black;
  padding-bottom: 100px;
}
@media screen and (max-width:800px) {
  #section03 {
    padding-bottom: 40px;
  }
}
#section03 .mv_wrap {
  position: relative;
  top: 0;
  left: 0;
  /*background-color: #fff;*/
  background-color: black;
}
#section03 .mv_wrap .title {
  position: absolute;
  top: 10%;
  left: 0;
  width: 100%;
  text-align: center;
}
#section03 .mv_wrap .title img {
  width: 80%;
  max-width: 290px;
}
#section03 .sec_border {
  margin-top: 52px;
  margin-bottom: 140px;
  background-color: black;
}
@media screen and (max-width:800px) {
  #section03 .sec_border {
    margin-top: 18px;
    margin-bottom: 36px;
  }
}
#section03 .map_content_wrap {
  padding-bottom: 74px;
  background-color: black;
}
@media screen and (max-width:800px) {
  #section03 .map_content_wrap {
    padding-bottom: 30px;
  }
}
#section03 .slider_contena {
  padding: 74px 0 44px;
  background: #1e1e1e;
}
@media screen and (max-width:800px) {
  #section03 .slider_contena {
    padding: 30px 0 44px;
  }
}

#section04 {
  background-color: #fff;
  font-family: "Noto Serif JP", serif;
  width: 100%;
  background-color: #000;
  color: #fff;
  padding-bottom: 80px;
}
@media screen and (max-width:800px) {
  #section04 {
    padding-bottom: 24px;
  }
}
#section04 .block {
  padding-top: 46px;
}
@media screen and (max-width:800px) {
  #section04 .block {
    padding-top: 18px;
  }
}
#section04 .block.block--mt {
  padding-top: 108px;
}
@media screen and (max-width:800px) {
  #section04 .block.block--mt {
    padding-top: 40px;
  }
}
#section04 .block.block--mt .block_img {
  margin-top: 14px;
}
#section04 .block .title_block {
  text-align: center;
}
#section04 .block .title_block h3 {
  line-height: 1.6em;
}
@media screen and (max-width:800px) {
  #section04 .block .title_block h3 {
    font-size: 3.7vw;
  }
}
#section04 .block .title_block h3.title--line span {
  border-bottom: 1px solid #fff;
}
#section04 .block .title_block p {
  margin-top: 6px;
}
#section04 .block .block_img {
  margin-top: 37px;
  position: relative;
  top: 0;
  left: 0;
}
@media screen and (max-width:800px) {
  #section04 .block .block_img {
    margin-top: 27px;
  }
}
#section04 .block .block_img figcaption {
  color: #fff;
  position: absolute;
  bottom: 4px;
  right: 7px;
}

.bottom_text_wrap {
  padding: 15px 0 80px;
  background-color: #fff;
  font-family: "Noto Serif JP", serif;
}
.bottom_text_wrap .container {
  max-width: 700px;
  width: 90%;
  margin: 0 auto;
}

#footer_nav {
  /*background-color: #eeeceb;*/
  background-color: #1e1e1e;
}

.landplans {
  /*background-color: #eeeceb;
  color: #000;*/
  background-color: #1e1e1e;
  color: white;
}

.sp_tops {
  pointer-events: none;
  opacity: 0;
  transition: all 1.8s cubic-bezier(0.33, 1, 0.68, 1) 0.01s;
  position: fixed;
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
}
.sp_tops.active {
  opacity: 1;
}

.scrolltext2 {
  position: absolute;
  left: 50.2%;
  top: 70%;
  width: 1px;
  height: 40px;
  z-index: 30;
  font-family: "Noto Serif JP", serif;
  opacity: 1;
  transition: all 0.8s cubic-bezier(0.33, 1, 0.68, 1) 0.01s;
}
@media screen and (max-width:800px) {
  .scrolltext2 {
    top: auto;
    display: block;
    bottom: calc(115px + 25vw);
    top: auto;
    bottom: 32.5%;
  }
}
.scrolltext2.active {
  opacity: 0;
  pointer-events: none;
}
.scrolltext2 .scrolltext__moji {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 8px);
  transform: translate(-50%, 0%);
  color: #000;
}
.scrolltext2 .scrolltext__moji.active_pc {
  color: #000;
}
@media screen and (max-width:800px) {
  .scrolltext2 .scrolltext__moji.active_pc {
    color: #000;
  }
}
.scrolltext2 .scrolltext__intext {
  width: 100%;
  height: 100%;
  background-color: #000;
  animation: scrollmoves 1.4s ease-in-out infinite;
  position: absolute;
  top: 0;
  left: 0;
}
.scrolltext2 .scrolltext__intext.active_pc {
  background-color: #000;
}
@media screen and (max-width:800px) {
  .scrolltext2 .scrolltext__intext.active_pc {
    background-color: #000;
  }
}
@keyframes scrollmoves {
  0% {
    height: 0;
    top: 0;
    transform: translate(0%, 0%);
  }
  30% {
    height: 40px;
    top: 0%;
    transform: translate(0%, 0%);
  }
  100% {
    height: 0;
    top: 100%;
    transform: translate(0%, 0%);
  }
}

h2.top_first {
  position: absolute;
  bottom: 30px;
  transform: translate(0%, 0%);
  z-index: 40;
  left: 0%;
  width: 100%;
  font-family: "Noto Serif JP", serif;
  opacity: 0;
  transition: all 0.8s cubic-bezier(0.33, 1, 0.68, 1) 0.01s;
  display: none;
}
@media screen and (max-width:800px) {
  h2.top_first {
    display: block;
    top: 75%;
    opacity: 1;
  }
}
h2.top_first.active {
  opacity: 0;
  pointer-events: none;
}
h2.top_first .textsub {
  text-align: center;
  color: #fff;
  font-size: 20px;
  line-height: 160%;
}
@media screen and (max-width:800px) {
  h2.top_first .textsub {
    font-size: 2.8vw;
  }
}
h2.top_first .textmain {
  letter-spacing: -0.05em;
  color: #fff;
  text-align: center;
  font-size: 38px;
  color: #fff;
  line-height: 125%;
}
@media screen and (max-width:800px) {
  h2.top_first .textmain {
    font-size: 5.8vw;
  }
}

.botanbox {
  width: 100%;
  max-width: 646px;
  margin: 90px auto 115px auto;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width:800px) {
  .botanbox {
    width: 92%;
    margin: 45px auto 60px auto;
  }
}
.botanbox a {
  width: 48.5%;
  max-width: 313px;
}/*# sourceMappingURL=landplan.css.map */