@charset "UTF-8";
/* Scss Document */
.bx-wrapper {
  box-shadow: none;
  border: none;
  background: none;
}
.bx-wrapper .bx-viewport {
  overflow: visible !important;
}

.content {
  padding: 12rem 0;
  position: relative;
  z-index: 0;
}
@media only screen and (max-width: 640px) {
  .content {
    padding: calc(120 / 760 * 100vw) 0 calc(60 / 760 * 100vw);
  }
}
.content-wrapper {
  z-index: 1;
  background: #fff;
  position: relative;
}

.visual {
  position: relative;
  height: 200svh;
  z-index: 0;
}
@media only screen and (max-width: 640px) {
  .visual {
    height: 200vh;
  }
}
.visual .visual-logo {
  position: relative;
  width: 100%;
  opacity: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
.visual .visual-logo-img {
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 7rem;
  position: relative;
}
@media only screen and (max-width: 640px) {
  .visual .visual-logo-img {
    width: calc(455 / 760 * 100vw);
    height: calc(60 / 760 * 100vw);
  }
}
.visual .visual-logo-img .logo-plus {
  position: absolute;
  top: 0;
  left: -2.54rem;
  position: relative;
  height: 54.2857142857%;
  animation: plus 5s ease;
  line-height: 0;
}
@media only screen and (max-width: 640px) {
  .visual .visual-logo-img .logo-plus {
    left: -2rem;
  }
}
.visual .visual-logo-img .logo-plus img {
  width: auto;
  height: 100%;
}
.visual .visual-logo-img .logo-standard {
  overflow: hidden;
  animation: standard 5s ease;
  line-height: 0;
}
.visual .visual-logo-img .logo-q {
  opacity: 0;
  transition: all 1s ease;
}
.visual .visual-logo-img img {
  position: relative;
  max-width: initial;
  width: auto !important;
  height: 7rem;
}
@media only screen and (max-width: 640px) {
  .visual .visual-logo-img img {
    height: calc(60 / 760 * 100vw);
  }
}
@keyframes plus {
  0% {
    filter: blur(2em);
    opacity: 0;
  }
  33% {
    filter: blur(2em);
    opacity: 0;
  }
  67% {
    filter: blur(2em);
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes standard {
  0% {
    filter: blur(2em);
    width: 5rem;
  }
  33% {
    filter: blur(0);
    width: 5rem;
  }
  67% {
    margin-left: 0;
    width: 44.455rem;
  }
  100% {
    margin-left: 0;
    width: 44.455rem;
  }
}
@media only screen and (max-width: 640px) {
  @keyframes standard {
    0% {
      opacity: 0;
      width: calc(40 / 760 * 100vw);
    }
    33% {
      opacity: 1;
      width: calc(40 / 760 * 100vw);
    }
    67% {
      margin-left: 0;
      width: calc(380 / 760 * 100vw);
    }
    100% {
      margin-left: 0;
      width: calc(380 / 760 * 100vw);
    }
  }
}
.visual-concept {
  position: sticky;
  margin: 0 auto;
  right: 0;
  left: 0;
  top: 50svh;
  transform: translateY(-20%);
  z-index: 2;
  transition: all 1s ease;
  overflow: visible;
}
@media only screen and (max-width: 1200px) {
  .visual-concept {
    top: 50vh;
  }
}
@media only screen and (max-width: 640px) {
  .visual-concept {
    padding: 0;
    width: 100%;
  }
}
.visual-concept .btn-view {
  opacity: 0;
}

.topVisual_video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.topVisual_video-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  height: 100svh;
  width: 100%;
  z-index: 0;
  opacity: 0;
  filter: brightness(3);
  transition: all 5s ease;
}
@media only screen and (max-width: 1200px) {
  .topVisual_video-wrapper {
    height: 100vh;
  }
}
@media only screen and (max-width: 640px) {
  .topVisual_video-wrapper {
    width: 100%;
    height: 100svh;
    object-fit: cover;
  }
}
.topVisual_video-wrapper:before {
  content: "";
  background: rgba(255, 255, 255, 0);
  backdrop-filter: blur(0);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100svh;
  transition: all 3s ease;
}
@media only screen and (max-width: 1200px) {
  .topVisual_video-wrapper:before {
    height: 100vh;
  }
}

.video-container {
  position: relative;
  width: 100%;
  height: 100vh;
  background-color: black;
  /* 背景を黒にして白フラッシュを目立たなくする */
  overflow: hidden;
  margin: 0;
  padding: 0;
  z-index: 0;
}

.video-container video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  /* 通常は中央 */
  transition: opacity 0.8s ease;
  /* クロスフェード用 */
  opacity: 0;
  /* 初期は見えない状態 */
}

/* 表示面にしたい動画だけ active クラスを付与する */
.video-container video.active {
  opacity: 1;
}

/* スマホ時のみ、"最後の動画" なら左右をずらす */
.video-container video.lastVideo {
  filter: sepia(40%);
}
@media only screen and (max-width: 640px) {
  .video-container video.lastVideo {
    object-position: 65% 50%;
  }
}

.-start .topVisual_video-wrapper {
  opacity: 1;
  filter: brightness(1);
  transition-delay: 5s;
}

.whatis {
  position: relative;
  height: 64rem;
  background: #F6F6F6;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
@media only screen and (max-width: 640px) {
  .whatis {
    height: auto;
  }
}
.whatis:after {
  position: absolute;
  bottom: 0;
  right: 0;
  content: "";
  width: calc(859 / 1920 * 100vw);
  height: calc(223 / 1920 * 100vw);
  background: url("../img/index/whatis_bg.png") bottom right no-repeat;
  background-size: contain;
}
@media only screen and (max-width: 1200px) {
  .whatis:after {
    width: 70rem;
    height: 19rem;
  }
}
@media only screen and (max-width: 640px) {
  .whatis:after {
    width: calc(400 / 760 * 100vw);
    height: calc(110 / 760 * 100vw);
  }
}
.whatis-ttl {
  margin-bottom: 1em;
  font-family: "Akshar", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
  font-size: 5rem;
  font-weight: 400;
  overflow: hidden;
  line-height: 1;
  opacity: 0;
  text-align: center;
  transition: all 1s ease;
}
@media only screen and (max-width: 640px) {
  .whatis-ttl {
    font-size: calc(55 / 760 * 100vw);
  }
}
.whatis-logo {
  margin: 0 auto 5rem;
  display: flex;
  justify-content: center;
}
@media only screen and (max-width: 640px) {
  .whatis-logo {
    margin-bottom: calc(60 / 760 * 100vw);
  }
}
.whatis-logo img {
  display: inline-block;
  max-width: initial;
  width: auto !important;
  height: 7.2rem;
}
@media only screen and (max-width: 640px) {
  .whatis-logo img {
    height: calc(75 / 760 * 100vw);
  }
}
@media only screen and (max-width: 640px) {
  .whatis-logo {
    width: 80%;
  }
}
.whatis-logo.eachImageAnime2 img {
  display: inline-block;
  position: relative;
  opacity: 0;
}
.whatis-logo.eachImageAnime2.appearimage img {
  animation: img_whats_on 1.5s cubic-bezier(0.06, 0.7, 0.58, 0.98) forwards;
}
.whatis-text {
  margin-top: 6rem;
  margin-bottom: 7rem;
  font-size: 1.8rem;
  line-height: 2;
  text-align: center;
  opacity: 0;
  font-weight: 400;
  transition: all 1s ease;
  filter: blur(1.5rem);
}
@media only screen and (max-width: 640px) {
  .whatis-text {
    margin-bottom: calc(70 / 760 * 100vw);
    font-size: calc(25 / 760 * 100vw);
  }
}
.whatis-img01 {
  opacity: 0;
  position: absolute;
  top: calc(-80 / 1920 * 100vw);
  left: calc(80 / 1920 * 100vw);
  width: calc(320 / 1920 * 100vw);
  transition: all 1s ease;
  overflow: visible;
  filter: blur(1.5rem);
}
@media only screen and (max-width: 640px) {
  .whatis-img01 {
    top: auto;
    bottom: 0;
    left: calc(60 / 760 * 100vw);
    bottom: calc(-460 / 760 * 100vw);
    width: calc(280 / 760 * 100vw);
  }
}
.whatis-img02 {
  position: absolute;
  top: calc(100 / 1920 * 100vw);
  right: calc(60 / 1920 * 100vw);
  width: calc(320 / 1920 * 100vw);
  transition: all 1s ease;
  overflow: visible;
  filter: blur(1.5rem);
}
@media only screen and (max-width: 640px) {
  .whatis-img02 {
    top: auto;
    bottom: calc(-520 / 760 * 100vw);
    right: calc(60 / 760 * 100vw);
    width: calc(280 / 760 * 100vw);
  }
}

.-scene02 .topVisual_video-wrapper:before {
  content: "";
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(15px);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100svh;
  z-index: 1;
  height: 100vh;
}
.-scene02 .visual-concept {
  transform: translateY(-60%);
}
@media only screen and (max-width: 640px) {
  .-scene02 .visual-concept {
    transform: translateY(-100%);
  }
}
.-scene02 .visual.visual-logo-img img {
  height: 7rem;
}
.-scene02 .visual .logo-q {
  opacity: 1 !important;
}
.-scene02 .whatis-ttl {
  opacity: 1;
}
.-scene02 .whatis-text {
  filter: blur(0);
  opacity: 1;
}
.-scene02 .whatis-img01, .-scene02 .whatis-img02 {
  opacity: 1;
  filter: blur(0);
}
.-scene02 .visual-concept .btn-view {
  opacity: 1;
}

@keyframes img_whats_on {
  0% {
    top: 1.5em;
    opacity: 0;
  }
  100% {
    top: 0;
    opacity: 1;
  }
}
.index-title {
  margin-bottom: 8rem;
  text-align: center;
}
@media only screen and (max-width: 640px) {
  .index-title {
    margin-bottom: calc(80 / 760 * 100vw);
    line-height: 1.2;
  }
}
.index-title .jp {
  font-size: 1.8rem;
  font-weight: 400;
  letter-spacing: 0.2em;
}
@media only screen and (max-width: 640px) {
  .index-title .jp {
    font-size: calc(25 / 760 * 100vw);
    letter-spacing: 0;
  }
}
.index-title .en {
  margin-bottom: 0.25em;
  font-family: "Akshar", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
  font-size: 5rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.05em;
  overflow: hidden;
}
@media only screen and (max-width: 640px) {
  .index-title .en {
    margin-bottom: 0.25em;
    font-size: calc(70 / 760 * 100vw);
  }
}
.index-title-text {
  font-size: 1.6rem;
  line-height: 2.6;
}
@media only screen and (max-width: 640px) {
  .index-title-text {
    font-size: calc(26 / 760 * 100vw);
    line-height: 1.6;
  }
}

.information {
  background: #fff;
}
.information .information-list {
  margin-bottom: 6rem;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
@media only screen and (max-width: 640px) {
  .information .information-list {
    margin-bottom: calc(60 / 760 * 100vw);
  }
}
.information .information-list li {
  margin: 0 1.5em;
  width: 26rem;
  line-height: 1.4;
}
@media only screen and (max-width: 640px) {
  .information .information-list li {
    margin: 0;
    margin-top: 2em;
    padding: 0.75em;
    width: 48%;
  }
}
@media only screen and (max-width: 640px) {
  .information .information-list li:nth-child(-n+2) {
    margin-top: 0;
  }
}
.information .information-list li figure {
  margin-bottom: 1em;
  width: 100%;
}
.information .information-list li time {
  margin-bottom: 1em;
  display: block;
}

.works {
  padding-top: 0;
  background: linear-gradient(90deg, #FFF 0%, #FFF 30%, #EDE8E2 30%, #EDE8E2 100%);
}
@media only screen and (max-width: 640px) {
  .works {
    background: linear-gradient(90deg, #FFF 0%, #FFF 20%, #EDE8E2 20%, #EDE8E2 100%);
    padding-top: calc(60 / 760 * 100vw);
  }
}
.works .index-title {
  padding-left: 3rem;
  text-align: left;
}
@media only screen and (max-width: 640px) {
  .works .index-title {
    padding-left: 0;
  }
}
.works .slick-slider {
  margin-bottom: 0rem;
  padding: 0 0 4rem;
}
@media only screen and (max-width: 640px) {
  .works .slick-slider {
    margin-bottom: calc(0 / 760 * 100vw);
    padding-bottom: calc(0 / 760 * 100vw);
  }
}
.works .slick-track {
  display: flex;
}
.works .slick-dots li {
  width: 4rem;
  height: 0.5rem;
  margin: 0 0.5rem;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  border-radius: 0;
}
@media only screen and (max-width: 640px) {
  .works .slick-dots li {
    width: calc(74 / 760 * 100vw);
    height: calc(9 / 760 * 100vw);
    margin: calc(3 / 760 * 100vw);
  }
}
.works .slick-dots li button:before {
  content: "";
  width: 4rem;
  height: 0.5rem;
  background: #000;
  margin: 0 0.5rem;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  border-radius: 0;
  opacity: 1;
}
@media only screen and (max-width: 640px) {
  .works .slick-dots li button:before {
    width: calc(74 / 760 * 100vw);
    height: calc(9 / 760 * 100vw);
    margin: calc(3 / 760 * 100vw);
  }
}
.works .slick-dots li.slick-active button:before {
  content: "";
  width: 4rem;
  height: 0.5rem;
  background: #BFAB9B;
}
@media only screen and (max-width: 640px) {
  .works .slick-dots li.slick-active button:before {
    width: calc(74 / 760 * 100vw);
    height: calc(9 / 760 * 100vw);
    margin: calc(3 / 760 * 100vw);
  }
}
.works .slick-slide {
  height: auto !important;
}
.works .slick-prev, .works .slick-next {
  top: 35%;
  transform: translate(0, 0);
  width: 4rem;
  height: 4rem;
  z-index: 11;
}
@media only screen and (max-width: 640px) {
  .works .slick-prev, .works .slick-next {
    bottom: auto;
    transform: translateY(-50%);
    width: calc(40 / 760 * 100vw);
    height: calc(40 / 760 * 100vw);
  }
}
.works .slick-prev:before, .works .slick-next:before {
  content: none;
}
.works .slick-prev {
  right: 5rem;
  left: auto;
  background: url("../img/index/works_slide_prev.png") top center no-repeat;
  background-size: contain;
}
@media only screen and (max-width: 640px) {
  .works .slick-prev {
    right: calc(30 / 760 * 100vw);
  }
}
.works .slick-next {
  left: 5rem;
  background: url("../img/index/works_slide_next.png") top center no-repeat;
  background-size: contain;
}
@media only screen and (max-width: 640px) {
  .works .slick-next {
    left: calc(30 / 760 * 100vw);
  }
}
.works .works_slide_item {
  max-width: 50rem !important;
  margin: 0 2.5rem;
}
@media only screen and (max-width: 640px) {
  .works .works_slide_item {
    max-width: calc(500 / 760 * 100vw) !important;
    margin: 0 calc(15 / 760 * 100vw);
  }
}
.works .works_slide_item:nth-child(odd) {
  margin-top: 5rem;
}
@media only screen and (max-width: 640px) {
  .works .works_slide_item:nth-child(odd) {
    margin-top: calc(50 / 760 * 100vw);
  }
}
.works .works_slide_item figure {
  text-align: center;
}
.works .works_slide_item img {
  margin: 0 auto;
  width: 100%;
  max-width: initial;
  max-height: 47rem !important;
  object-fit: contain;
}
@media only screen and (max-width: 640px) {
  .works .works_slide_item img {
    max-height: calc(450 / 760 * 100vw) !important;
  }
}
.works .works_slide_ttl {
  margin-top: 2rem;
  font-weight: normal;
  line-height: 1.2;
  text-align: center;
}
@media only screen and (max-width: 640px) {
  .works .works_slide_ttl {
    margin-top: calc(40 / 760 * 100vw);
  }
}
.works .works_slide_ttl .num {
  margin-bottom: 1rem;
  font-size: 1.6rem;
  font-family: "Akshar", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
}
@media only screen and (max-width: 640px) {
  .works .works_slide_ttl .num {
    margin-bottom: calc(15 / 760 * 100vw);
    font-size: calc(24 / 760 * 100vw);
  }
}
.works .works_slide_ttl .name {
  font-size: 1.6rem;
}
@media only screen and (max-width: 640px) {
  .works .works_slide_ttl .name {
    font-size: calc(24 / 760 * 100vw);
  }
}

.interview {
  overflow-x: hidden;
  background: #fff;
}
.interview .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 100%;
}
@media only screen and (max-width: 640px) {
  .interview .inner {
    display: block;
    padding: 0;
  }
}
.interview .index-title .en {
  font-size: calc(50 / 1920 * 100vw);
}
@media only screen and (max-width: 1200px) {
  .interview .index-title .en {
    font-size: 5rem;
  }
}
@media only screen and (max-width: 640px) {
  .interview .index-title .en {
    font-size: calc(70 / 760 * 100vw);
  }
}
.interview .index-title .jp {
  font-size: calc(20 / 1920 * 100vw);
}
@media only screen and (max-width: 1200px) {
  .interview .index-title .jp {
    font-size: 1.6rem;
  }
}
@media only screen and (max-width: 640px) {
  .interview .index-title .jp {
    font-size: calc(25 / 760 * 100vw);
  }
}
.interview .index-title-text {
  margin-bottom: calc(40 / 1920 * 100vw);
}
@media only screen and (max-width: 1200px) {
  .interview .index-title-text {
    margin-bottom: 4rem;
    font-size: 1.6rem;
  }
}
@media only screen and (max-width: 640px) {
  .interview .index-title-text {
    margin-bottom: calc(30 / 760 * 100vw);
    font-size: calc(26 / 760 * 100vw);
    text-align: center;
  }
}
.interview .slick-list {
  overflow: visible !important;
}
@media only screen and (max-width: 640px) {
  .interview .slick-list {
    width: calc(700 / 760 * 100vw);
    padding: 0 calc(30 / 760 * 100vw) !important;
  }
}
.interview .slick-slide {
  transition: all 2s ease;
  position: relative;
  z-index: 0;
  display: flex;
  align-items: center;
  transform: scale(0.8);
  transition: transform 2s;
  width: calc(1000 / 1920 * 100vw);
  /*画像900+タイトル100*/
  height: calc(610 / 1920 * 100vw);
  margin-right: calc(-180 / 1920 * 100vw);
}
@media only screen and (max-width: 1200px) {
  .interview .slick-slide {
    width: 100rem;
    height: 61rem;
    margin: 0;
  }
}
@media only screen and (max-width: 640px) {
  .interview .slick-slide {
    width: calc(700 / 760 * 100vw) !important;
    height: calc(475 / 760 * 100vw);
    margin: 0 calc(-80 / 760 * 100vw);
  }
}
.interview .slick-slide.slick-current, .interview .slick-slide.is-active-next {
  transform: scale(1);
  z-index: 1;
}
.interview .slick-slide a {
  display: block;
  overflow: visible !important;
}
.interview .slick-slide a:hover {
  opacity: 1;
}
.interview .slick-prev, .interview .slick-next {
  top: auto;
  bottom: 0;
  transform: translate(0, 0);
  width: calc(41 / 1920 * 100vw);
  height: calc(9 / 1920 * 100vw);
  z-index: 11;
}
@media only screen and (max-width: 1200px) {
  .interview .slick-prev, .interview .slick-next {
    width: 4.1rem;
    height: 0.9rem;
  }
}
@media only screen and (max-width: 640px) {
  .interview .slick-prev, .interview .slick-next {
    width: calc(41 / 760 * 100vw);
    height: calc(9 / 760 * 100vw);
  }
}
.interview .slick-prev:before, .interview .slick-next:before {
  content: none;
}
.interview .slick-prev {
  left: calc(150 / 1920 * 100vw);
  background: url("../img/index/slide_prev.png") top center no-repeat;
  background-size: contain;
}
@media only screen and (max-width: 1200px) {
  .interview .slick-prev {
    left: 15rem;
  }
}
@media only screen and (max-width: 640px) {
  .interview .slick-prev {
    left: calc(90 / 760 * 100vw);
  }
}
.interview .slick-next {
  right: auto;
  left: calc(100 / 1920 * 100vw);
  background: url("../img/index/slide_next.png") top center no-repeat;
  background-size: contain;
}
@media only screen and (max-width: 1200px) {
  .interview .slick-next {
    left: 10rem;
  }
}
@media only screen and (max-width: 640px) {
  .interview .slick-next {
    left: calc(30 / 760 * 100vw);
  }
}
.interview .interview_ttl_wrap {
  width: calc(460 / 1920 * 100vw);
  padding: calc(90 / 1920 * 100vw) calc(80 / 1920 * 100vw);
}
@media only screen and (max-width: 1200px) {
  .interview .interview_ttl_wrap {
    width: 30rem;
    padding: 0 3rem;
  }
}
@media only screen and (max-width: 640px) {
  .interview .interview_ttl_wrap {
    width: 100%;
    margin-bottom: calc(60 / 760 * 100vw);
    padding: 0 calc(50 / 760 * 100vw);
  }
}
.interview .interview_slide {
  overflow: hidden;
  padding-bottom: calc(70 / 1920 * 100vw);
}
@media only screen and (max-width: 1200px) {
  .interview .interview_slide {
    padding-bottom: 7rem;
  }
}
@media only screen and (max-width: 640px) {
  .interview .interview_slide {
    padding-bottom: calc(60 / 760 * 100vw);
  }
}
.interview .interview_slide_wrap {
  width: calc(1400 / 1920 * 100vw);
  margin-left: auto;
}
@media only screen and (max-width: 1200px) {
  .interview .interview_slide_wrap {
    width: 90rem;
  }
}
@media only screen and (max-width: 640px) {
  .interview .interview_slide_wrap {
    width: 100%;
  }
}
.interview .interview_slide_item {
  position: relative;
  background: rgba(255, 255, 255, 0);
  transition: all 2s ease;
}
.interview .interview_slide_item img {
  padding-left: calc(100 / 1920 * 100vw);
  -webkit-filter: blur(0.25em);
  filter: blur(0.25em);
  /*position: relative;*/
  z-index: 0;
  transition: all 2s ease;
}
.interview .interview_slide_item .interview_slide_ttl {
  opacity: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  left: calc(100 / 1920 * 100vw);
  transform: translate(-50%, -50%);
  width: calc(200 / 1920 * 100vw);
  height: calc(200 / 1920 * 100vw);
  background: #BFAB9B;
  color: #FFF;
  font-weight: normal;
  line-height: 1.2;
  text-align: center;
  z-index: 11;
  transition: all 2s ease;
}
@media only screen and (max-width: 1200px) {
  .interview .interview_slide_item .interview_slide_ttl {
    left: 10rem;
    width: 20rem;
    height: 20rem;
  }
}
@media only screen and (max-width: 640px) {
  .interview .interview_slide_item .interview_slide_ttl {
    top: auto;
    bottom: 0;
    left: 0;
    transform: translate(0, 0);
    width: calc(200 / 760 * 100vw);
    height: calc(200 / 760 * 100vw);
  }
}
.interview .interview_slide_item .interview_slide_ttl .num {
  margin-bottom: calc(10 / 1920 * 100vw);
  font-size: calc(50 / 1920 * 100vw);
  font-family: "Akshar", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
}
@media only screen and (max-width: 1200px) {
  .interview .interview_slide_item .interview_slide_ttl .num {
    margin-bottom: 1rem;
    font-size: 5rem;
  }
}
@media only screen and (max-width: 640px) {
  .interview .interview_slide_item .interview_slide_ttl .num {
    margin-bottom: calc(15 / 760 * 100vw);
    font-size: calc(60 / 760 * 100vw);
  }
}
.interview .interview_slide_item .interview_slide_ttl .name {
  position: relative;
  margin-bottom: 0.7em;
  padding-bottom: 0.7em;
  font-size: calc(16 / 1920 * 100vw);
}
@media only screen and (max-width: 1200px) {
  .interview .interview_slide_item .interview_slide_ttl .name {
    font-size: 1.6rem;
  }
}
@media only screen and (max-width: 640px) {
  .interview .interview_slide_item .interview_slide_ttl .name {
    font-size: calc(20 / 760 * 100vw);
  }
}
.interview .interview_slide_item .interview_slide_ttl .name:after {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  content: "";
  width: calc(74 / 1920 * 100vw);
  height: 1px;
  background: #FFF;
}
@media only screen and (max-width: 1200px) {
  .interview .interview_slide_item .interview_slide_ttl .name:after {
    width: 7.4rem;
  }
}
@media only screen and (max-width: 640px) {
  .interview .interview_slide_item .interview_slide_ttl .name:after {
    width: calc(74 / 760 * 100vw);
  }
}
.interview .interview_slide_item .interview_slide_ttl .view {
  padding-right: calc(20 / 1920 * 100vw);
  background: url("../img/common/arrow_w_r.png") top 50% right no-repeat;
  background-size: calc(15 / 1920 * 100vw);
  font-size: calc(14 / 1920 * 100vw);
}
@media only screen and (max-width: 1200px) {
  .interview .interview_slide_item .interview_slide_ttl .view {
    padding-right: 2rem;
    background: url("../img/common/arrow_w_r.png") top 50% right no-repeat;
    background-size: 1.5rem;
    font-size: 1.4rem;
  }
}
@media only screen and (max-width: 640px) {
  .interview .interview_slide_item .interview_slide_ttl .view {
    background-size: calc(15 / 760 * 100vw);
    font-size: calc(14 / 760 * 100vw);
  }
}
.interview .interview_slide_item.slick-current, .interview .interview_slide_item.slick-active {
  background: rgb(255, 255, 255);
}
@media only screen and (max-width: 1200px) {
  .interview .interview_slide_item.slick-current, .interview .interview_slide_item.slick-active {
    padding-left: 10rem;
  }
}
@media only screen and (max-width: 640px) {
  .interview .interview_slide_item.slick-current, .interview .interview_slide_item.slick-active {
    padding-left: 0;
  }
}
.interview .interview_slide_item.slick-current .interview_slide_ttl, .interview .interview_slide_item.slick-active .interview_slide_ttl {
  opacity: 1;
}
.interview .interview_slide_item.slick-current img, .interview .interview_slide_item.slick-active img {
  -webkit-filter: blur(0em);
  filter: blur(0em);
}
.interview .interview_slide_item a.animation {
  opacity: 1;
}
.interview .interview_slide_ttl {
  display: none;
}

.housing.content {
  padding: 0;
}
.housing .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 100%;
}
@media only screen and (max-width: 640px) {
  .housing .inner {
    display: block;
  }
}
.housing .index-title .lifesta {
  font-size: calc(20 / 1920 * 100vw);
  font-weight: bold;
}
@media only screen and (max-width: 1200px) {
  .housing .index-title .lifesta {
    font-size: 2rem;
  }
}
@media only screen and (max-width: 640px) {
  .housing .index-title .lifesta {
    font-size: calc(26 / 760 * 100vw);
  }
}
.housing .index-title .en {
  font-size: calc(50 / 1920 * 100vw);
}
@media only screen and (max-width: 1200px) {
  .housing .index-title .en {
    font-size: 5rem;
  }
}
@media only screen and (max-width: 640px) {
  .housing .index-title .en {
    font-size: calc(90 / 760 * 100vw);
  }
}
.housing .index-title .jp {
  font-size: calc(20 / 1920 * 100vw);
}
@media only screen and (max-width: 1200px) {
  .housing .index-title .jp {
    font-size: 2rem;
  }
}
@media only screen and (max-width: 640px) {
  .housing .index-title .jp {
    font-size: calc(25 / 760 * 100vw);
  }
}
.housing .slick-track {
  display: flex;
}
.housing .slick-slide {
  height: auto !important;
}
.housing .slick-prev, .housing .slick-next {
  top: auto;
  bottom: 0;
  transform: translate(0, 0);
  width: calc(41 / 1920 * 100vw);
  height: calc(9 / 1920 * 100vw);
  z-index: 11;
}
@media only screen and (max-width: 1200px) {
  .housing .slick-prev, .housing .slick-next {
    width: 4.1rem;
    height: 0.9rem;
  }
}
@media only screen and (max-width: 640px) {
  .housing .slick-prev, .housing .slick-next {
    top: 50%;
    bottom: auto;
    transform: translateY(-50%);
    width: calc(41 / 760 * 100vw);
    height: calc(9 / 760 * 100vw);
  }
}
.housing .slick-prev:before, .housing .slick-next:before {
  content: none;
}
.housing .slick-prev {
  right: 0;
  left: auto;
  background: url("../img/index/slide_prev.png") top center no-repeat;
  background-size: contain;
}
.housing .slick-next {
  right: calc(50 / 1920 * 100vw);
  background: url("../img/index/slide_next.png") top center no-repeat;
  background-size: contain;
}
@media only screen and (max-width: 1200px) {
  .housing .slick-next {
    right: 5rem;
  }
}
.housing .housing_ttl_wrap {
  order: 2;
  width: calc(400 / 1920 * 100vw);
  padding: calc(90 / 1920 * 100vw) calc(80 / 1920 * 100vw);
}
@media only screen and (max-width: 1200px) {
  .housing .housing_ttl_wrap {
    width: 400px;
    padding: 9rem 8rem;
  }
}
@media only screen and (max-width: 640px) {
  .housing .housing_ttl_wrap {
    width: 100%;
    margin-bottom: calc(60 / 760 * 100vw);
    padding: 0 calc(30 / 760 * 100vw);
  }
}
.housing .housing_slide {
  padding-bottom: calc(70 / 1920 * 100vw);
}
@media only screen and (max-width: 1200px) {
  .housing .housing_slide {
    padding-bottom: 7rem;
  }
}
@media only screen and (max-width: 640px) {
  .housing .housing_slide {
    padding-bottom: 0;
  }
}
.housing .housing_slide_wrap {
  order: 1;
  width: calc(1490 / 1920 * 100vw);
  padding: 8rem;
  overflow-x: hidden !important;
  background: #EDE8E2;
}
@media only screen and (max-width: 1200px) {
  .housing .housing_slide_wrap {
    width: 80rem;
  }
}
@media only screen and (max-width: 640px) {
  .housing .housing_slide_wrap {
    width: 100%;
    padding: 0;
    background: none;
    overflow: visible !important;
  }
}
.housing .housing_slide_item {
  width: calc(400 / 1920 * 100vw) !important;
  margin-right: calc(50 / 1920 * 100vw);
}
@media only screen and (max-width: 1200px) {
  .housing .housing_slide_item {
    width: 40rem !important;
    margin-right: 5rem;
  }
}
@media only screen and (max-width: 640px) {
  .housing .housing_slide_item {
    width: 100% !important;
    padding: calc(40 / 760 * 100vw) 0;
    border-bottom: #CCC 1px solid;
  }
}
@media only screen and (max-width: 640px) {
  .housing .housing_slide_item:first-child {
    border-top: #CCC 1px solid;
  }
}
@media only screen and (max-width: 640px) {
  .housing .housing_slide_item a,
  .housing .housing_slide_item span {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
  }
}
.housing .housing_slide_img {
  position: relative;
}
@media only screen and (max-width: 640px) {
  .housing .housing_slide_img {
    width: calc(280 / 760 * 100vw);
  }
}
.housing .housing_slide_img .area {
  position: absolute;
  top: 0;
  left: 0;
  width: calc(120 / 1920 * 100vw);
  height: calc(30 / 1920 * 100vw);
  background: #434343;
  color: #FFF;
  font-size: calc(16 / 1920 * 100vw);
  line-height: calc(30 / 1920 * 100vw);
  text-align: center;
}
@media only screen and (max-width: 1200px) {
  .housing .housing_slide_img .area {
    width: 12rem;
    height: 3rem;
    font-size: 1.6rem;
    line-height: 3rem;
  }
}
@media only screen and (max-width: 640px) {
  .housing .housing_slide_img .area {
    width: calc(120 / 760 * 100vw);
    height: calc(30 / 760 * 100vw);
    font-size: calc(16 / 760 * 100vw);
    line-height: calc(30 / 760 * 100vw);
  }
}
.housing .housing_slide_detail {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  margin-top: calc(30 / 1920 * 100vw);
}
@media only screen and (max-width: 1200px) {
  .housing .housing_slide_detail {
    margin-top: 3rem;
  }
}
@media only screen and (max-width: 640px) {
  .housing .housing_slide_detail {
    display: block;
    width: calc(330 / 760 * 100vw);
    margin: 0;
  }
}
.housing .housing_slide_detail dt,
.housing .housing_slide_detail dd {
  margin-top: 0.5em;
  font-size: calc(16 / 1920 * 100vw);
  line-height: 1.5;
  text-align: left;
}
@media only screen and (max-width: 1200px) {
  .housing .housing_slide_detail dt,
  .housing .housing_slide_detail dd {
    font-size: 1.6rem;
  }
}
@media only screen and (max-width: 640px) {
  .housing .housing_slide_detail dt,
  .housing .housing_slide_detail dd {
    margin-top: 0;
    line-height: 1.2;
  }
}
.housing .housing_slide_detail dt {
  width: 25%;
  font-weight: bold;
}
@media only screen and (max-width: 640px) {
  .housing .housing_slide_detail dt {
    width: 100%;
    font-size: calc(20 / 760 * 100vw);
  }
}
.housing .housing_slide_detail dd {
  width: 72%;
  font-weight: normal;
}
@media only screen and (max-width: 640px) {
  .housing .housing_slide_detail dd {
    width: 100%;
    margin-bottom: 0.3em;
    font-size: calc(28 / 760 * 100vw);
  }
}
.housing .housing_slide_detail dd.price {
  font-weight: bold;
}
@media only screen and (max-width: 640px) {
  .housing .housing_slide_detail dd.access {
    font-size: calc(24 / 760 * 100vw);
    line-height: 1.6;
  }
}
.housing .housing-text {
  text-align: center;
  font-weight: 500;
  font-size: 1.8rem;
}
@media only screen and (max-width: 640px) {
  .housing .housing-text {
    margin: 2em 0;
    font-size: calc(24 / 760 * 100vw);
  }
}

.vision {
  overflow-x: hidden;
  padding-top: 11rem;
}
@media only screen and (max-width: 640px) {
  .vision {
    padding: calc(120 / 760 * 100vw) 0 calc(100 / 760 * 100vw);
    background: rgba(191, 171, 155, 0.5);
  }
}
.vision .inner {
  position: relative;
}
.vision .index-title {
  margin-bottom: 3rem;
}
@media only screen and (max-width: 640px) {
  .vision .index-title {
    margin-bottom: calc(50 / 760 * 100vw);
  }
}
.vision .index-title-text {
  margin-top: 3rem;
}
@media only screen and (max-width: 640px) {
  .vision .index-title-text {
    margin-top: calc(50 / 760 * 100vw);
  }
}
.vision .vision_img01 {
  position: relative;
  width: 80rem;
  height: 50rem;
}
@media only screen and (max-width: 640px) {
  .vision .vision_img01 {
    width: calc(500 / 760 * 100vw);
    height: calc(300 / 760 * 100vw);
    margin: 0 0 0 calc(-120 / 760 * 100vw);
  }
}
.vision .vision_img01:after {
  position: absolute;
  top: -11rem;
  left: -9.2rem;
  content: "";
  width: 79.4rem;
  height: 50.4rem;
  background: rgba(191, 171, 155, 0.5);
  z-index: -11;
}
@media only screen and (max-width: 640px) {
  .vision .vision_img01:after {
    display: none;
  }
}
.vision .vision_img02 {
  position: absolute;
  width: 30rem;
  height: 20rem;
  top: 50%;
  right: -10rem;
  transform: translate(100%, -50%);
}
@media only screen and (max-width: 640px) {
  .vision .vision_img02 {
    width: calc(278 / 760 * 100vw);
    height: calc(278 / 760 * 100vw);
    top: auto;
    right: 0;
    bottom: calc(-40 / 760 * 100vw);
    transform: translate(0, 0);
  }
}
.vision .vision_img02:after {
  position: absolute;
  top: -10.6rem;
  left: 9.5rem;
  content: "";
  width: 19.3rem;
  height: 42.4rem;
  background: rgba(191, 171, 155, 0.5);
  z-index: -11;
}
@media only screen and (max-width: 640px) {
  .vision .vision_img02:after {
    display: none;
  }
}
.vision .vision_img03 {
  position: absolute;
  width: 30rem;
  top: 50%;
  left: -5rem;
  transform: translate(-100%, -50%);
}
@media only screen and (max-width: 640px) {
  .vision .vision_img03 {
    display: none;
  }
}
.vision .vision_ttl_wrap {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 40rem;
  padding: 0 2rem 0 10rem;
}
@media only screen and (max-width: 640px) {
  .vision .vision_ttl_wrap {
    position: static;
    top: auto;
    transform: translateY(0);
    width: 100%;
    margin-bottom: calc(70 / 760 * 100vw);
    padding: 0;
  }
}

.sale {
  overflow: hidden;
}
.sale.content {
  padding-bottom: 0;
}
.sale .content-inner {
  padding: 8rem 0;
  background: #EDE8E2;
}
@media only screen and (max-width: 640px) {
  .sale .content-inner {
    padding: calc(120 / 760 * 100vw) 0 0;
  }
}
.sale .inner {
  padding: 0;
  position: relative;
}
.sale .inner .sale_img {
  position: absolute;
  top: calc(-180 / 1920 * 100vw);
  left: 55%;
  content: "";
  width: calc(870 / 1920 * 100vw);
  height: calc(650 / 1920 * 100vw);
}
@media only screen and (max-width: 1200px) {
  .sale .inner .sale_img {
    top: -18rem;
    width: 87rem;
    height: 65rem;
  }
}
@media only screen and (max-width: 640px) {
  .sale .inner .sale_img {
    position: relative;
    top: auto;
    left: 0;
    width: 100%;
    height: calc(500 / 760 * 100vw);
  }
}
.sale .index-title-text {
  margin-bottom: 8rem;
}
@media only screen and (max-width: 640px) {
  .sale .index-title-text {
    margin-bottom: calc(80 / 760 * 100vw);
  }
}
.sale .sale_ttl_wrap {
  width: 69rem;
  padding: 0 7rem;
  margin-right: auto;
}
@media only screen and (max-width: 640px) {
  .sale .sale_ttl_wrap {
    margin-bottom: calc(80 / 760 * 100vw);
    width: 100%;
    padding: 0 calc(40 / 760 * 100vw);
  }
}/*# sourceMappingURL=index.css.map */