@charset "UTF-8";
/* ==========================================================================
  Base
========================================================================== */
html, body {
  overflow-x: hidden;
}

.jost {
  font-family: "Jost", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

.sf-idea {
  width: 100vw;
  padding-top: 60px;
  background: #edece9;
  color: #333333;
  font-size: 1vw;
}
@media screen and (max-width: 767px) {
  .sf-idea {
    font-size: 4vw;
    padding-top: 60px;
  }
}

/* ==========================================================================
  MV
========================================================================== */
.idea-mv {
  width: 100%;
  padding-left: 6vw;
  margin-top: -4em;
}
@media screen and (max-width: 767px) {
  .idea-mv {
    margin: 0 auto 10vw;
    padding: 0;
  }
}

.idea-mv-inner {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 100%;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .idea-mv-inner {
    flex-direction: column-reverse;
  }
}

.idea-mv-left {
  width: 24%;
}
@media screen and (max-width: 767px) {
  .idea-mv-left {
    width: 100%;
    padding-left: 6vw;
  }
}

.idea-mv-h1 {
  display: block;
  width: 100%;
  aspect-ratio: 514/146;
  margin-bottom: 2.5em;
}
@media screen and (max-width: 767px) {
  .idea-mv-h1 {
    width: 50%;
  }
}

.idea-mv-ttl {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  align-items: flex-end;
  width: 100%;
  aspect-ratio: 1000/286;
}
.idea-mv-ttl span {
  display: block;
  height: 100%;
  opacity: 0;
  transform: translateY(20px);
  will-change: opacity, transform;
}
.idea-mv-ttl span:nth-child(1) {
  margin-right: 13%;
}
.idea-mv-ttl span:nth-child(2) {
  margin-right: 10%;
}
.idea-mv-ttl span:nth-child(3) {
  margin-right: 8%;
}
.idea-mv-ttl span:nth-child(4) {
  height: 100%;
}
.idea-mv-ttl span img {
  height: 100%;
  width: auto;
}

.idea-mv-h2 {
  line-height: 2.4;
  font-weight: 600;
  margin-bottom: 2.5em;
}
@media screen and (max-width: 767px) {
  .idea-mv-h2 {
    font-size: 1em;
  }
}

.idea-mv-nav {
  width: 100%;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .idea-mv-nav {
    display: block;
  }
}

.idea-nav {
  line-height: 1;
}
.idea-nav:first-child {
  margin-right: 2em;
}
@media screen and (max-width: 767px) {
  .idea-nav:first-child {
    margin: 0 0 10vw 0;
  }
}
.idea-nav a {
  font-size: 1.8em;
  color: #184b70;
  font-weight: 400;
  text-decoration: none;
  display: inline-block;
  overflow: hidden;
}
.idea-nav a span {
  display: inline-block;
  position: relative;
  transition: transform 0.5s cubic-bezier(0.76, 0, 0.24, 1);
}
.idea-nav a span:before {
  position: absolute;
  top: 100%;
  left: 0;
  content: attr(data-text);
  white-space: nowrap;
}
.idea-nav a.idea-arrow {
  position: relative;
  padding-right: 1.3em;
}
.idea-nav a.idea-arrow:after {
  position: absolute;
  right: 5px;
  bottom: 0;
  content: "";
  width: 1em;
  height: 100%;
  background: url(../img/idea/idea_arrow.svg) center center no-repeat;
  background-size: 100% auto;
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .idea-nav a:hover span {
    transform: translateY(-100%);
  }
  .idea-nav a:hover.idea-arrow:after {
    transition: 0.3s;
    right: 0;
  }
}

.idea-mv-en {
  font-size: 0.9em;
  margin-top: 0.5em;
}

.idea-mv-right {
  width: 76%;
  position: relative;
  mix-blend-mode: darken;
}
@media screen and (max-width: 767px) {
  .idea-mv-right {
    width: 100%;
    margin-bottom: 3vw;
  }
}

.idea-mv-right-ttl {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-52%, -50%);
  width: 50%;
}

