/* スマホ時ナビ調整 */
@media screen and (max-width: 767px) {
  .has-header .container {
      padding-top: 0;
  }
}

/* MVアニメーション時のスクロール動作 */
html.ls-is-lock,
body.ls-is-lock {
  overflow: hidden;
  height: 100%;
}
body.ls-is-lock {
  position: fixed;
  width: 100%;
}
.nav-fix.ls-is-none.is-show{
  transform: translate(-50%, 100%);
  opacity: 0;
}
.header.ls-is-none {
    transform: translateY(-100%);
    opacity: 0;
}

/* MV */
.mv-container {
  background: #e6e6e6;
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 100vh;
  transition: .6s;
}
.mv-container::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../img/lifescene/map-mv-bg.webp");
  background-size: cover;
  background-position: center;
  opacity: 0;
  pointer-events: none;
  animation: bgFadeIn 2.5s ease forwards;
  animation-delay: 1s; /* ← ページ読み込み後1秒 */
  transition: .6s;
}
@keyframes bgFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.mv-map {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
  width: 100%;
  height: 100%;
}
.mv-map-img {
  position: absolute;
  max-width: 960px;
  width: 100%;
  /*width: 46%;*/
  /*max-width: 100%;*/
  opacity: 0;
  transform: scale(1);
  backface-visibility: hidden;
  /*bottom: 0;*/
}
.mv-map-img01 {
  opacity: 1;
  animation: mvFadeOut 2.5s ease forwards;
  animation-delay: 1s;
  transform-origin: 75% 25%;
}
@keyframes mvFadeOut {
  from {
    opacity: 1;
    transform: scale(1);
  }
  to {
    opacity: 0;
    transform: scale(1.5);
  }
}
.mv-map-img02 {
  animation: mvFadeIn 2.5s ease forwards;
  animation-delay: 1s;
  transform-origin: 75% 25%;
}
@keyframes mvFadeIn {
  from {
    opacity: 0;
    transform: scale(1);
  }
  to {
    opacity: 1;
    transform: scale(1.5);
  }
}
@media screen and (max-width: 1730px) {
  .mv-map-img {
    max-width: 820px;
  }
}
@media screen and (max-width: 767px) {
  .mv-map-img {
    margin-left: -50%;
    width: 190%;
  }
  .mv-map-img01 {
    transform-origin: center center;
  }
  @keyframes mvFadeOut {
    from {
      opacity: 1;
      transform: scale(1);
    }
    to {
      opacity: 0;
      transform: scale(1.3);
    }
  }
  .mv-map-img02 {
    transform-origin: center center;
  }
  @keyframes mvFadeIn {
    from {
      opacity: 0;
      transform: scale(1);
    }
    to {
      opacity: 1;
      transform: scale(1.3);
    }
  }
}
@media screen and (max-width: 375px) {
  .mv-map-img {
    margin-left: -38%;
    width: 153%;
  }
}


.ls-section{
  background: #404f70;
}
.general-section.ls-section .inner {
  margin: 0 auto;
  padding: 80px 0;
  width: 100%;
  max-width: none;
}
@media screen and (max-width: 767px) {
  .general-section.ls-section .inner {
    padding: 60px 0;
  }
}
.ls-note-wrap{
  padding: 60px 0 0;
  display: flex;
  gap: 6vw;
}
@media screen and (max-width: 767px) {
  .ls-note-wrap{
    margin: 0 auto;
    padding: 10px 0 0;
    flex-direction: column;
    gap: 10vw 0;
    width: 90%;
  }
}
.ls-note-ttl{
  font-family: 'cofo-raffine', sans-serif;
  color: #fff;
  line-height: .8;
}
.ls-note-ttl .ls-ttl-border {
  position: relative;
  font-size: 13vw;
  display: inline-block;
  line-height: 0.8;
  font-family: 'cofo-raffine', sans-serif;
}
@media screen and (max-width: 767px) {
  .ls-note-ttl .ls-ttl-border {
    font-size: 17vw;
  }
}
.ls-note-ttl .ls-ttl-border:before {
    position: absolute;
    content: '';
    width: 100%;
    height: 1px;
    background: #fff;
    left: 0;
    bottom: 27%;
    transition: 0.8s ease;
}
.ls-note-ttl .ls-ttl-border:after {
    content: '•';
    position: absolute;
    right: -2px;
    bottom: 19%;
    font-size: 1.9vw;
    color: #fff;
    transition: 0.8s ease;
}
@media screen and (max-width: 767px) {
  .ls-note-ttl .ls-ttl-border:after {
    bottom: 7%;
    font-size: 20px;
  }
}
.ls-note-ttl .ls-ttl-border.animate::after {
    transform: translate(0px, 0px);
    opacity: 1;
}
.ls-note-text{
  color: #fff;
  writing-mode: vertical-rl;
  text-orientation: upright;
  font-size: 1vw;
  line-height: 2.2;
  letter-spacing: .4em;
}
@media screen and (max-width: 767px) {
  .ls-note-text{
    padding-right: 12%;
    font-size: 2.9vw;
  }
}
/* 自動スライダーブロック */
.general-section.ls-slide-section .inner {
  margin: 0 auto;
  padding: 80px 0;
  width: 100%;
  max-width: none;
}
@media screen and (max-width: 767px) {
  .general-section.ls-slide-section .inner {
    padding: 20px 0 80px;
  }
}
.ls-slider-container{
  margin-top: 150px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .ls-slider-container{
    margin-top: 80px;
  }
}
.ls-slider-wrapper {
  display: flex;
  overflow: hidden;
}

