@charset "UTF-8";
.showcase_img img{aspect-ratio: 16 / 11; max-height: 400px;}
/* MV  */
.mv {
  position: relative;
  width: 100%;
  height: 88vh;
  overflow: hidden;

  .mv_overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.15);
    z-index: 5;
    pointer-events: none;
  }

  .mv_inner {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    bottom: 80px;
    color: #fff;
    text-align: center;
    z-index: 5;

    .mv_badge {
      display: flex;
      justify-content: center;
      gap: 13px;
      margin-bottom: 10px;

      > span {
        border-radius: 5px;
        font-size: 18px;
        padding: 10px 12px;
        font-weight: bold;
      }

      .badge_blue {
        background-color: var(--primary-color);
      }

      .badge_yellow {
        background-color: #d5b42d;
      }
    }

    .mv_title {
      font-size: 80px;
      font-weight: normal;
      margin-bottom: 15px;
	font-family: 'Bebas Neue';
    }

    .mv_lead {
      font-size: 18px;
      font-weight: bold;
      margin-bottom: 40px;
    }

    .mv_btn {
      display: inline-block;
      width: fit-content;
      padding: 0 2em;
      line-height: 3em;
      font-size: 16px;
      font-weight: bold;
      color: #fff;
      text-align: center;
      text-decoration: none;
      background-color: var(--primary-color);
      border: 1px solid var(--primary-color);
      border-radius: 30px;
      transition: all 0.2s ease;

      &:hover {
        background-color: #fff;
        color: #159edf;
      }
    }
  }
  .mv_inner:first-child{
    .mv_title {font-size: 30px;}
  }

  .mv_main {
    video {
      width: 100%;
      height: 100vh;
      object-fit: cover;
    }

    img {
      width: 100%;
      height: 100vh;
      object-fit: cover;
    }
  }

  .mv_thumb {
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 20px;
    z-index: 9;
	li{
		font-size: 16px;
		/* font-weight: bold; */
		font-family: 'Bebas Neue';
		text-align: center;
		color: #fff;
		letter-spacing: 1px;
		list-style: none;
    a{
      color: #fff;
	    img {
	      width: 65px;
	      height: 60px;
	      object-fit: cover;
	      border: 2px solid #fff;
	      cursor: pointer;
	      transition: border-color 0.3s ease;
		border-radius: 50%;
		display: block;
		margin:auto;
	      &.active {
	        border: 2px solid #00bbff;
	      }
	    }
    }
	}

  }
}

/* CTA */
#sticky_cta_container {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;

  .sticky_cta_btn {
    display: inline-block;
    width: 350px;
    height: 50px;
    line-height: 48px;
    font-weight: bold;
    font-size: 16px;
    text-decoration: none;
    text-align: center;
    color: #fff;
    background-color: var(--primary-color);
    border: 2px solid #fff;
    border-radius: 30px;
    transition: all 0.2s ease;

    &:hover {
      color: var(--primary-color);
      border: 2px solid var(--primary-color);
      background-color: #fff;
    }
  }
}

/* INFO */
.info {
  .info_inner {
    text-align: left;
    margin-top: 26px;
    font-size: 14px;
    position: relative;
    display: flex;
    align-items: center;

    .info_ttl {
      margin-right: 45px;
      font-weight: bold;
    }

    .info_slide_wrap {
      display: block;
      width: 100%;
      box-sizing: border-box;
      overflow: hidden;
      z-index: 2;

      .info_slide {
        margin-left: 20px;

        a {
          text-decoration: underline;
          color: #529abc;
        }
      }
    }
  }
}

.otherlineup{
	width: fit-content;
	margin: 0vh auto 15vh auto;
	img{}
}