/* ==========================================================================
  Concept
========================================================================== */
.idea-concept {
  width: 100%;
  padding-left: 10vw;
  position: relative;
  margin-bottom: 11vw;
}
@media screen and (max-width: 767px) {
  .idea-concept {
    padding-left: 6vw;
  }
}
.idea-concept:after {
  content: "";
  position: absolute;
  left: 0;
  top: 16.5vw;
  width: 100%;
  aspect-ratio: 2/1;
  background: url(../img/idea/idea_concept_bg.webp) center center no-repeat;
  background-size: cover;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .idea-concept:after {
    aspect-ratio: 1/1;
  }
}

.idea-concept-inner {
  width: 100%;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: space-between;
}

.idea-concept-left {
  position: relative;
  width: 54%;
  aspect-ratio: 2000/1224;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .idea-concept-left {
    width: 80%;
  }
}

.idea-concept-right {
  width: 35%;
  padding-right: 6vw;
  padding-top: 10em;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .idea-concept-right {
    width: 100%;
    padding-top: 2em;
  }
}

.idea-h3 {
  display: block;
  padding-bottom: 0.25em;
  font-weight: 400;
  line-height: 1;
  color: #184b70;
}

.idea-h3-concept {
  font-size: 2.8em;
  position: relative;
  margin-bottom: 3em;
  text-align: right;
  opacity: 0;
  transform: translate(0, 1em);
}
@media screen and (max-width: 767px) {
  .idea-h3-concept {
    font-size: 2.4em;
    margin-bottom: 1em;
  }
}
.idea-h3-concept:after {
  position: absolute;
  right: 0;
  bottom: 0;
  content: "";
  width: 2em;
  height: 2px;
  background: #184b70;
}
.idea-h3-concept.is-active {
  opacity: 1;
  transition: 0.5s;
  transform: translate(0, 0);
}

.idea-concept-text {
  line-height: 2.4;
  font-size: 1.2em;
  opacity: 0;
  transform: translate(0, 1em);
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .idea-concept-text {
    font-size: 1em;
  }
}
.idea-concept-text.is-active {
  opacity: 1;
  transition: 0.8s;
  transition-delay: 0.8s;
  transform: translate(0, 0);
}

.idea-slide {
  padding-bottom: 3em;
  position: relative;
}

.idea-slide .swiper-slide {
  overflow: hidden;
}

.idea-slide .swiper-wrapper {
  height: auto;
  aspect-ratio: 2000/1224;
}

.idea-slide .swiper-slide img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transform: scale(1.2);
  will-change: transform;
}

.idea-pagenation {
  text-align: left;
}

.swiper-pagination-bullet {
  border-radius: 0;
  width: 10px;
  height: 10px;
  margin-right: 15px;
  background: #ffffff;
  opacity: 1;
  transition: 0.6s;
}

.swiper-pagination-bullet-active {
  background: #184b70;
  transition: 0.6s;
}

/* ==========================================================================
 Point
========================================================================== */
.idea-point {
  width: 100%;
  padding-left: 10vw;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .idea-point {
    padding: 0;
  }
}

.idea-point-box {
  opacity: 0;
  padding: 4vw 0 0 2.5vw;
  width: 100%;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: space-between;
  color: #ffffff;
}
@media screen and (max-width: 767px) {
  .idea-point-box {
    padding: 6vw 0 0 6vw;
  }
}
.idea-point-box.is-active {
  transition: 0.6s;
  opacity: 1;
}

.idea-point-01 {
  background: #184b70;
}

.idea-point-02 {
  background: url(../img/idea/idea_point_bg.webp) center center no-repeat;
  background-size: cover;
}

.idea-point-03 {
  background: #a49282;
}

