main {
  overflow: visible;
}
/*--------------------------------------
    head-key
--------------------------------------*/
#head-key {
  position: relative;
}
#head-key .key-ttl {
  position: absolute;
  top: 38vw;
  right: 8.8vw;
  white-space: nowrap;
}
#head-key .key-ttl span {
  display: table;
  margin-top: 12vw;
  position: relative;
}
#head-key .key-ttl span::before {
  content: '';
  position: absolute;
  top: calc(100% + 1vw);
  left: 50%;
  width: 1px;
  height: 22vw;
  background: #fff;
}
@media screen and (max-width: 768px) {
  #head-key .key-img {
    height: 210vw;
  }
  #head-key .key-img img {
    object-position: 34%;
  }
}
@media screen and (min-width: 768px) {
  #head-key .key-ttl {
    top: 300px;
    right: calc(50% - 447px);
    line-height: 70px;
    width: 140px;
    height: 323px;
  }
  #head-key .key-ttl span {
    margin-top: 90px;
  }
  #head-key .key-ttl span:before {
    top: calc(100% + 7px);
    left: 51%;
    width: 1px;
    height: 122px;
  }
}

/*--------------------------------------
    sec1
--------------------------------------*/
#sec1 {
  margin-top: -39vw;
  position: relative;
  z-index: 2;
  padding-bottom: 16vw;
}
#sec1 h2 {
  margin-bottom: 8vw;
  text-align: center;
}
@media screen and (min-width: 768px) {
  #sec1 {
    margin-top: -123px;
    padding-bottom: 108px;
  }
  #sec1 h2 {
    line-height: 66px;
    margin-left: 10px;
    margin-bottom: 42px;
  }
  #sec1 .txt {
    text-align: center;
    margin-left: 3px;
  }
}

/*--------------------------------------
    sec2
--------------------------------------*/
#sec2 {
  position: relative;
}
#sec2 .bg {
  position: sticky;
  position: -webkit-sticky;
  top: 0;
  z-index: -1;
  overflow: hidden;
  background: #000;
}
#sec2 .bg .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 2;
}
#sec2 .bg ul {
  height: calc(100vh - 55px);
}
#sec2 .bg ul li {
  height: 50%;
}
#sec2 .bg ul li img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#sec2 .content {
  height: calc(100vh - 55px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
#sec2 .content h2 {
  text-align: center;
  margin-bottom: 8vw;
}
@media screen and (max-width: 768px) {
  #sec2 .bg ul li {
    visibility: visible !important;
  }
}
@media screen and (min-width: 768px) {
  #sec2 .bg ul {
    height: 100vh;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
  }
  #sec2 .bg ul li {
    height: 100%;
    width: 50%;
  }
  #sec2 .content {
    height: 100vh;
  }
  #sec2 .content h2 {
    margin: 9px 0 24px 4px;
  }
  #sec2 .content .txt {
    text-align: center;
    margin-left: 12px;
  }
}

