@charset "utf-8";

/*----------------------------------------------------------------------------------------------
	base
----------------------------------------------------------------------------------------------*/

/*----------------------------------------------------------------------------------------------
	top v02
----------------------------------------------------------------------------------------------*/

.mv_mov_set {
  background: #ffffff;
  /* height: 56.25vw; */
  height: 56.25%;
  position: relative;
}

.top-mv {
  width: 100%;
  height: 100%;
}

@media (max-width: 800px) {
  #header {
    background-color: rgba(255, 255, 255, 1);
  }

  .mv_mov_set {
    height: 125vw;
  }
}

.center_contena01 {
  margin: 0 auto;
}

.top_kokuchi01 {
  text-align: center;
}

.top_kokuchi02 {
  text-align: center;
  margin-top: 80px;
}

.info_ttl {
  font-family: 'garamond', sans-serif;
  text-transform: uppercase;
  font-size: 22px;
  text-align: center;
  padding-bottom: 20px;
  /* margin-top: 80px; */
  letter-spacing: .2em;
}

.info_ttl>span {
  display: inline-block;
  position: relative;
}

.info_ttl>span::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  width: 238px;
  height: .5px;
  background: #000;
  transform: translateX(-50%);
}

.p-top_information {
  margin-top: 120px;
  max-width: 1020px;
  margin-inline: auto;
}

.top_information {
  display: flex;
  padding: 0 1em 1em;
  border-bottom: .5px solid #000;
  margin-bottom: 0.7em;
  font-size: 20px;
  text-align: justify;
}

.top_information dt {
  width: 7em;
}

.top_information dd {
  width: calc(100% - 7em);
}

.top_information a {
  color: #63729c;
}

@media (max-width: 800px) {
  .p-top_information {
    margin-top: 60px;
  }

  .top_information {
    flex-direction: column;
    padding: 0 0 1em;
    font-size: 16px;
  }

  .top_information dd {
    margin-top: 0.7em;
    width: 100%;
  }
}

.p-top_m01 {
  text-align: center;
  margin-top: 150px;
}

.top_m02 {
  margin-top: 20px;
}

.c-top-info-btns {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  max-width: 470px;
  margin: 50px auto 0;
}

.c-top-info-btns li {
  width: 100%;
}

.c-top-info-btns a.c-req-btn {
  background: #73644f;
  font-size: 23px;
  letter-spacing: 0.2em;
  height: 92px;
  line-height: 92px;
  position: relative;
}

.c-top-info-btns a.c-req-btn::after {
  content: "";
  position: absolute;
  right: 10px;
  top: 50%;
  width: 30px;
  height: 1px;
  background: #fff;
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
}

.c-top-info-btns a:hover.c-req-btn {
  background: #404253;
}

.c-top-info-btns a:hover.c-req-btn::after {
  right: 2px;
}




@media (max-width: 800px) {
  .center_contena01 {
    width: 86%;
    margin: 0 auto;
  }

  .p-top_information {
    padding-bottom: 25px;
  }

  .top_information {
    display: flex;
    margin-top: 15px;
  }

  .top_information dt {
    width: 6em;
  }

  .p-top_m01 {
    text-align: center;
    margin-top: 150px;
  }

  .top_m02 {
    margin-top: 20px;
  }

  .c-top-info-btns {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    width: 80%;
    margin: 50px auto 0;
  }

  .c-top-info-btns a.c-req-btn {
    font-size: 16px;
    letter-spacing: 0.2em;
    height: 50px;
    line-height: 50px;
  }

  .p-top-models:nth-child(2) {
    margin-top: 60px;
  }

  .p-top-models_ttl {
    font-size: 26px;
    letter-spacing: -.05em;
  }

  .p-top-models_txt01 {
    line-height: 1.8;
    margin-top: 15px;
    letter-spacing: -.05em;
  }

  .p-top-models_txt02 {
    margin-top: 20px;
  }

}

.mov_ttl {
  text-align: center;
  margin-top: 100px;
}

.top_prv {
  position: relative;
  max-width: 800px;
  margin: 40px auto 0;
  border: 1px solid rgb(230, 230, 230);
}

#movset,
.movset {
  width: 100%;
  height: 100%;
}