.idea-point-left {
  width: 32% %;
  padding-bottom: 2.5vw;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: space-between;
  opacity: 0;
  filter: blur(20px);
}
@media screen and (max-width: 767px) {
  .idea-point-left {
    width: 100%;
    padding-right: 6vw;
    margin-bottom: 6vw;
  }
}
.idea-point-left.is-active {
  transition: 0.8s;
  opacity: 1;
  filter: blur(0px);
  transition-delay: 0.5s;
}

.idea-point-right {
  width: 66%;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .idea-point-right {
    width: 100%;
  }
}
.idea-point-right img {
  transform: translate(20px, 0);
  object-fit: cover;
  will-change: transform;
}
.idea-point-right.is-active img {
  transform: translate(0, 0);
  transition: opacity 0.6s ease, transform 0.6s ease;
  transition-delay: 0.4s;
}

.idea-point-num {
  font-size: 1.6em;
  font-weight: 200;
}

.idea-point-ttl {
  margin-bottom: 4vw;
}

.idea-point-jp {
  width: 100%;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 0.5em;
}
.idea-point-jp span {
  display: block;
  height: 4vw;
  margin-right: 0.5em;
  transform: translate(-20px, 0);
  opacity: 0;
}
@media screen and (max-width: 767px) {
  .idea-point-jp span {
    height: 10vw;
  }
}
.idea-point-jp span.is-active {
  transform: translate(0, 0);
  opacity: 1;
  transition: 0.5s;
  transition-delay: 1s;
}
.idea-point-jp span:last-child.is-active {
  transform: translate(0, 0);
  opacity: 1;
  transition: 0.5s;
  transition-delay: 1.5s;
}
.idea-point-jp span img {
  height: 100%;
  width: auto;
}

.idea-point-en {
  font-size: 1.2em;
  font-weight: 200;
}

.idea-point-text {
  font-size: 1.1em;
  line-height: 2.4;
}
@media screen and (max-width: 767px) {
  .idea-point-text {
    font-size: 1em;
  }
}

/* ==========================================================================
Space
========================================================================== */
.idea-space {
  position: relative;
  overflow: hidden;
  margin-bottom: 11vw;
  padding-top: calc(60px + 3vh);
}
@media screen and (max-width: 767px) {
  .idea-space {
    padding-top: calc(6vw + 60px);
  }
}

.idea-space-ttl {
  padding-left: 6vw;
}

.idea-h3-space {
  position: relative;
  margin-bottom: 1em;
  font-size: 2.4em;
}
@media screen and (max-width: 767px) {
  .idea-h3-space {
    font-size: 1.6em;
    margin-bottom: 2em;
  }
}
.idea-h3-space:after {
  position: absolute;
  left: 0;
  bottom: 0;
  content: "";
  width: 2em;
  height: 2px;
  background: #184b70;
}

.idea-space-inner {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .idea-space-inner {
    aspect-ratio: 2/1;
    margin-top: -80px;
  }
}
@media screen and (max-width: 767px) {
  .idea-space-inner {
    height: 70vh;
    align-items: flex-start;
  }
}

.idea-space-box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  pointer-events: none;
  text-align: center;
  padding-bottom: 4vw;
  z-index: 1;
}

.idea-space-box.is-active {
  pointer-events: auto;
}

.idea-space-h4 {
  position: absolute;
  left: 45%;
  top: 0;
  color: #ffffff;
  font-size: 5em;
  font-weight: 300;
  z-index: 20;
  text-align: left;
  line-height: 1;
  opacity: 0;
}
@media screen and (max-width: 767px) {
  .idea-space-h4 {
    left: auto;
    right: 5vw;
    font-size: 2.4em;
  }
}

.idea-space-box.is-active .idea-space-h4 {
  opacity: 1;
  transform: translate(0, -50%);
  transition-delay: 1s;
  transition: all 1.2s ease 0.2s;
}