/*--------------------------------------
    sec3
--------------------------------------*/
#sec3 {
  padding: 16vw 0%;
  position: relative;
  z-index: 1;
}
#sec3 .bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
#sec3 .bg::before {
  content: '';
  top: 0;
  left: 0;
  width: 50%;
  height: 110vw;
  background: var(--bg1);
  position: sticky;
  position: -webkit-sticky;
  display: block;
  z-index: 2;
}
#sec3 .bg:after {
  content: '';
  top: 0;
  width: 100%;
  height: 100vh;
  background: url('../img/shared/background.jpg') repeat;
  position: sticky;
  position: -webkit-sticky;
  display: block;
  z-index: 1;
  margin-top: -110vw;
}
#sec3 .content {
  padding-left: 4%;
}
#sec3 .content .ttl {
  color: #fff;
  font-size: 4.2vw;
}
#sec3 .content h2 {
  margin-bottom: 3vw;
}
#sec3 .top {
  overflow: hidden;
  position: sticky;
  position: -webkit-sticky;
  top: -30vw;
}
#sec3 .top .horizontal {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  height: calc(100vh - 55px);
  align-items: center;
  gap: 20px;
  position: relative;
  padding-left: 4%;
}
#sec3 .top .horizontal p {
  min-width: 40vh;
  aspect-ratio: 360 / 450;
  position: relative;
}
#sec3 .top .horizontal p img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#sec3 .top .horizontal p.scale.active .on {
  opacity: 1;
}
#sec3 .top .horizontal p.scale img {
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  max-width: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  clip-path: inset(25vh calc(50vw - 20vh));
}
#sec3 .top .horizontal p.scale img.on {
  transition: all 0.3s ease;
  z-index: 2;
  opacity: 0;
}
#sec3 .main {
  color: #fff;
  padding: 16vw 0;
  position: relative;
  z-index: 2;
  margin-top: 2300px;
}
#sec3 .main .content {
  text-align: center;
  padding-left: 0;
}
#sec3 .main .c-box {
  margin: 8vw 0;
}
@media screen and (min-width: 768px) {
  #sec3 {
    padding: 0;
  }
  #sec3 .bg::before {
    height: 794px;
  }
  #sec3 .bg:after {
    margin-top: -794px;
  }
  #sec3 .content {
    min-width: max-content;
    padding-left: 0;
  }
  #sec3 .content .ttl {
    font-size: 20px;
    letter-spacing: 0.3em;
  }
  #sec3 .content h2 {
    line-height: 57px;
    margin-bottom: 27px;
  }
  #sec3 .content .price {
    margin-left: 6px;
  }
  #sec3 .wrapper {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    height: 100vh;
    align-items: center;
    margin-left: calc(50% - 551px);
  }
  #sec3 .top {
    top: 0;
  }
  #sec3 .top .content {
    padding-bottom: 24px;
  }
  #sec3 .top .horizontal {
    height: auto;
    gap: 51px;
    padding-left: 57px;
  }
  #sec3 .top .horizontal p {
    min-width: 360px;
  }
  #sec3 .top .horizontal p.scale img {
    clip-path: inset(calc(50vh - 225px) calc(50vw - 180px));
  }
  #sec3 .main {
    padding: 102px 0 93px;
  }
  #sec3 .main .ttl {
    margin-left: 6px;
  }
  #sec3 .main h2 {
    margin-left: 10px;
  }
  #sec3 .main .price {
    font-size: 22px;
  }
  #sec3 .main .c-box {
    margin: 45px auto 35px;
    width: 100%;
    max-width: 770px;
  }
  #sec3 .main .c-box .row {
    justify-content: center;
    gap: 86px;
    margin-left: -116px;
  }
  #sec3 .main .txt {
    text-align: center;
  }
}
@media (max-width: 1200px) and (min-width: 768px) {
  #sec3 .wrapper {
    margin-left: 30px;
  }
}
/*--------------------------------------
    sec4
--------------------------------------*/
#sec4 {
  padding-bottom: 16vw;
}
#sec4 .c-row {
  gap: 8vw;
  text-align: center;
}
#sec4 .c-row .price {
  font-size: 4.3vw;
  letter-spacing: 0.2em;
  margin: 2vw 0 8vw;
}
#sec4 .c-row .price small {
  font-size: calc((18 / 22) * 100%);
}
#sec4 .c-row + .c-row {
  margin-top: 12vw;
}
#sec4 .border {
  border-top: 1px solid #6e6b67;
  border-bottom: 1px solid #6e6b67;
  margin-top: 12vw;
  padding: 8vw 0;
}
#sec4 .border .left {
  text-align: center;
  position: relative;
  padding-bottom: 4vw;
  margin-bottom: 7vw;
}
#sec4 .border .left:before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 80%;
  height: 1px;
  transform: translateX(-50%);
  background: #5d5a57;
}
#sec4 .border .left h3 {
  color: #fff;
  font-size: 5vw;
  line-height: 1.5;
}
#sec4 .border .left .price {
  font-size: 4.3vw;
}
#sec4 .border .left .price small {
  font-size: calc((16 / 20) * 100%);
}
#sec4 .border h4 {
  text-align: center;
  margin-bottom: 6vw;
}
#sec4 .border .row {
  margin-left: 8%;
}
@media screen and (min-width: 768px) {
  #sec4 {
    padding: 129px 0 189px;
  }
  #sec4 .wrap {
    max-width: 1300px;
  }
  #sec4 .c-row {
    justify-content: space-between;
    gap: 25px;
    align-items: center;
  }
  #sec4 .c-row .content {
    width: 713px;
    padding-top: 30px;
  }
  #sec4 .c-row .content h2 {
    line-height: 50px;
    margin-left: 3px;
  }
  #sec4 .c-row .content .price {
    font-size: 22px;
    margin: 8px 0 41px 10px;
    letter-spacing: 0.32em;
  }
  #sec4 .c-row .content .c-box {
    padding-bottom: 38px;
  }
  #sec4 .c-row .content .c-box h3 {
    margin-bottom: 31px;
  }
  #sec4 .c-row .content .c-box h3:before {
    left: calc(100% + 37px);
  }
  #sec4 .c-row .content .c-box h3:after {
    right: calc(100% + 37px);
  }
  #sec4 .c-row .content .c-box .row {
    justify-content: start;
    gap: 50px;
    padding-left: 46px;
  }
  #sec4 .c-row .content .c-box .row ul {
    width: 43%;
  }
  #sec4 .c-row .content .c-box .row ul li {
    margin-right: -20px;
  }
  #sec4 .c-row + .c-row {
    margin-top: 80px;
  }
  #sec4 .border {
    margin: 113px auto 0;
    width: 100%;
    max-width: 1062px;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    padding: 38px 0 37px;
  }
  #sec4 .border .left {
    padding-bottom: 0;
    margin-bottom: 0;
    min-width: 334px;
    padding-top: 45px;
  }
  #sec4 .border .left:before {
    left: 100%;
    transform: none;
    width: 1px;
    height: auto;
    top: -10px;
    bottom: -10px;
  }
  #sec4 .border .left h3 {
    font-size: 21px;
    letter-spacing: 0.31em;
    margin-left: 3px;
  }
  #sec4 .border .left .price {
    font-size: 20px;
    margin-top: 14px;
    letter-spacing: 0.3em;
    margin-left: 4px;
  }
  #sec4 .border .right {
    width: 100%;
  }
  #sec4 .border .right h4 {
    font-size: 16px;
    margin-bottom: 12px;
  }
  #sec4 .border .right .row {
    justify-content: center;
    gap: 51px;
    margin-left: -20px;
    letter-spacing: 0.2em;
    font-size: 16px;
  }
}
@media (min-width: 768px) and (max-width: 1200px) {
  #sec4 .c-row .content .c-box .row {
    justify-content: center;
    padding-left: 0;
  }
}
/*--------------------------------------
    sec5
--------------------------------------*/
#sec5 {
  position: relative;
  z-index: 1;
  padding-bottom: 18vw;
  overflow: hidden;
}
#sec5:before {
  content: '';
  position: absolute;
  top: 14vw;
  left: 0;
  width: 100%;
  bottom: 0;
  background: var(--bg1);
  z-index: -1;
}
#sec5 .js-line {
  position: absolute;
  top: 97vw;
  left: 12%;
  bottom: 0;
}
#sec5 .sl-fade {
  line-height: 1;
}
#sec5 .sl-fade .slick-dots {
  position: static;
  text-align: right;
}
#sec5 .row1 {
  gap: 8vw;
}
#sec5 .row1 .sl-fade {
  margin-right: -5%;
  margin-left: 5%;
}
#sec5 .row2 {
  margin-top: 16vw;
  gap: 8vw;
}
#sec5 .row2 .sl-fade {
  margin-left: -5%;
  width: 100%;
}
#sec5 .row2 h3 {
  margin: 0 auto;
  width: 45%;
}
#sec5 .row2 h3 span {
  display: block;
  margin-left: 11%;
}
#sec5 .row2 h3 span.mt2 {
  margin-left: 24%;
}
#sec5 .row2 .txt {
  border-top: 1px solid #6e6b67;
  padding-top: 5vw;
  margin-top: 7vw;
}
#sec5 .photo1 {
  width: 80%;
  margin: 10vw auto 15vw 13%;
}
#sec5 .photo1 h3 {
  position: relative;
  z-index: 2;
  margin-bottom: -10vw;
}
#sec5 .photo1 h3 span {
  display: table;
  margin-left: 10vw;
  position: relative;
}
#sec5 .photo1 h3 span::before {
  content: '';
  position: absolute;
  top: 50%;
  left: calc(100% + 2vw);
  width: 100%;
  height: 1px;
  background: #fff;
}
@media screen and (min-width: 768px) {
  #sec5 {
    padding-bottom: 243px;
  }
  #sec5:before {
    top: 80px;
  }
  #sec5 .wrap {
    max-width: 1180px;
  }
  #sec5 .sl-fade .slick-dots {
    margin: 1px 0px 0 -3px;
  }
  #sec5 .js-line {
    top: 410px;
    left: calc(50% - 550px);
  }
  #sec5 .row1 {
    flex-direction: row-reverse;
    gap: 30px;
    justify-content: space-between;
    align-items: center;
  }
  #sec5 .row1 h2 {
    margin-top: 35px;
    min-width: 322px;
  }
  #sec5 .row1 .sl-fade {
    width: calc(65% + 33px);
    margin: 0 -60px 0 0;
  }
  #sec5 .row2 {
    margin-top: 122px;
    margin-left: -1px;
    justify-content: space-between;
  }
  #sec5 .row2 .sl-fade {
    width: 650px;
  }
  #sec5 .row2 .content {
    margin-right: 108px;
    padding-top: 88px;
  }
  #sec5 .row2 .content h3 {
    width: auto;
    line-height: 60px;
    position: relative;
    left: -2px;
    width: 180px;
    height: 227px;
  }
  #sec5 .row2 .content h3 span {
    margin-left: 0 !important;
    margin-top: 42px;
  }
  #sec5 .row2 .content h3 span.mt2 {
    margin-top: 97px;
  }
  #sec5 .row2 .content .txt {
    padding-top: 55px;
    margin-top: 45px;
    height: 420px;
    box-sizing: border-box;
    width: 266px;
  }
  #sec5 .photo1 {
    width: auto;
    margin: -89px 0 102px calc(50% - 380px);
  }
  #sec5 .photo1 h3 {
    white-space: nowrap;
    width: 120px;
    line-height: 60px;
    height: 260px;
    margin-bottom: -164px;
    position: relative;
    z-index: 2;
  }
  #sec5 .photo1 h3 span {
    margin-top: 83px;
    margin-left: 0;
  }
  #sec5 .photo1 h3 span:before {
    top: calc(100% + 12px);
    width: 1px;
    height: 83px;
    left: 50%;
  }
  #sec5 .photo1 .image {
    margin-left: 59px;
  }
}
@media (max-width: 1200px) and (min-width: 768px) {
  #sec5 .js-line {
    left: 75px;
  }
}
/*--------------------------------------
    sec6
--------------------------------------*/
#sec6 .set1 .sl-fade {
  line-height: 1;
}
#sec6 .set1 .sl-fade .slick-dots {
  bottom: auto;
  position: static;
  width: auto;
  text-align: right;
  margin-right: 3%;
}
#sec6 .set1 .content {
  color: #fff;
  padding: 10vw 4% 20vw;
  text-align: center;
}
#sec6 .set1 .content .txt {
  margin: 8vw 0;
}
@media screen and (min-width: 768px) {
  #sec6 {
    padding-bottom: 50px;
  }
  #sec6 .set1 {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    margin-bottom: 120px;
    align-items: center;
  }
  #sec6 .set1 .sl-fade {
    width: calc(52% + 19px);
  }
  #sec6 .set1 .sl-fade .slick-dots {
    top: auto;
    margin-right: 9px;
    margin-top: 10px;
  }
  #sec6 .set1 .sl-fade img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 750px;
  }
  #sec6 .set1 .content {
    padding: 3px 20px 0;
    width: calc(48% - 19px);
  }
  #sec6 .set1 .content h2 {
    line-height: 66px;
    margin-left: 2px;
  }
  #sec6 .set1 .content .txt {
    margin: 42px auto 74px;
    width: 100%;
    max-width: 455px;
  }
  #sec6 .set1 .content .btn-cus {
    position: relative;
    left: -4px;
  }
}

@media screen and (min-width: 768px) {
  #popup2 .map {
    margin-top: 40px;
  }
}

.li_hght{
  line-height: 1.5;
}
.pad_menutxt{
  padding: 0 0 20px 0;
  margin: -10px 0 0 0;
}
.pad_bm{
  padding: 0 0 16px 0;
}
@media screen and (min-width: 768px) {
.li_hght{
  line-height: 1.5;
}
.pad_menutxt{
  padding: 0 0 20px 0;
  margin: -10px 0 0 0;
}
.pad_bm{
  padding: 0 0 16px 0;
}
}