.mov_icon {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.mov_inner {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 56.25%;
  /* 高さを指定(16:9) */
}

/* YouTube埋め込み用のiframe */
.mov_inner iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.btn_reflection_in {
  display: block;
  -webkit-transition: all .7s ease;
  transition: all .7s ease;
  overflow: hidden;
  position: relative;
}

.reflection {
  height: 100%;
  width: 30px;
  position: absolute;
  top: -180px;
  left: 0;
  background-color: #fff;
  opacity: 0;
  transform: rotate(45deg);
  animation: reflection 3s ease-in-out infinite;
  -webkit-transform: rotate(45deg);
  -webkit-animation: reflection 3s ease-in-out infinite;
}

@keyframes reflection {
  0% {
    transform: scale(0) rotate(45deg);
    opacity: 0;
  }

  80% {
    transform: scale(0) rotate(45deg);
    opacity: 0.5;
  }

  81% {
    transform: scale(4) rotate(45deg);
    opacity: 0.75;
  }

  100% {
    transform: scale(50) rotate(45deg);
    opacity: 0;
  }
}

@-webkit-keyframes reflection {
  0% {
    -webkit-transform: scale(0) rotate(45deg);
    opacity: 0;
  }

  80% {
    -webkit-transform: scale(0) rotate(45deg);
    opacity: 0.5;
  }

  81% {
    -webkit-transform: scale(4) rotate(45deg);
    opacity: 0.75;
  }

  100% {
    -webkit-transform: scale(50) rotate(45deg);
    opacity: 0;
  }
}

.top_obi {
  position: relative;
  margin: 0 auto;
  width: 100%;
  padding: 84px 20px;
  background : rgba(84, 96, 59, 1);
  text-align: center;
}

.top_obi_list {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  max-width: 1400px;
}

.top_obi_list li {
  padding: 0 30px;
  border-right: solid 1px #ffffff40;
}

.top_obi_list li:last-child {
  border-right: none;
}

.top_mv_cta {
  position: absolute;
  top: -8vw;
  right: 0;
  filter: drop-shadow(2px 2px 5px rgba(0, 0, 0, 0.7));
  width: 25.3vw;
}

.top_mv_cta img {
  width: 100%;
}


.top_point {
  position: relative;
  margin: 0 auto;
  width: 100%;
  padding: 40px 20px 35px;
  background : rgba(84, 96, 59, 1);
  text-align: center;
}

@media (max-width: 800px) {
  .top_obi {
    padding: 44px 8% 44px;
    background: url(../img/top_bg_bluegray_sp.jpg) no-repeat center center;
    background-size: cover;
  }

  .top_obi_list {
    flex-direction: column;
  }

  .top_obi_list li {
    padding: 0 0 20px;
    margin-bottom: 20px;
    border-right: none;
    border-bottom: solid 1px #ffffff40;
    width: 100%;
  }

  .top_obi_list li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding: 0 0 10px;
  }

  .top_kokuchi01 img {
    width: 100%;
  }

  .top_mv_cta {
    display: none;
    position: absolute;
    top: -8.7vw;
    width: 20vw;
  }

  .top_point {
    position: relative;
    margin: 0 auto;
    width: 100%;
    padding: 30px 8% 30px;
    background : rgba(84, 96, 59, 1);
    text-align: center;
  }

}

.top_kokuchi02 {
  text-align: center;
  margin-top: 60px;
}

.p-top_notes_set {
  max-width: 800px;
  margin: 60px auto 0;
  padding: 20px;
  background: #EBF0ED;
  font-size: 0.9em;
  text-align: justify;
}

.p-top_notes_set p {
  text-indent: -1em;
  padding-left: 1em;
}

.p-top_notes_set p+p {
  margin-top: .4em;
}

@media (max-width: 800px) {
  .top_kokuchi02 img {
    width: 100%;
  }
}

.info_ttl {
  font-size: 22px;
  text-align: center;
  padding-bottom: 10px;
  /* margin-top: 80px; */
  letter-spacing: .2em;
}

.info_ttl>span {
  display: inline-block;
  position: relative;
}

.info_ttl>span::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  width: 105%;
  height: .5px;
  background: #000;
  transform: translateX(-50%);
}

@media (max-width: 800px) {
  .info_ttl {
    margin-top: 20px;
  }

  .top_kokuchi02 {
    margin-top: 20px;
  }
}