/* WORKS */
.showcase_slider {
  margin: 0 auto;

  .showcase_slide {
	display: flex;
	flex-wrap: nowrap;
	margin: 0px auto;
	justify-content: space-between;

    .showcase_item {
      text-align: left;
            width: 48%;
      .showcase_link {
        color: inherit;
        display: flex;
        flex-direction: column;
        height: 100%;
        box-sizing: border-box;

        .showcase_title {
          font-size: 18px;
          font-weight: bold;
          color: #4294b8;
          margin: 20px 0 10px;
        }

        .showcase_desc {
          font-size: 14px;
          margin-bottom: 20px;
          flex-grow: 1;
        }

        .showcase_staff {
          display: flex;
          justify-content: left;
          gap: 40px;

          .staff {
            display: flex;
            justify-content: left;
            gap: 15px;
            align-items: center;

            img {
              width: 47px;
              height: 47px;
              border-radius: 50%;
              margin-bottom: 5px;
            }

            .staff-role {
              font-size: 16px;
            }

            span {
              font-size: 10px;
              color: var(--primary-color);
            }
          }
        }
      }
    }
  }

  .slick-slide {
    display: flex !important;
    justify-content: space-between;
    gap: 40px;
    width:100% !important;
  }
.slick-track{
    width:100% !important;
}

  .slick-prev,
  .slick-next {
    background: none;
    border: none;
    font-size: 30px;
    color: #4294b8;
    cursor: pointer;
    position: absolute;
    top: 45%;
    transform: translateY(-50%);
    z-index: 2;
  }

  .slick-prev {
    left: -40px;
  }

  .slick-next {
    right: -40px;
  }
}



/* EVENT */
.event {
  .event_inner {
    .event_cards {
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;

      .event_card {
        display: block;
        width: 32%;

        .event_img {
          border-radius: 15px;

          img {
		width: 100%;
		height: 14em;
		object-fit: cover;
		vertical-align: middle;
          }
        }

        .event_meta {
          display: flex;
          flex-wrap: wrap;
          justify-content: space-between;
          margin: 10px auto;
          padding: 0 3%;

          .event_title {
            width: 100%;
            font-size: 16px;
            font-weight: bold;
            margin-bottom: 5px;
            color: #333;
          }

          .event_tag {
            font-size: 12px;
            color: var(--primary-color);
            margin-bottom: 3px;
	width: 100%;
          }

          .event_date {
		font-size: 12px;
		color: #ffffff;
		background-color: #ff006a;
		padding: 0 1em;
		border-radius: 5px;
		line-height: 2em;
		font-weight: bold;
          }
        }
      }
    }
  }
}

/* DESIGN */
 .design {
	padding: 4vh 0px;
	background: #333333;
	color: #FFF;
  .design_inner {
    padding-bottom: 30px;

    .design_ttl {
      color: var(--primary-color);
      font-size: 25px;
      font-weight: bold;
      margin-bottom: 25px;
      text-align: center;
    }

    .design_txt {
      font-size: 16px;
      text-align: center;
      font-weight: bold;
      line-height: 3;
      letter-spacing: 1px;
    }
/*
    .design_img {
      position: relative;
      overflow: hidden;
      width: 100%;
      height: 300px;
      margin-top: 45px;
      border-radius: 10px;

      img {
        position: absolute;
        top: 50%;
        left: 50%;
        width: 100%;
        height: auto;
        transform: translate(-50%, -50%);
      }
    }
*/
    .design_btn_wrap {
      display: flex;
      gap: 30px;
      justify-content: center;
      text-align: center;
      margin-top: 30px;
	a{
                background: white;
                color: #333;
                border: none;
	}
    }
  }
}

/* LINEUP */
.showcase_box {
  display: flex;
  width: 100%;
  overflow: hidden;

  .box {
    flex: 1;
    transition: flex 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    position: relative;

    .img_overlay {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      z-index: 2;
      max-width: 80%;
      height: auto;
      pointer-events: none;
    }

    .img_wrap {
      position: relative;
      width: 100%;
      height: 440px;
      overflow: hidden;

      .img_base {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
      }
    }

    .box_label {
      width: 100%;
      margin-top: 10px;
      padding-left: 35px;
      font-size: 14px;
      font-weight: bold;
      text-align: left;
      color: var(--primary-color);
    }
  }
}