.ls-slider {
  animation: scroll-left 60s infinite linear .5s both;
  display: flex;
}
.ls-slider-right {
  animation: scroll-left 60s infinite linear .5s both;
  display: flex;
  animation-direction: reverse;
}
.slide {
  width: calc(100vw / 0.5); /* スライドの大きさ */
}
@media screen and (max-width: 767px) {
  .slide {
    width: calc(100vw / 0.3); /* スライドの大きさ */
  }
}
.slide img {
  display: block;
  width: 100%;
}
@keyframes scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

.ls-slide-ttl{
  font-size: 12vw;
  display: inline-block;
  line-height: 0.36;
  font-family: 'cofo-raffine', sans-serif;
  color: #fff;
  position: absolute;
  bottom: 0;
  text-shadow: 0 -1px 2px rgba(42, 42, 42, 0.1);
}
.ls-slider-container01 .ls-slide-ttl{
  left: 0;
}
.ls-slider-container02 .ls-slide-ttl{
  left: 10%;
}
.ls-slider-container03 .ls-slide-ttl{
  left: auto;
  right: 0;
}
.ls-slider-container04 .ls-slide-ttl{
  left: 16%;
}
.ls-slider-container05 .ls-slide-ttl{
  left: 46%;
}
.ls-slider-container06 .ls-slide-ttl{
  left: 0;
}
@media screen and (max-width: 767px) {
  .ls-slide-ttl{
    font-size: 16vw;
  }
}
.ls-slide-copy{
  position: absolute;
  top: 0;
  background: #fff;
  height: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
@media screen and (max-width: 767px) {
  .ls-slide-copy {
    width: 16%;
    align-items: center;
    max-width: 46px;
  }
}
.ls-slide-copy-text{
  padding: 0 3.2vw;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-size: 1.1vw;
  letter-spacing: .3em;
}
@media screen and (max-width: 767px) {
  .ls-slide-copy-text{
    padding: 0;
  }
}
.ls-slider-container01 .ls-slide-copy{
  right: 24%;
}
.ls-slider-container02 .ls-slide-copy{
  right: 60%;
}
.ls-slider-container03 .ls-slide-copy{
  right: 50%;
}
.ls-slider-container04 .ls-slide-copy{
  right: 34%;
}
.ls-slider-container05 .ls-slide-copy{
  right: 76%;
}
.ls-slider-container06 .ls-slide-copy{
  right: 20%;
}
@media screen and (max-width: 767px) {
  .ls-slide-copy-text{
    padding: 0 5vw;
    font-size: 2.6vw;
  }
  .ls-slider-container01 .ls-slide-copy{
    right: 16%;
  }
  .ls-slider-container02 .ls-slide-copy{
    right: 50%;
  }
  .ls-slider-container03 .ls-slide-copy{
    right: 42%;
  }
  .ls-slider-container04 .ls-slide-copy{
    right: 14%;
  }
  .ls-slider-container05 .ls-slide-copy{
    right: 72%;
  }
  .ls-slider-container06 .ls-slide-copy{
    right: 14%;
  }
}
.ls-slide-caption{
  position: absolute;
  bottom: -20px;
  right: 10px;
  font-size: 10px;
}

/* time is luxuryブロック */
.til-bg-wrap{
  position: relative;
  height: 100vh;
  transition: .6s;
}
.til-bg{
  position: absolute;
  width: 100%;
  height: 100%;
}
.til-is-none{
  opacity: 0;
}
.til-bg-01{
  opacity: 1;
  transition: 1s;
}
.til-bg-02{
  transition: 1s;
}
.til-bg-img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .6s;
}
.til-text01{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  width: 100%;
  max-width: 50px;
  opacity: 0;
  transition: .6s;
  z-index: 1;
}
.til-text02{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  width: 100%;
  max-width: 500px;
  opacity: 0;
  transition: .6s;
  z-index: 1;
}
.til-bg-02-img{
  position: absolute;
  top: 0;
  left: 0;
}
.til-is-none{
  opacity: 0;
}
.til-is-show{
  opacity: 1;
}
@media screen and (max-width: 767px) {
  .til-bg-wrap{
    display: flex;
    align-items: center;
  }
  .til-bg{
    height: auto;
  }
  .til-bg-img{
    transition: none;
    height: auto;
  }
  .til-bg-01{
    transition: none;
  }
  .til-bg-02{
    transition: none;
  }
  .til-text01{
    max-width: 40px;
  }
  .til-bg-02-img{
    position: static;
  }
}

/* SPOTブロック */
.ls-spot-section{
  margin-top: -1px;
  padding-top: 4%;
  position: relative;
  background: #404f70;
}
.ls-spot-text{
  position: absolute;
  top: 8%;
  left: 8%;
}
.ls-spot-text-ttl{
  font-size: 10vw;
  line-height: .8;
  font-family: 'cofo-raffine', sans-serif;
  color: #fff;
}
.ls-spot-text-note{
  color: #fff;
  font-size: 1vw;
  line-height: 2.2;
  letter-spacing: .4em;
}
@media screen and (max-width: 767px) {
  .ls-spot-section{
    padding-top: 18%;
  }
  .ls-spot-text{
    position: inherit;
  }
  .ls-spot-text-ttl {
    font-size: 17vw;
  }
  .ls-spot-text-note {
    margin-top: 14px;
    font-size: 2.9vw;
  }
  .ls-spot-map{
    margin-top: 24px;
  }
}