/* top-section03 */
.top-section03 {
  margin-top: 250px;
  position: relative;
}

.top-section03::before {
  content: "";
  position: absolute;
  bottom: 100px;
  left: 0;
  width: 100%;
  height: 45%;
  background: #ebf0ed;
  z-index: -1;
}

.l-section03_box01 {
  display: flex;
  width: clamp(768px, 90%, 1400px);
  margin: 0 auto;
  justify-content: space-between;
}

.p-section03_box01_txtbox {
  width: 52.8%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.p-section03_box01_img01 {
  width: 43.2%;
}

.p-top_message02 {
  font-size: clamp(13px, 1.25vw, 17px);
  line-height: 3;
  letter-spacing: .05em;
  margin-top: 3em;
}

@media (max-width: 1400px) {
  .p-top_message02 {
    line-height: 2.5;
    letter-spacing: .05em;
    margin-top: 3em;
  }
}

.l-section03_box02 {
  display: flex;
  width: clamp(300px, 90%, 1400px);
  margin: 56px auto 0;
  padding: 0 5%;
  justify-content: space-between;
  gap: 5%;
  position: relative;
}

.l-section03_box02::before {
  content: "";
  position: absolute;
  top: 56px;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: -1;
}


/* top-section04 */
.top-section04 {
  margin-top: 170px;
}

.p-top_contents_list {
  display: flex;
  width: 100%;
  margin: 50px auto 0;
  flex-wrap: wrap;
}

.p-top_contents_item {
  width: 100%;
}

.c-item_img {
  position: relative;
}

.c-item_ttl_set {
  margin: 0;
}

.c-item_ttl_en {
  font-size: clamp(22px, 2.3vw, 36px);
  letter-spacing: .15em;
  line-height: 1.2;
  font-family: 'garamond', sans-serif;
}

.c-item_ttl_jp {
  font-size: clamp(16px, 1.2vw, 19px);
  letter-spacing: .16em;
  line-height: 1.5;
  margin-top: .2em;
}

.c-item_soon {
  display: block;
  font-size: 17px;
  letter-spacing: .08em;
  line-height: 1.2;
  font-family: 'garamond', sans-serif;
  margin-top: 23px;
  padding: 0 0 10px;
  width: 9em;
  position: relative;
  border-bottom: .5px solid #000;
}

.c-item_soon a {
  display: block;
  position: relative;
}

.c-item_soon span::after {
  content: "";
  display: inline-block;
  width: 1.5em;
  height: 0.5px;
  margin-left: 10px;
  transform: translateY(-5px);
  background: #000;
  position: absolute;
  top: .8em;
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
}

a:hover .c-item_soon span:after {
  margin-left: 20px;
}

.sp_scroll {
  display: none;
}

@media (max-width: 800px) {
  .sp_scroll {
    display: block;
    text-align: center;
    margin-top: 20px;
  }

  /* top-section03 */
  .top-section03 {
    margin-top: 140px;
    position: relative;
  }

  .top-section03::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 65%;
    background: #ebf0ed;
    z-index: -1;
  }

  .l-section03_box01 {
    display: flex;
    width: 100%;
    margin: 0 auto;
    justify-content: start;
    flex-direction: column;
  }

  .p-section03_box01_txtbox {
    width: 100%;
    padding: 0 5%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
  }

  .p-section03_box01_img01 {
    width: 85%;
    margin-top: -50px;
    z-index: -1;
  }

  .p-top_message02 {
    font-size: 14px;
    line-height: 2;
    letter-spacing: .02em;
    margin-top: 2em;
    text-align: justify;
  }

  .l-section03_box02 {
    display: flex;
    width: 100%;
    margin: 30px auto 0;
    padding: 0;
    justify-content: start;
    flex-direction: column;
    gap: 0;
  }

  .l-section03_box02::before {
    display: none;
  }

  .p-section03_box02_img01 {
    width: 85%;
  }

  .p-section03_box02_img02 {
    width: 85%;
    margin: -130px 0 0 auto;
    z-index: -1;
  }

  /* top-section04 */
  .top-section04 {
    margin-top: 170px;
  }

  .p-top_contents_list {
    display: flex;
    width: 90%;
    flex-direction: column;
    margin: 50px auto 0;
    gap: 0;
  }

  .p-top_contents_item {
    width: 100%;
  }

  .c-item_img {
    position: relative;
  }

  .c-item_ttl_set {
    margin: 0;
  }

  .c-item_ttl_en {
    font-size: 20px;
    letter-spacing: .05em;
    line-height: 1.2;
    font-family: 'garamond', sans-serif;
  }

  .c-item_ttl_jp {
    font-size: 3.7vw;
    letter-spacing: .16em;
    line-height: 1.5;
    margin-top: .5em;
  }

  .c-item_ttl_jp.u-letter-space-sm {
    letter-spacing: .05em;
  }

  .c-item_soon {
    display: block;
    font-size: 14px;
    letter-spacing: .08em;
    line-height: 1.2;
    font-family: 'garamond', sans-serif;
    margin-top: 20px;
    padding: 0 0 10px;
    width: 100%;
    border-bottom: .5px solid #000;
  }
}