/* ONETEAM */
.oneteam {
  .oneteam_inner {
    .oneteam_hero {
      position: relative;
      overflow: hidden;
            margin: 130px auto 0px;
            background: #333333;

      .oneteam_text {
        position: absolute;
        bottom: 0%;
        left: 50%;
        transform: translate(-50%, -50%);
        color: #fff;
        text-align: center;
        z-index: 1;
        padding: 20px;

        h3 {
          font-size: 50px;
	margin-bottom: 20px;
          font-weight: bold;

          small {
            font-size: 30px;
            display: block;
          }
        }

        p {
          margin: 48px 0 20px;
          font-size: 16px;
          font-weight: bold;
          line-height: 1.6;
        }
      }

      video {
        width: 100%;
        height: 90vh;
        object-fit: cover;
      }
    }

    .oneteam_cards {
      display: flex;
      gap: 33px 28px;
      flex-wrap: wrap;
      justify-content: center;
      align-items: stretch;
      /* 追加: 高さを揃える */

      .oneteam_card {
        background: #f2fbff;
        border-radius: 15px;
        padding: 0;
        flex: 1 1 45%;
        max-width: 480px;
        box-sizing: border-box;
        display: flex;
        flex-direction: column;

        .oneteam_card_inner {
          display: flex;
          flex-direction: column;
          padding: 34px 33px 27px;
          height: 100%;
          box-sizing: border-box;

          h3 {
            line-height: 2;
            font-size: 20px;
            text-align: left;
            color: #4294b8;
            margin-bottom: 20px;
          }

          img {
            width: 100%;
            border-radius: 8px;
            object-fit: cover;
          }

          p {
            font-size: 14px;
            margin: 20px 0;
            line-height: 1.6;
            flex-grow: 1;
          }

          .oneteam_btn_wrap {
            margin-top: auto;
            text-align: right;
          }
        }
      }
    }
  }
}


.video-parallax-section {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
}

.video-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.content-scrollable {
  position: relative;
  height: 100%;
  overflow-y: auto;
  background: rgba(255, 255, 255, 0.8); /* 半透明レイヤー */
}

.content-scrollable .inner {
  padding: 60px;
}



/* VOICES */
.voices {
  .voices_inner {
    .voices_item {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 24px 10px 24px 25px;
      margin-bottom: 20px;
      background: #fff;
      border-bottom: 1px solid #f4f4f4;
      text-decoration: none;
      color: inherit;

      .voices_left {
        flex-shrink: 0;
        width: 142px;
        height: 142px;
        border-radius: 50%;
        overflow: hidden;

        img {
          width: 100%;
          height: 100%;
          object-fit: cover;
        }
      }

      .voices_center {
        flex: 1;
        padding: 0 100px 0 24px;

        .voices_vol {
          font-weight: bold;
          font-size: 18px;
        }

        .voices_title {
          font-weight: bold;
          font-size: 18px;
          margin: 12px 0;
        }

        .voices_summary {
          font-size: 14px;
        }

        .voices_more {
          display: block;
          align-items: center;
          gap: 6px;
          padding-top: 30px;
          color: #4294b8;
          font-weight: bold;
          font-size: 14px;
          text-align: right;

          .text {
            display: inline-flex;
            align-items: center;
          }

          .symbol {
            display: inline-flex;
            align-items: center;
            font-size: 16px;
            line-height: 1;
          }
        }
      }

      .voices_right {
        display: flex;
        flex-direction: column;
        gap: 20px;

        .staff {
          display: flex;
          align-items: center;
          gap: 10px;

          img {
            width: 47px;
            height: 47px;
            border-radius: 50%;
            object-fit: cover;
          }

          span {
            font-size: 10px;
            color: #ccc;
            font-weight: bold;

            &.blue {
              color: #00a0df;
            }
          }

          p {
            font-size: 16px;
            line-height: 1.6;
          }
        }
      }
    }
  }
}