.idea-space-img {
  opacity: 0;
  width: 50%;
  position: relative;
  z-index: 1;
  overflow: hidden;
  filter: blur(20px);
}
@media screen and (max-width: 767px) {
  .idea-space-img {
    width: 80%;
  }
}
.idea-space-img img {
  width: 100%;
  height: auto;
  object-fit: cover;
  /* 初期状態を1.2倍に設定 */
  transform: scale(1.2);
  will-change: transform;
}

.idea-space-box.is-active .idea-space-img {
  opacity: 1;
  visibility: visible;
  filter: blur(0);
  z-index: 10;
  transition: all 1.2s ease;
}

.idea-space-text {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 55%;
  height: 24vw;
  z-index: 0;
  background: #f2f2f2;
  padding: 4vw 0 0 8vw;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .idea-space-text {
    position: relative;
    right: auto;
    bottom: auto;
    width: 90vw;
    height: 80vw;
    margin-left: 10vw;
    padding: 12vw 6vw 6vw 6vw;
    margin-top: -15px;
  }
}

.idea-space-h5 {
  opacity: 0;
  font-weight: 500;
  margin-bottom: 1em;
  font-size: 1.4em;
}
@media screen and (max-width: 767px) {
  .idea-space-h5 {
    margin-bottom: 1em;
    font-size: 1.2em;
  }
}

.idea-space-box.is-active .idea-space-h5 {
  opacity: 1;
  transition: 1s;
}

.idea-space-det {
  opacity: 0;
}

.idea-space-box.is-active .idea-space-det {
  opacity: 1;
  transition: 1s;
}

.space-page {
  position: absolute;
  z-index: 100000;
  padding-left: 2vw;
  padding-top: 0.5vw;
  opacity: 0;
  pointer-events: auto;
}
.space-page a.space-pagenation {
  display: inline-block;
  cursor: pointer;
  pointer-events: auto;
}

.idea-space-box.is-active .space-page {
  opacity: 1;
  transition: 1s;
}

.space-pagenation {
  margin: 0 2px !important;
}

/* ==========================================================================
last
========================================================================== */
.idea-come-h4 {
  text-align: center;
  font-size: 1.2em;
  font-weight: 500;
  padding-bottom: 0.5em;
  border-bottom: 2px solid #ffffff;
}

.idea-come-inner {
  width: 60vw;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .idea-come-inner {
    width: 88vw;
  }
}

.idea-come-box {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 100%;
  justify-content: center;
  margin-bottom: 3em;
}
@media screen and (max-width: 767px) {
  .idea-come-box {
    margin-bottom: 10vw;
  }
}

.idea-come-list li {
  position: relative;
  padding-left: 1.4em;
  margin-top: 1em;
  font-size: 0.9em;
}
.idea-come-list li:before {
  position: absolute;
  content: "■";
  color: #ffffff;
  left: 0;
  top: 0;
}

.idea-come-img {
  width: 100%;
  aspect-ratio: 4/1;
  background: url(../img/idea/idea_come_bg.webp) center center no-repeat;
  background-size: cover;
}

.idea-come-last {
  padding: 5vw 0;
}
@media screen and (max-width: 767px) {
  .idea-come-last {
    padding: 10vw 0;
  }
}

.idea-logo {
  width: 8vw;
  margin: 0 auto 3vw;
}
@media screen and (max-width: 767px) {
  .idea-logo {
    width: 20vw;
    margin: 0 auto 6vw;
  }
}

.idea-access {
  text-align: center;
  margin-bottom: 0.5vw;
}
.idea-access span {
  background: #000000;
  color: #ffffff;
  padding: 0 8px;
}

.idea-add {
  font-size: 0.8em;
  text-align: center;
  margin-bottom: 6vw;
}

.idea-base {
  width: 90vw;
  margin: 0 auto;
  opacity: 0;
  transform: translate(0, 40px);
}
.idea-base.is-active {
  opacity: 1;
  transform: translate(0, 0);
  transition: 1s;
}

/*# sourceMappingURL=idea.css.map */