@media (max-width: 400px) {

  .top-section03::before {
    height: 50%;
  }

  .l-section03_box02 {
    display: flex;
    width: 100%;
    margin: 20px auto 0;
  }
}

.top_banner01 {
  max-width: 450px;
  margin-inline: auto;
  margin-top: 60px;
}

.top_banner01 a {
  display: block;
}

.top_banner01 a:hover {
  background: #e1e6fb;
}

.p-top_contents_item a:hover {
  color: #9c825c;
  background: rgba(255, 255, 255, 1);
}

.top_banner_area {
  max-width: 800px;
  margin-inline: auto;
  margin-top: 80px;
}

a.c-info-btn {
  width: 392px;
  display: block;
  position: relative;
  text-align: center;
  padding: 0 20px;
  color: #fff;
  font-size: 27px;
  letter-spacing: 0.2em;
  height: 78px;
  line-height: 78px;
  background: #950a0a;
  margin-inline: auto;
  margin-top: 60px;
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
}

a:hover.c-info-btn {
  background: #621414;
}

.top_banner {
  max-width: 877px;
  margin-inline: auto;
  margin-top: 170px;
  box-shadow: 0px 0px 9px 2px rgba(180, 180, 180, 0.6);
}

.top_banner+.top_banner {
  margin-top: 40px;
}

@media (max-width: 800px) {
  .top_banner_area {
    /* width: 85%; */
    margin-top: 60px;
  }

  a.c-info-btn {
    width: 90%;
    display: block;
    position: relative;
    text-align: center;
    padding: 0 20px;
    color: #fff;
    font-size: 20px;
    letter-spacing: 0.2em;
    height: 50px;
    line-height: 50px;
    margin-top: 30px;
  }

  .top_banner {
    margin-top: 50px;
  }

  .top_banner+.top_banner {
    margin-top: 30px;
  }
}


/* modal */

#modal-wrap {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 99999;
}

.modal-box {
  position: absolute;
  max-width: 1000px;
  box-sizing: border-box;
  padding: 0;
  text-align: center;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 9px 18px rgba(0, 0, 0, .36);
}

#modal__btn {
  width: 40px;
  height: 40px;
  line-height: 38px;
  font-size: 25px;
  color: #fff;
  background: #715b3c;
  cursor: pointer;
  z-index: 1001;
  border-radius: 100%;
  position: absolute;
  top: -20px;
  right: -20px;
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
}

#modal__btn:hover {
  background: #404253;
}

.modal_txt02 {
  font-size: 16px;
  line-height: 1.4;
  margin-bottom: 20px;
}

.modal__morebtn {
  width: 50%;
  margin: 0 auto;
}

a.modal_txt01__btn {
  display: block;
  text-align: center;
  padding: 0 0;
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
  text-decoration: none;
  color: #fff;
}

.btn_reflection_in {
  display: block;
  -webkit-transition: all .7s ease;
  transition: all .7s ease;
  overflow: hidden;
  position: relative;
}

.modal-banner {
  background: #fff;
}

@media screen and (max-width: 1110px) {
  .modal-box {
    width: 85%;
    padding: 0;
  }

  #modal__btn {
    top: -20px;
    right: -20px;
  }

  a.modal_txt01__btn {
    transform: translateY(0);
    margin: 0 0 0;
    font-size: 22px;
  }

  .sp_ml10 {
    margin-left: .5em;
  }

  .modal__morebtn {
    width: 75%;
    margin: 0 auto;
  }

}