/* EVENT */
.otherlineup {
  .otherlineup_inner {
    .otherlineup_cards {
      display: flex;
      justify-content: space-between;
      flex-wrap: nowrap;

      .otherlineup_card {
        display: block;
        width: 32%;
        text-align: center;

        .otherlineup_img {
          border-radius: 15px;
          text-align: center;
          img {
            width: 90%;
            height: auto;
		margin: 1em auto;
            vertical-align: middle;
          }
        }
      }
    }
  }
}

/* buisiness */
.buisiness {

    width: 900px;
    margin: auto;


  .buisiness_inner {
    .buisiness_hero {
      position: relative;
      border-radius: 12px;
      overflow: hidden;
      margin: 0 auto 50px;

      .buisiness_text {
        position: absolute;
        top: 55%;
        left: 50%;
        transform: translate(-50%, -50%);
        color: #fff;
        text-align: center;
        z-index: 1;
        padding: 20px;

        h3 {
          font-size: 40px;
          font-weight: bold;

          small {
            font-size: 30px;
            display: block;
          }
        }

        p {
          margin: 48px 0 20px;
          font-size: 16px;
          font-weight: bold;
          line-height: 1.6;
        }
      }

      .buisiness_bg {
        width: 100%;
        display: block;
        object-fit: cover;
        height: auto;
      }
    }

    .buisiness_cards {
      display: flex;
      gap: 33px 28px;
      flex-wrap: wrap;
      justify-content: center;
      align-items: stretch;
      /* 追加: 高さを揃える */

      .buisiness_card {
        background: #e8eef1;
        border-radius: 15px;
        padding: 0;
        flex: 1 1 45%;
        max-width: 480px;
        box-sizing: border-box;
        display: flex;
        flex-direction: column;

        .buisiness_card_inner {
          display: flex;
          flex-direction: column;
          padding: 34px 33px 27px;
          height: 100%;
          box-sizing: border-box;

          h3 {
            line-height: 2;
            font-size: 20px;
            text-align: left;
            color: #4294b8;
            margin-bottom: 20px;
          }

          img {
            width: 100%;
            border-radius: 8px;
            object-fit: cover;
          }

          p {
            font-size: 14px;
            margin: 20px 0;
            line-height: 1.6;
            flex-grow: 1;
          }

          .buisiness_btn_wrap {
            margin-top: auto;
            text-align: right;
          }
        }
      }
    }
  }
}

/* INQUIRY */
.inquiry {
  background: url("../img/top/inquiry_bg.png") center center / cover no-repeat;
  padding: 5%;
  color: #fff;

  .inquiry_inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 40px;

    .inquiry_left {
      flex: 1;
      min-width: 300px;

      h3 {
        font-size: 18px;
        font-weight: bold;
        margin-bottom: 20px;
      }

      p {
        font-size: 12px;
        line-height: 1.8;
        margin-bottom: 15px;
      }
    }

    .inquiry_right {
      flex: 1;
      max-width: 524px;
      display: flex;
      flex-direction: row;
      justify-content: space-between;
      gap: 50px;

      .inquiry_option {
        text-align: center;

        img {
          height: 70px;
          margin-bottom: 5px;
        }

        p {
          font-size: 12px;
          margin-bottom: 15px;
          line-height: 1.5;
        }
      }
    }
  }
}

/* title */
.title_wrap {
  margin-top: 0;
  margin-bottom: 32px;

  &.title_flex {
    display: flex;
    gap: 24px;
    justify-content: left;
    align-items: baseline;

    .title_desc {
      width: auto;
      margin: 0;
    }
  }

  .title_desc {
    width: 420px;
    margin: 23px auto;
    text-align: center;
    color: #555;
    font-size: 12px;
    line-height: 2;
  }

  .title_link {
    margin-left: auto;
  }

  h2 {
    font-size: 40px;
    text-align: center;
    /*color: var(--primary-color);*/

    small {
      font-size: 83%;
    }
  }
}