a.c-info-btn2 {
  width: 352px;
  display: block;
  position: relative;
  text-align: center;
  padding: 0 20px;
  color: #fff;
  font-size: 27px;
  letter-spacing: 0.2em;
  height: 68px;
  line-height: 68px;
  background: #53715f;
  margin-inline: auto;
  margin-top: 40px;
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
}

a:hover.c-info-btn2 {
  background: #395142;
}

@media screen and (max-width: 800px) {
  a.c-info-btn2 {
    width: 57%;
    display: block;
    position: relative;
    text-align: center;
    color: #fff;
    font-size: 19px;
    letter-spacing: 0;
    height: 43px;
    line-height: 43px;
    margin-top: 20px;
  }

}


.top_takuchi {
  width: clamp(300px, 90%, 1200px);
  margin-inline: auto;
  margin-top: 80px;
  border: 1px solid #A06A19;
  padding: 80px 5%;
  text-align: center;
}

a.c-takuchi-btn {
  width: 400px;
  display: block;
  position: relative;
  text-align: center;
  padding: 0 20px;
  color: #ffffff;
  font-size: 27px;
  letter-spacing: 0.1em;
  height: 68px;
  line-height: 63px;
  background: linear-gradient(90deg, rgba(160, 106, 25, 1) 0%, rgba(124, 73, 27, 1) 100%);;
  border: 2px solid #d3b78e;
  border-radius: 100px;
  margin-inline: auto;
  margin-top: 20px;
  -webkit-transition: all .5sease;
  transition: all .5sease;
}

a.c-takuchi-btn:hover {
  opacity: 0.7;
}

@media screen and (max-width: 800px) {
  .top_kokuchi03 {
    text-align: center;
    margin-top: 10px;
  }

  .top_takuchi {
    width: clamp(300px, 100%, 980px);
    margin-inline: auto;
    margin-top: 30px;
    border: 1px solid #A06A19;
    padding: 30px 5%;
    text-align: center;
  }
  
  a.c-takuchi-btn {
    width: 80%;
    display: block;
    position: relative;
    text-align: center;
    padding: 0 5%;
    color: #ffffff;
    font-size: 16px;
    letter-spacing: 0.1em;
    height: 48px;
    line-height: 42px;
    background: linear-gradient(90deg, rgba(160, 106, 25, 1) 0%, rgba(124, 73, 27, 1) 100%);
    border: 2px solid #d3b78e;
    border-radius: 100px;
    margin-inline: auto;
    margin-top: 10px;
    -webkit-transition: all .5sease;
    transition: all .5sease;
  }
  
}



/* v03 */
.top-section02 {
  padding: 230px 0 0;
}

.top_banner_model {
  width: clamp(300px, 90%, 1200px);
  margin-inline: auto;
  margin-top: 80px;
}

/* towndesign */
.top-v03-section03 {
  background-color: #EAEDDC;
  margin-top: 120px;
  padding: 170px 0;
  background-image: url(../../img/top/v02/mori01.png), url(../../img/top/v02/top_towndesign_bg.jpg);
  background-repeat: no-repeat, no-repeat;
  background-size: 43.5%, 100%;
  background-position: left top, center bottom;
  position: relative;
}

.top-v03-section03-in {
  margin-inline: auto;
  position: relative;
  text-align: center;
}
.top_towndesign-ttl01 {
  text-align: center;
}

.top_towndesign-t01 {
  margin-top: 230px;
}

.top_towndesign-t02 {
  font-size: 50px;
  margin-top: 2em;
  color: #2c5139;
}

.top_towndesign-t03 {
  font-size: 21px;
  line-height: 2;
  margin-top: 4em;
}


.top_towndesign_i01 {
  width: 100%;
  margin-top: 120px;
}

.top_towndesign_i02 {
  width: clamp(200px, 80%, 1400px);
  margin-inline: auto;
  margin-top: 120px;
}

.mori02 {
  width: 29.7%;
  position: absolute;
  bottom: 23%;
  left: 0;
}

.u-big {
  font-size: 1.5em;
  line-height: 1;
}

.u-access-lead03 {
  font-size: 23px;
  line-height: 2;
  
}

a.btn_more_v03 {
  display: inline-block;
  position: relative;
  font-size: 24px;
  margin-top: 3em;
}

a.btn_more_v03::after {
  content: "";
  background: url(../../img/top/v02/top_arrow.svg);
  background-size: cover;
  position: absolute;
  top: calc(50% - 1.5em);
  right: -4.5em;
  width: 3.5em;
  height: 3.5em;
  transition: 0.3s;
}

a.btn_more_v03 span {
  border-bottom: 1px solid #000000;
  padding-bottom: .5em;
}

a.btn_more_v03:hover {
  transform: translateX(1em);
}

a.btn_more_v03.u-black {
  color: #000;
}
a.btn_more_v03.u-black::after {
  background: url(../../img/top/v02/top_arrow.svg);
  background-size: cover;
}
a.btn_more_v03.u-black span {
  border-bottom: 1px solid #000000;
}

a.btn_more_v03.u-white {
  color: #ffffff;
}
a.btn_more_v03.u-white::after {
  background: url(../../img/top/v02/top_arrow_white.svg);
  background-size: cover;
}
a.btn_more_v03.u-white span {
  border-bottom: 1px solid #ffffff;
}

.top-townplan-btn {
  padding-right: 7em;
}


.top-v02-section04 {
  padding: 170px 0 0;
  text-align: center;
  position: relative;
}

.top_sec04_banner {
  width: clamp(200px, 90%, 700px);
  margin-inline: auto;
  margin-top: 120px;
}

.top_landscapeplan_i01 {
  width: 100%;
  margin-top: 180px;
}