/* --------------------
  SP
-------------------- */
@media screen and (max-width: 768px) {
  .container {
      &.container-900 {width: 100%;}
  }
  /* mv */
  .mv {
    height: 60vh;

    .mv_inner {
      width: 90%;
      bottom: 5%;

      .mv_badge {
        gap: 6px;

        > span {
          font-size: 12px;
          font-size: clamp(10px, 2.8vw, 12px);
        }
      }

      .mv_title {
        font-size: clamp(21px, 10vw, 43px);
        margin-bottom: 10px;
      }

      .mv_lead {
        font-size: clamp(12px, 3.5vw, 14px);
        margin-bottom: 15px;
      }

	.mv_btn {
		width:fit-content;
		height: auto;
                font-size: 3.5vw;
                font-weight: bold;
      }
    }

    .mv_main,
    .mv_main .slick-list,
    .mv_main .slick-track,
    .mv_main .slick-slide {
      height: 100% !important;
    }

    .mv_main .slick-slide {
      img {
        height: 100% !important;
      }
    }


  .mv_thumb {
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 20px;
    z-index: 9;
	li{
	font-size: 3.2vw;
	/* font-weight: bold; */
	font-family: 'Bebas Neue';
	text-align: center;
	color: #fff;
	letter-spacing: 1px;
	list-style: none;
		a{
		    img {
		      width: 12vw;
		      height: 12vw;
		      object-fit: cover;
		      margin: auto;
		      border: 2px solid #fff;
		      cursor: pointer;
		      transition: border-color 0.3s ease;
		      border-radius: 50%;
		      display: block;
		      &.active {
		        border: 2px solid #00bbff;
		      }
		}
	    }
	}
	}

  }

  /* INFO */
  .info {
    .info_inner {
      display: block;
      margin-top: 0;

      .info_ttl {
        margin-bottom: 20px;
      }

      .info_slide_wrap {
        display: block;
        width: 100%;
        box-sizing: border-box;
        overflow: hidden;
        z-index: 2;

        .info_slide {
          margin-left: 0;
        }
      }
    }
  }

  /* EVENT */
  .event {
    .event_inner {
      .event_cards {
        flex-wrap: nowrap;
        gap: 10px;
        overflow-x: auto;

        .event_card {
          min-width: 53%;

          .event_meta {
            .event_title {
              font-size: clamp(11px, 3.2vw, 13px);
            }

            .event_date {
              width: fit-content;
              margin: 2px 0 0;
            }
          }
        }
      }
    }
  }


  /* DESIGN */
 .design {
    padding: 4vh 0px;
    background: #333333;
    color: hsl(0, 0%, 100%);
      .design_inner {
        padding-bottom: 30px;
        .design_ttl {
          color: var(--primary-color);
          font-size: 25px;
          font-weight: bold;
          margin-bottom: 25px;
          text-align: center;
        }

        .design_txt {
		font-size: 3.5vw;
		text-align: center;
		font-weight: bold;
		line-height: 2;
		letter-spacing: 1px;
        }

        .design_btn_wrap {
          display: flex;
          flex-wrap: wrap;
          gap: 15px;
          justify-content: center;
          text-align: center;
          margin-top: 30px;
          a{
            background: white;
            color: #333;
            border: none;
          }
        }
      }
  }

  /* WORKS */
  .works {
    .works_inner {
      padding-bottom: 50px;
    }
  }

  /* LINEUP */
  .lineup {
    .title_wrap {
      & h2 {
        font-size: clamp(24px, 7vw, 30px);
      }
    }
  }

  .showcase_box {
    flex-direction: column;

    .box {
      .img_wrap {
        height: 327px;
      }

      .box_label {
        padding-left: 0;
        margin-bottom: 40px;
      }

      &:nth-child(1) {
        order: 3;
      }

      &:nth-child(2) {
        order: 1;
      }

      &:nth-child(3) {
        order: 2;
      }
    }
  }

  .showcase_slider {
      & .showcase_slide {
          .showcase_item {
              width: 300px;
          }
      }
  }
.showcase_title {font-size:4vw !important;}
  
  /* ONETEAM */
  .oneteam {
    .oneteam_inner {

      .oneteam_hero {
        margin: 0 auto;
	      video {
	        width: 100%;
	        height: 50vh;
	        object-fit: cover;
	      }
        .oneteam_text {
          width: 100%;

          h3 {
            font-size: clamp(28px, 8vw, 35px);
            white-space: nowrap;

            small {
              font-size: clamp(18px, 5.3vw, 20px);
            }
          }

          p {
            font-weight: normal;
            margin: 28px 0 30px;
          }
        }
      }

      .oneteam_cards {
        display: block;

        .oneteam_card {
          .oneteam_card_inner {
            padding: 24px 20px;

            h3 {
              font-size: clamp(15px, 4.7vw, 18px);
            }

            img {
              border-radius: 0;
            }

            p {
              flex-grow: unset;
            }
          }
        }
      }
    }
  }

  /* VOICES */
  .voices {
    & .voices_inner {
      & .voices_item {
        position: relative;
        flex-direction: column;
        padding: 0 0 20px;

        .voices_center {
          padding: 0 0 10px;

          .voices_more {
            position: absolute;
            bottom: 20px;
            right: 0;
          }
        }

        .voices_right {
          justify-content: start;
          width: 100%;
          gap: 10px;
        }
      }
    }
  }


/* buisiness */
.buisiness {
    width: 100%;
    margin: auto;
  .buisiness_inner {
    .buisiness_hero {
      position: relative;
      border-radius: 12px;
      overflow: hidden;
      margin: 1em auto;

      .buisiness_text {
	position: absolute;
        top: 9em;
	color: #fff;
	text-align: center;
	z-index: 1;
	margin: 1em auto;
        width: 100%;
        h3 {
          font-size: 7vw;
          font-weight: bold;

          small {
            font-size: 30px;
            display: block;
          }
        }

        p {
        margin: 0.5em auto;
        font-size: 3.3vw;
        font-weight: bold;
        line-height: 1.6;
        }
        a {
        margin: 0.5em auto;
        }
      }

      .buisiness_bg {
        width: 100%;
        height: 20em;
        display: block;
        object-fit: cover;
      }
    }
  }
}
.otherlineup {
  .otherlineup_inner {
    .otherlineup_cards {
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;

      .otherlineup_card {
        display: block;
        width: 47%;
        text-align: center;

        .otherlineup_img {
          border-radius: 15px;
          text-align: center;
          img {
            width: 90%;
            height: auto;
		margin: 1em auto;
            vertical-align: middle;
          }
        }
      }
    }
  }
}



  /* INQUIRY */
  .inquiry {
    padding: 10% 5%;

    .inquiry_inner {
      flex-direction: column;
      max-width: 100%;
      flex-wrap: nowrap;
      gap: 30px;

      .inquiry_left {
        h3 {
          font-size: clamp(18px, 5.3vw, 20px);
        }

        p {
          font-size: clamp(11px, 3.2vw, 13px);
        }
      }

      .inquiry_right {
        max-width: 100%;
        justify-content: center;
        gap: 20px;

        .inquiry_option {
          min-width: 46%;

          & img {
            height: 100px;
          }
        }
      }
    }
  }

  /* 固定ボタン */
  #sticky_cta_container {
    bottom: 0px;
  }

  /* title */
  .title_wrap {
    margin-bottom: 20px;

    &.title_flex {
      position: relative;
      flex-wrap: wrap;
      align-items: center;
      gap: 0;

      .title_desc {
        order: 3;
        width: 100%;
        margin-top: 6px;
        font-size: 12px;
        text-align: left;
      }
    }

    .title_desc {
      width: 100%;
    }

    .title_link {
      order: 2;
    }

    h2 {
	order: 1;
	font-size: 7vw;
    }
  }
}


@media screen and (min-width: 768px) {
.showcase_img img {
        height: 28em !important;
}
}