.top-v03-section04 {
  padding: 170px 0 50px;
  background-image: url(../../img/top/v02/top_location_bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
  position: relative;
}



/* access */
.top-v02-section05 {
  background-color: #141517;
  margin-top: 0;
  padding: 240px 0 150px;
  background-image: url(../../img/top/v02/top_access_bg01.jpg), url(../../img/top/v02/top_access_bg02.jpg);
  background-repeat: no-repeat, no-repeat;
  background-size: 100%, 100%;
  background-position: center top, center bottom;
  position: relative;
  color: #fff;
}

.top-v02-access-t02 {
  font-size: 50px;
  margin-top: 2em;
  color: #c8a52c;
}

.top-v02-section04-in {
  width: clamp(300px, 90%, 1400px);
  margin-inline: auto;
  position: relative;
  text-align: justify;
}

.top_access_i01 {
  margin-top: 170px;
}

.top_access_t01 {
  margin-top: 1em;
}

.top-v02-access-box01 {
  display: flex;
  gap: 6.7%;
  margin-top: 100px;
}

.top-v02-access-box01_img {
  width: 42.3%;
}

.top-v02-access-box01_txt {
  margin-top: 2em;
}

.top_access_t02 {
  margin-top: 1em;
  width: 120%;
}

.top_access_i03_wrap {
  width: 50%;
  margin: -228px 0 0 55%;
}

.top_access_i03 {
  width: 74%;
}

.top_access_t03 {
  margin-top: 1em;
}


.top-v02-section06 {
  padding: 240px 0 30px;
  background-image: url(../../img/top/v02/top_location_bg.jpg);
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center top;
}

.top-v02-location-box01 {
  width: clamp(300px, 90%, 1400px);
  margin-inline: auto;
}


.top-v02-location-t01 {
  font-family: 'garamond', sans-serif;
  font-size: 36px;
  letter-spacing: .1em;
}
.top-v02-location-t02 {
  font-size: 45px;
  margin-top: 2em;
  text-align: justify;
  color: #2c5139;
}

.top-v02-location-box01_txt {
  margin-top: 2em;
  text-align: justify;
}

.top_location_img_set {
  margin-inline: auto;
  position: relative;
  z-index: -1;
  text-align: justify;
}

.top_location_i01 {
  width: 45%;
  margin-top: -28%;
  margin-left: 55%;
}

.top_location_t01 {
  margin-top: 1em;
}

.top_location_i02 {
  position: relative;
  width: 24.3%;
  margin-top: -15%;
  margin-left: 23.8%;
}

.top_location_i03_wrap {
  width: clamp(300px, 90%, 1400px);
  margin-inline: auto;
  margin-top: 70px;
  display: flex;
  flex-direction: row-reverse;
  align-items: flex-start;
  gap: 7.5%;
  justify-content: flex-end;
}

.top_location_i03 {
  width: 36%;
  position: relative;
}

.top_location_i04 {
  width: 48.2%;
}

@media (max-width: 800px) {
  /* v03 */
  .top-section02 {
    padding: 40px 0 0;
    background: url(../../img/top/v02/top_info_bg_sp.jpg) no-repeat right top;
    background-size: 100%;
  }

  .top_banner_model {
    width: 100%;
    margin-inline: auto;
    margin-top: 30px;
  }

  .top_insta_movie_wrap {
    width: 120%;
    margin: 0 -8% 0 0;
    overflow-x: scroll;
    -webkit-overflow-scrolling: touch;
    overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
  }

  .top_insta_movie {
    width: 220vw;
    margin-inline: auto;
    margin-top: 40px;
    display: flex;
    gap: 15px;
    padding-right: 16%;
  }

  .top_insta_banner {
    width: 47px;
    margin-inline: auto;
    margin-top: 30px;
  }

  .top_banner_voice {
    width: 100%;
    margin-inline: auto;
    margin-top: 40px;
  }

  /* towndesign */
  .top-v03-section03 {
    background-color: #EAEDDC;
    margin-top: 40px;
    padding: 100px 0 80px;
    background-image: url(../../img/top/v02/mori01.png), url(../../img/top/v02/top_towndesign_bg.jpg);
    background-repeat: no-repeat, no-repeat;
    background-size: 65%, 100%;
    background-position: left top, center bottom;
    position: relative;
  }

  .top-v03-section03-in {
    margin-inline: auto;
    position: relative;
    text-align: center;
  }
  .top_towndesign-ttl01 {
    text-align: center;
    padding: 0 37%;
  }

  .top_towndesign-t01 {
    margin-top: 100px;
  }

  .top_towndesign-t01 img {
    height: 5.5vw;
  }

  .top_towndesign-t02 {
    font-size: 5.5vw;
    line-height: 1.7;
    margin-top: 1.5em;
    color: #2c5139;
  }

  .top_towndesign-t03 {
    font-size: 3.8vw;
    line-height: 2;
    margin-top: 2em;
  }


  .top_towndesign_i01 {
    width: 100%;
    margin-top: 70px;
  }

  .top_towndesign_i02 {
    width: clamp(200px, 90%, 1400px);
    margin-inline: auto;
    margin-top: 70px;
  }

  .mori02 {
    width: 41.7%;
    position: absolute;
    bottom: 15%;
    left: 0;
  }

  .u-big {
    font-size: 1.5em;
    line-height: 1;
  }

  .u-access-lead03 {
    font-size: 3.8vw;
    line-height: 2;
  }

  .top-townplan-btn {
    padding-right: 5em;
  }
  

  a.btn_more_v03 {
    display: inline-block;
    position: relative;
    /* color: #fff; */
    font-size: 3.9vw;
    margin-top: 3em;
  }

  a.btn_more_v03::after {
    content: "";
    background: url(../../img/top/v02/top_arrow.svg);
    background-size: cover;
    position: absolute;
    top: calc(50% - 1.5em);
    right: -4.5em;
    width: 3.5em;
    height: 3.5em;
    transition: 0.3s;
  }

  a.btn_more_v03 span {
    padding-bottom: .5em;
  }

  a.btn_more_v03:hover {
    transform: translateX(1em);
  }

  a.btn_more_v03.u-black {
    color: #000;
  }
  a.btn_more_v03.u-black::after {
    background: url(../../img/top/v02/top_arrow.svg);
    background-size: cover;
  }
  a.btn_more_v03.u-black span {
    border-bottom: 1px solid #000000;
  }

  a.btn_more_v03.u-white::after {
    background: url(../../img/top/v02/top_arrow_white.svg);
    background-size: cover;
  }
  a.btn_more_v03.u-white span {
    border-bottom: 1px solid #ffffff;
  }


  .top-v02-section04 {
    padding: 0 0 0;
    text-align: center;
    position: relative;
  }
  
  .top_sec04_banner {
    width: clamp(200px, 90%, 700px);
    margin-inline: auto;
    margin-top: 70px;
  }
  
  .top_landscapeplan_i01 {
    width: 100%;
    margin-top: 70px;
  }
  
  .top-v03-section04 {
    padding: 170px 0 50px;
    background-image: url(../../img/top/v02/top_location_bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center top;
    position: relative;
  }
  
  
  
  /* access */
  .top-v02-section05 {
    background-color: #141517;
    margin-top: 0;
    padding: 100px 0 70px;
    background-image: url(../../img/top/v02/top_access_bg01_sp.jpg), url(../../img/top/v02/top_access_bg02_sp.jpg);
    background-repeat: no-repeat, no-repeat;
    background-size: 100%, 100%;
    background-position: center top, center bottom;
    position: relative;
    color: #fff;
  }

  .top-v02-access-t01 img{
    height: 5.5vw;
  }
  
  .top-v02-access-t02 {
    font-size: 5.5vw;
    line-height: 1.7;
    margin-top: 1.5em;
    color: #c8a52c;
  }
  
  .top-v02-section04-in {
    width: clamp(300px, 90%, 1400px);
    margin-inline: auto;
    position: relative;
    text-align: justify;
  }
  
  .top_access_i01 {
    margin: 40px -6% 0;
  }
  
  .top_access_t01 {
    margin-top: 1em;
  }
  
  .top-v02-access-box01 {
    display: flex;
    gap: 40px;
    margin-top: 0px;
    flex-direction: column-reverse;
  }
  
  .top-v02-access-box01_img {
    width: 90%;
  }
  
  .top-v02-access-box01_txt {
    margin-top: 2em;
    text-align: center;
  }

  .top-v02-access-box01_txt02 {
    padding-right: 4em
  }
  
  .top_access_t02 {
    margin-top: 1em;
    width: 120%;
  }
  
  .top_access_i03_wrap {
    width: 90%;
    margin: 70px 0 0 0;
    margin-inline: auto;
  }
  
  .top_access_i03 {
    width: 100%;
  }
  
  .top_access_t03 {
    margin-top: 1em;
  }
  .top-v02-access-box01_img {
    width: 90%;
    margin: 70px 0 0 0;
    margin-inline: auto;
  }

  .top_access_t02_notes {
    font-size: 12px;
  }
  
  .top-v02-section06 {
    padding: 100px 0 30px;
    background-image: url(../../img/top/v02/top_location_bg_sp.jpg);
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: center top;
  }
  
  .top-v02-location-box01 {
    width: 100%;
    margin-inline: auto;
  }
  
  .top-v02-location-t01 {
    font-family: 'garamond', sans-serif;
    font-size: 36px;
    letter-spacing: .1em;
  }

  .top-v02-location-t01 img {
    height: 5.5vw;
  }

  .top-v02-location-t02 {
    font-size: 5.5vw;
    line-height: 1.7;
    margin-top: 1.5em;
    text-align: center;
    color: #2c5139;
  }
  
  .top-v02-location-box01_txt {
    margin-top: 1.5em;
    text-align: center;
  }
  
  .top_location_img_set {
    /* width: clamp(300px, 100%, 1585px); */
    margin-inline: auto;
    margin-top: 70px;
    position: relative;
    /* display: flex; */
    /* flex-wrap: wrap; */
    z-index: -1;
    text-align: justify;
  }
  
  .top_location_i01 {
    width: 80%;
    margin-top: 0;
    margin-left: 10%;
  }
  
  .top_location_t01 {
    margin-top: 1em;
  }
  
  .top_location_i02 {
    position: relative;
    width: 54.3%;
    margin-top: 30px;
    margin-left: 10%;
  }
  
  .top_location_i03_wrap {
    width: clamp(300px, 80%, 1400px);
    margin-inline: auto;
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 30px;
  }
  
  .top_location_i03 {
    width: 70%;
    margin-left: auto;
    position: relative;
  }
  
  .top_location_i04 {
    width: 100%;
  }

  .top-v02-location-box01_txt02 {
    padding-right: 4em;
  }
  .top-v02-location-box01_txt02 a.btn_more_v03 span {
    display: inline-block;
  }
  .top-v02-location-box01_txt02 a.btn_more_v03::after {
    top: calc(50% - 1.8em);
  }

}