@charset "UTF-8";
/* webfont 変数　*/
/* ofi */
@media (min-width: 1693px) {
  /*====================================================================/
  /*--Large PC 以上--
  /====================================================================*/
}
@media (min-width: 1553px) {
  /*====================================================================/
  /*---PC 以上--
  /====================================================================*/
}
@media (min-width: 1176px) {
  /*====================================================================/
  /*--XGAサイズ　iPadPro 以上--
  /====================================================================*/
}
@media (min-width: 768px) {
  /*====================================================================/
  /*--タブレット　iPadmini 以上--
  /====================================================================*/
}
@media (min-width: 576px) {
  /*====================================================================/
  /*--スマホ 以上--
  /====================================================================*/
}
@media (min-width: 376px) {
  /*====================================================================/
  /*--iPhone 以上--
  /====================================================================*/
}
@media (max-width: 1692px) {
  /*====================================================================/
  /*--Large PC 未満--
  /====================================================================*/
}
@media (max-width: 1552px) {
  /*====================================================================/
  /*--PC 未満--
  /====================================================================*/
}
@media (max-width: 1175px) {
  /*====================================================================/
  /*--XGAサイズ iPadPro 未満--
  /====================================================================*/
}
@media (max-width: 767px) {
  /*====================================================================/
  /*--タブレット iPadmini 未満--
  /====================================================================*/
}
@media (max-width: 575px) {
  /*====================================================================/
  /*--iPhone 以下--
  /====================================================================*/
}
@media (min-width: 576px) and (max-width: 767px) {
  /*====================================================================/
  /*--スマホ以上 タブレット iPadmini未満--
  /====================================================================*/
}
@media (min-width: 768px) and (max-width: 1175px) {
  /*====================================================================/
  /*--タブレット iPadmini以上 XGAサイズ iPadPro未満--
  /====================================================================*/
}
@media (min-width: 1176px) and (max-width: 1552px) {
  /*====================================================================/
  /*--XGAサイズ iPadPro以上 PC未満--
  /====================================================================*/
}
@media (min-width: 1553px) and (max-width: 1692px) {
  /*====================================================================/
  /*--px以上 Large PC未満--
  /====================================================================*/
}
/*====================================================================

index.css

=====================================================================*/
.main {
  overflow: hidden;
}

/*--------------------------------------------------------------------/
	main-view
/--------------------------------------------------------------------*/
.main-view {
  position: relative;
}

.main-view__bg {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 141.7lvw;
}
@media (min-width: 768px) {
  .main-view__bg {
    height: 100lvh;
  }
}
.main-view__bg::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(35, 39, 41, 0.1);
  mix-blend-mode: darken;
  z-index: 1;
}
.main-view__bg::after {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(44, 157, 169, 0.18);
  mix-blend-mode: darken;
  z-index: 1;
}

.main-view__bg__img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
}
@media (min-width: 768px) {
  .main-view__bg__img {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
@media (max-width: 767px) {
  .main-view__bg__img {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.main-view__bg__img > * {
  width: 100%;
}
@media (min-width: 768px) {
  .main-view__bg__img > * {
    width: 50%;
  }
}
.main-view__bg__img .swiper {
  height: 100%;
}
.main-view__bg__img .swiper-wrapper {
  height: 100%;
}
.main-view__bg__img .swiper-slide {
  height: 100%;
}
.main-view__bg__img .swiper-slide-active img,
.main-view__bg__img .swiper-slide-duplicate-active img,
.main-view__bg__img .swiper-slide-prev img {
  -webkit-animation: zoomUp 5s linear 0s normal both;
          animation: zoomUp 5s linear 0s normal both;
}

@-webkit-keyframes zoomUp {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.15);
            transform: scale(1.15);
  }
}

@keyframes zoomUp {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.15);
            transform: scale(1.15);
  }
}
.main-view__inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}

.main-view__catch {
  position: absolute;
  z-index: 4;
  color: #ffffff;
}
@media (min-width: 768px) {
  .main-view__catch {
    top: 30%;
    left: 16%;
  }
}
@media (max-width: 767px) {
  .main-view__catch {
    top: 35%;
    left: 10%;
  }
}
.main-view__catch .is-small {
  font-size: 0.7em;
}
.main-view__catch .is-catch01 {
  display: block;
  line-height: 1;
  margin-bottom: 0;
}
.main-view__catch .is-catch01__inner {
  position: relative;
  text-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
  letter-spacing: 0.02em;
  line-height: 1;
  font-size: clamp(36px, 12.86vw, 140px);
  font-weight: 500;
}
@media (min-width: 768px) {
  .main-view__catch .is-catch01__inner {
    font-size: clamp(48px, 6.25vw, 140px);
  }
}
@media (min-width: 1176px) {
  .main-view__catch .is-catch01__inner {
    text-shadow: 0 0 16px rgba(0, 0, 0, 0.2);
  }
}
@media (min-width: 1921px) {
  .main-view__catch .is-catch01__inner {
    font-size: 8.75rem;
  }
}
.main-view__catch .is-catch01__letter {
  display: inline-block;
  line-height: 1em;
}
@media (min-width: 768px) {
  .main-view__catch .is-catch01__letter {
    font-size: clamp(34px, 4.43vw, 64px);
  }
}
.main-view__catch .is-catch02 {
  display: block;
}
.main-view__catch .is-catch02__inner {
  position: relative;
  text-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
  letter-spacing: 0.02em;
  line-height: 1;
  font-size: clamp(36px, 12.86vw, 140px);
  font-weight: 500;
}
@media (min-width: 768px) {
  .main-view__catch .is-catch02__inner {
    font-size: clamp(34px, 4.43vw, 64px);
  }
}
@media (min-width: 1176px) {
  .main-view__catch .is-catch02__inner {
    text-shadow: 0 0 16px rgba(0, 0, 0, 0.2);
  }
}
@media (min-width: 1921px) {
  .main-view__catch .is-catch02__inner {
    font-size: 8.75rem;
  }
}
.main-view__catch .is-catch02__letter {
  display: inline-block;
  line-height: 1em;
}
.main-view__catch .is-catch03 {
  display: block;
  margin-top: clamp(1em, 2vw, 3em);
}
.main-view__catch .is-catch03__inner {
  display: inline-block;
  position: relative;
  text-shadow: 0 0 6px rgba(0, 0, 0, 0.2);
  letter-spacing: 0.02em;
  line-height: 1.4;
  font-weight: 600;
  font-size: clamp(12px, 4.29vw, 28px);
}
@media (min-width: 768px) {
  .main-view__catch .is-catch03__inner {
    font-size: clamp(16px, 2.08vw, 48px);
  }
}
@media (min-width: 1176px) {
  .main-view__catch .is-catch03__inner {
    text-shadow: 0 0 12px rgba(0, 0, 0, 0.2);
  }
}
@media (min-width: 1921px) {
  .main-view__catch .is-catch03__inner {
    font-size: 3rem;
  }
}
.main-view__catch .is-catch03__letter {
  display: inline-block;
  line-height: 1em;
}

.main-view__add {
  position: absolute;
}
@media (min-width: 768px) {
  .main-view__add {
    bottom: 10%;
    left: 30.84%;
    width: 69.16%;
  }
}
@media (max-width: 767px) {
  .main-view__add {
    left: 12%;
    bottom: 28%;
    width: 88%;
  }
}

#line01 {
  -webkit-mask: url(#line01-mask);
          mask: url(#line01-mask);
}

.handwriting-line01 {
  width: 100%;
  height: auto;
}
.handwriting-line01__txt {
  fill: #5DCED0;
}
.handwriting-line01.is-active .handwriting-line01__mask {
  -webkit-animation-play-state: running;
          animation-play-state: running;
}
.handwriting-line01__mask {
  fill: none;
  stroke: #ffffff;
  stroke-width: 40;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 4000px;
  stroke-dashoffset: 4000px;
  -webkit-animation: topwriting 1.5s ease forwards;
          animation: topwriting 1.5s ease forwards;
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
}

@-webkit-keyframes topwriting {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes topwriting {
  to {
    stroke-dashoffset: 0;
  }
}
/* scroll */
.scroll-line {
  position: absolute;
  left: min(1.2%, 2rem);
  bottom: 0;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  z-index: 4;
}
@media (max-width: 767px) {
  .scroll-line {
    font-size: 0.8em;
  }
}
.scroll-line a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
  color: #101010;
  text-transform: capitalize;
  text-decoration: none !important;
  font-family: 'Cormorant Garamond', sans-serif;
  font-weight: 500;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.scroll-line a:hover {
  color: #2BBABD;
}
.scroll-line__txt {
  letter-spacing: 0;
}
.scroll-line span {
  content: "";
  inline-size: 5rem;
  block-size: 1px;
  background: transparent;
  display: block;
  position: relative;
  overflow: hidden;
}
.scroll-line span::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  background: #101010;
  block-size: 1px;
  inline-size: 100%;
  -webkit-animation: scroll-line 1.75s cubic-bezier(1, 0, 0, 1) infinite;
          animation: scroll-line 1.75s cubic-bezier(1, 0, 0, 1) infinite;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

@-webkit-keyframes scroll-line {
  0% {
    -webkit-transform: scale(1, 0);
            transform: scale(1, 0);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
  50% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
  51% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    -webkit-transform-origin: 0 100%;
            transform-origin: 0 100%;
  }
  100% {
    -webkit-transform: scale(1, 0);
            transform: scale(1, 0);
    -webkit-transform-origin: 0 100%;
            transform-origin: 0 100%;
  }
}

@keyframes scroll-line {
  0% {
    -webkit-transform: scale(1, 0);
            transform: scale(1, 0);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
  50% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
  51% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    -webkit-transform-origin: 0 100%;
            transform-origin: 0 100%;
  }
  100% {
    -webkit-transform: scale(1, 0);
            transform: scale(1, 0);
    -webkit-transform-origin: 0 100%;
            transform-origin: 0 100%;
  }
}
/* common----------------------------------------------------------------*/
.top-title {
  margin-bottom: clamp(2em, 3vw, 3em);
}
.top-title em {
  display: block;
  position: relative;
  margin-bottom: 0;
  color: #101010;
  font-size: clamp(32px, 11.43vw, 40px);
  line-height: 1;
  letter-spacing: 0;
  text-transform: capitalize;
  color: #5DCED0;
}
@media (min-width: 768px) {
  .top-title em {
    font-size: clamp(44px, 5.73vw, 120px);
  }
}
@media (min-width: 1176px) {
  .top-title em {
    font-size: clamp(52px, 6.5vw, 120px);
  }
}
@media (min-width: 1921px) {
  .top-title em {
    font-size: 6.88rem;
  }
}
.top-title em span.is-txt {
  font-style: normal;
  font-weight: 400;
  font-size: 0.6em;
  font-family: "Zen Old Mincho", sans-serif;
  text-transform: lowercase;
}
.top-title b {
  display: block;
  margin-top: 0.2em;
  color: #202020;
  font-weight: 600;
  font-size: clamp(12px, 4.29vw, 18px);
  line-height: 1;
}
@media (min-width: 768px) {
  .top-title b {
    font-size: clamp(20px, 1.85vw, 32px);
  }
}
@media (min-width: 1553px) {
  .top-title b {
    font-size: 2rem;
  }
}

/*--------------------------------------------------------------------/
	contents
/--------------------------------------------------------------------*/
.contents {
  background: #ffffff;
}

/*--------------------------------------------------------------------/
	top intro
/--------------------------------------------------------------------*/
.ysk-top-intro {
  position: relative;
  padding-top: clamp(8em, 12vw, 12em);
  padding-bottom: clamp(10em, 24vw, 18em);
  background: linear-gradient(160deg, #D3FEFF 10%, #FFFFFF 40%);
}
@media (min-width: 768px) {
  .ysk-top-intro {
    padding-bottom: clamp(10em, 36vw, 30em);
  }
}
.ysk-top-intro::before {
  position: absolute;
  left: auto;
  right: 0;
  bottom: 0;
  content: "";
  width: 90%;
  height: 50%;
  background: url(../../assets/img/top/top_intro_bg03_pc.webp) bottom/contain no-repeat;
  background-color: transparent;
  z-index: 0;
}
@media (min-width: 768px) {
  .ysk-top-intro::before {
    background: url(../img/top/top_intro_bg_pc.png) left bottom/100% no-repeat;
    background: url(../img/top/top_intro_bg03_pc.webp) bottom/contain no-repeat;
    padding-bottom: clamp(10em, 38vw, 50em);
  }
}
.ysk-top-intro__add {
  position: absolute;
  top: -5vw;
  left: 0;
  width: 100%;
  z-index: 2;
}
@media (min-width: 376px) {
  .ysk-top-intro__add {
    top: -12vw;
  }
}
@media (min-width: 768px) {
  .ysk-top-intro__add {
    top: 6vw;
    left: 20.84%;
    width: 79.16%;
  }
}
@media (min-width: 1553px) {
  .ysk-top-intro__add {
    top: 6em;
  }
}

.ysk-top-intro .l-cont_xxl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.ysk-top-intro__inner {
  position: relative;
  z-index: 2;
}
@media (min-width: 768px) {
  .ysk-top-intro__inner {
    padding-top: clamp(3em, 12vw, 12em);
    padding-top: clamp(2em, 7vw, 7em);
    width: 60%;
  }
}
@media (min-width: 1176px) {
  .ysk-top-intro__inner {
    width: 44%;
  }
}
.ysk-top-intro__catch {
  margin-bottom: 1.5em;
  line-height: 1.5;
  font-size: clamp(13px, 4.64vw, 20px);
}
@media (min-width: 768px) {
  .ysk-top-intro__catch {
    font-size: clamp(20px, 2.6vw, 32px);
  }
}
@media (min-width: 768px) {
  .ysk-top-intro__txt {
    font-size: clamp(12px, 1.56vw, 17px);
  }
}
@media (min-width: 1176px) {
  .ysk-top-intro__txt {
    font-size: clamp(15px, 1.39vw, 18px);
  }
}
@media (min-width: 1553px) {
  .ysk-top-intro__txt {
    font-size: clamp(18px, 1.25vw, 20px);
  }
}
@media (max-width: 767px) {
  .ysk-top-intro__txt {
    margin-bottom: clamp(3em, 6vw, 6em);
  }
}
.ysk-top-intro__txt .txt {
  line-height: 2;
}
.ysk-top-intro__txt .txt p {
  line-height: 3;
}
.ysk-top-intro__txt .txt p:not(:last-child) {
  margin-bottom: 0;
}

.ysk-top-intro__img {
  width: 71.66%;
}
@media (min-width: 768px) {
  .ysk-top-intro__img {
    position: absolute;
    top: 10vw;
    left: auto;
    right: 0;
    width: 40%;
  }
}
@media (min-width: 1176px) {
  .ysk-top-intro__img {
    width: 45%;
  }
}
.ysk-top-intro__img__inner {
  position: relative;
  aspect-ratio: 86/151;
}
@media (min-width: 768px) {
  .ysk-top-intro__img__inner {
    width: 100%;
  }
}
.ysk-top-intro__img .is-img01 {
  position: absolute;
  top: 0;
  left: auto;
  right: 0;
  width: 88.5%;
}
.ysk-top-intro__img .is-img02 {
  position: absolute;
  top: 23%;
  right: auto;
  left: 0;
  width: 45%;
}
.ysk-top-intro__img .is-img03 {
  position: absolute;
  bottom: auto;
  left: 39%;
  top: 49%;
  width: 39%;
}

.ysk-top-intro .catch-icon {
  z-index: 0;
  position: absolute;
  top: 40px;
  left: 0;
  width: 66.5vw;
}
.ysk-top-intro .is-btn {
  margin-top: 60px;
}

/*--------------------------------------------------------------------/
	top recruit
/--------------------------------------------------------------------*/
.top-recruit {
  position: relative;
  z-index: 2;
  z-index: 2;
  position: relative;
  background-color: #E5FDFD;
}
@media (min-width: 768px) {
  .top-recruit {
    padding-top: clamp(4em, 6vw, 6em);
    padding-bottom: clamp(4em, 6vw, 6em);
  }
}
@media (min-width: 768px) {
  .top-recruit {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}
@media (max-width: 767px) {
  .top-recruit {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    -ms-grid-rows: auto 1fr;
    grid-template-rows: auto 1fr;
  }
  .top-recruit > *:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .top-recruit > *:nth-child(2) {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
  }
}
.top-recruit__line {
  position: absolute;
  top: -180px;
  left: 0;
  width: 100%;
  z-index: 3;
}
.top-recruit__img {
  position: relative;
  background: #ffffff;
  aspect-ratio: 3/2;
}
@media (min-width: 768px) {
  .top-recruit__img {
    position: absolute;
    top: -70px;
    left: 0;
    width: 50%;
  }
}
@media (max-width: 767px) {
  .top-recruit__img {
    -ms-grid-row: 2;
    -ms-grid-row-span: 1;
    grid-row: 2/3;
    width: 100%;
  }
}
.top-recruit__img li {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.top-recruit__img li img {
  display: none;
}
.top-recruit__img li img.is-active {
  display: block;
}

.top-recruit__txt {
  position: relative;
  z-index: 2;
}
@media (min-width: 768px) {
  .top-recruit__txt {
    width: 60%;
  }
}
@media (min-width: 1176px) {
  .top-recruit__txt {
    width: 43%;
  }
}
@media (max-width: 767px) {
  .top-recruit__txt {
    -ms-grid-column: 1;
    grid-column: 1;
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    grid-row: 1/2;
    width: 100%;
  }
}
@media (min-width: 1176px) {
  .top-recruit__txt__txt {
    font-size: clamp(16px, 1.48vw, 18px);
  }
}
@media (min-width: 1553px) {
  .top-recruit__txt__txt {
    font-size: 1.13rem;
  }
}

.top-recruit__txt__list {
  margin-top: 3em;
}
@media (min-width: 1553px) {
  .top-recruit__txt__list {
    width: 85%;
  }
}
.top-recruit__txt__list li {
  margin: 10px 0;
}
.top-recruit__txt__list li a {
  color: #101010;
  padding: 1.5em 0;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto 0.5em 1fr;
  grid-template-columns: auto 1fr;
  -webkit-column-gap: 0.5em;
     -moz-column-gap: 0.5em;
          column-gap: 0.5em;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  -webkit-transform-origin: left;
          transform-origin: left;
  background-color: #ffffff;
  font-size: clamp(13.5px, 4.82vw, 20px);
  font-weight: 700;
  line-height: 1;
  text-decoration: none !important;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
@media (min-width: 768px) {
  .top-recruit__txt__list li a {
    font-size: clamp(16px, 2.08vw, 24px);
    padding: 1em 2em;
  }
}
@media (min-width: 1553px) {
  .top-recruit__txt__list li a {
    font-size: 1.5em;
  }
}
.top-recruit__txt__list li a .is-txt span {
  display: block;
}
.top-recruit__txt__list li a .is-txt em {
  display: block;
  text-transform: capitalize;
  color: #5DCED0;
  font-size: 0.7em;
  margin-top: 1em;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1;
}
.top-recruit__txt__list li a i {
  position: relative;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-size: 1em;
  width: 2em;
  height: 2em;
  content: "";
  background: #ffffff;
  background-color: #5DCED0;
  border-radius: 50%;
  -ms-grid-column-align: end;
      justify-self: end;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.top-recruit__txt__list li a i::before {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  color: #ffffff;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.top-recruit__txt__list li a:hover {
  color: #ffffff;
  background-color: #5DCED0;
}
.top-recruit__txt__list li a:hover em {
  color: #ffffff;
}
.top-recruit__txt__list li a:hover i {
  background-color: #ffffff;
}
.top-recruit__txt__list li a:hover i::before {
  color: #5DCED0;
}

/*--------------------------------------------------------------------/
	top interview
/--------------------------------------------------------------------*/
.ysk-top-interview {
  padding-top: clamp(6em, 9vw, 9em);
  padding-bottom: clamp(6em, 9vw, 9em);
}
.ysk-top-interview__head {
  margin-bottom: clamp(3em, 6vw, 6em);
}
@media (min-width: 1176px) {
  .ysk-top-interview__head__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-column-gap: 2%;
       -moz-column-gap: 2%;
            column-gap: 2%;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.ysk-top-interview__head__ttl {
  margin-bottom: clamp(1.5em, 2vw, 2em);
  line-height: 1;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.ysk-top-interview__head__ttl em {
  display: block;
  text-transform: capitalize;
  font-style: italic;
  font-weight: 500;
  font-family: 'Cormorant Garamond', sans-serif;
  font-size: clamp(32px, 11.43vw, 60px);
}
@media (min-width: 1176px) {
  .ysk-top-interview__head__ttl em {
    font-size: clamp(60px, 5.56vw, 130px);
  }
}
.ysk-top-interview__head__ttl b {
  display: block;
  margin-top: 0.2em;
  font-weight: 600;
  font-size: clamp(12px, 4.29vw, 18px);
}
@media (min-width: 1176px) {
  .ysk-top-interview__head__ttl b {
    font-size: clamp(18px, 1.67vw, 32px);
  }
}
.ysk-top-interview__head__txt {
  font-size: clamp(9.5px, 3.39vw, 14px);
}
@media (min-width: 1176px) {
  .ysk-top-interview__head__txt {
    width: 70%;
    font-size: clamp(13px, 1.2vw, 20px);
  }
}

.ysk-top-interview__list {
  position: relative;
  padding-bottom: clamp(3em, 6vw, 6em);
}
.ysk-top-interview__list__inner {
  position: relative;
  z-index: 1;
  overflow-x: hidden;
  max-width: 1460px;
  margin: 0 auto;
}

.ysk-top-interview__list {
  position: relative;
}
.ysk-top-interview__list .swiper {
  width: 100%;
  overflow: visible;
  position: relative;
}
.ysk-top-interview__list .swiper-foot {
  position: relative;
  padding-top: clamp(2em, 3vw, 3em);
}
.ysk-top-interview__list .swiper-control {
  position: relative;
  width: 100%;
  height: 48px;
}
@media (min-width: 1176px) {
  .ysk-top-interview__list .swiper-control {
    height: 64px;
  }
}
.ysk-top-interview__list .swiper-next_prev {
  position: absolute;
  top: 0;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 48px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 102px;
  -webkit-column-gap: 6px;
     -moz-column-gap: 6px;
          column-gap: 6px;
}
@media (min-width: 1176px) {
  .ysk-top-interview__list .swiper-next_prev {
    height: 64px;
    -webkit-column-gap: 8px;
       -moz-column-gap: 8px;
            column-gap: 8px;
    width: 136px;
  }
}
.ysk-top-interview__list .swiper-button-prev,
.ysk-top-interview__list .swiper-button-next {
  margin: 0;
  float: none;
  display: block;
  background-image: none;
  width: 48px;
  height: 48px;
  position: relative;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
@media (min-width: 1176px) {
  .ysk-top-interview__list .swiper-button-prev,
  .ysk-top-interview__list .swiper-button-next {
    width: 64px;
    height: 64px;
  }
}
.ysk-top-interview__list .swiper-button-prev::before,
.ysk-top-interview__list .swiper-button-next::before {
  content: "";
  position: absolute;
  background-color: #5DCED0;
  border: 1px solid #5DCED0;
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  border-radius: 50%;
}
.ysk-top-interview__list .swiper-button-prev::after,
.ysk-top-interview__list .swiper-button-next::after {
  position: absolute;
  top: 50%;
  left: 50%;
  color: #ffffff;
  font-size: 1.5em;
  z-index: 3;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.ysk-top-interview__list .swiper-button-prev:hover::before,
.ysk-top-interview__list .swiper-button-next:hover::before {
  background: #ffffff;
  border-color: #5DCED0;
}
.ysk-top-interview__list .swiper-button-prev:hover::after,
.ysk-top-interview__list .swiper-button-next:hover::after {
  color: #5DCED0;
}
.ysk-top-interview__list .swiper-button-prev:after {
  content: "\e902";
  font-family: "icomoon" !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.ysk-top-interview__list .swiper-button-prev::after {
  -webkit-transform: translate(-60%, -50%);
          transform: translate(-60%, -50%);
}
.ysk-top-interview__list .swiper-button-next:after {
  content: "\e901";
  font-family: "icomoon" !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.ysk-top-interview__list .swiper-button-next::after {
  -webkit-transform: translate(-40%, -50%);
          transform: translate(-40%, -50%);
}
.ysk-top-interview__list .swiper-navigation-icon {
  display: none !important;
}
.ysk-top-interview__list .swiper-scrollbar {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: calc(100% - 102px - 1em);
  height: 6px;
  z-index: 1;
  background: #f6f6f6;
}
@media (min-width: 1176px) {
  .ysk-top-interview__list .swiper-scrollbar {
    width: calc(100% - 136px - 1em);
    height: 8px;
  }
}
.ysk-top-interview__list .swiper-scrollbar-drag {
  background: #C9CED2;
  height: 6px;
  cursor: pointer;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
@media (min-width: 1176px) {
  .ysk-top-interview__list .swiper-scrollbar-drag {
    height: 8px;
  }
}
.ysk-top-interview__list .swiper-scrollbar-drag:hover {
  background-color: #5DCED0;
}

.ysk-top-interview .swiper-slide {
  padding-left: 2%;
}
.ysk-top-interview .members-box .members-box__txt__catch {
  background-color: #E5FDFD;
  display: block;
}
@media (min-width: 1176px) {
  .ysk-top-interview .members-box .members-box__txt__catch {
    width: 100%;
  }
}
.ysk-top-interview .members-box .members-box__txt__catch > p {
  font-size: 1.4em;
}
.ysk-top-interview .members-box .members-box__txt__catch .members-box__txt__info {
  margin-top: 1em;
}
@media (min-width: 768px) {
  .ysk-top-interview .members-box .members-box__txt__catch .members-box__txt__info .members-box__txt__ttl {
    font-size: clamp(20px, 4.17vw, 22px);
  }
}
@media (min-width: 768px) {
  .ysk-top-interview .members-box .members-box__txt__catch .members-box__txt__info .members-box__txt__position {
    font-size: clamp(10px, 1.3vw, 15px);
  }
}

/*--------------------------------------------------------------------/
	ysk-top-interview swiper overwrite
/--------------------------------------------------------------------*/
.ysk-top-interview__list .swiper-button-prev,
.ysk-top-interview__list .swiper-button-next {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  top: var(--swiper-navigation-top-offset, 50%);
  left: var(--swiper-navigation-sides-offset, 4px);
  right: auto;
  bottom: auto;
}

.ysk-top-interview__list .swiper-button-next {
  left: auto;
  right: var(--swiper-navigation-sides-offset, 4px);
}

.l-cont_xxl.swiper-btn-wrap {
  position: absolute;
  top: 15em;
  left: 0;
  right: 0;
  margin: auto;
  width: 100%;
  max-width: 1655px;
}
@media (max-width: 1670px) {
  .l-cont_xxl.swiper-btn-wrap {
    width: 100%;
    max-width: 1620px;
  }
}
@media (max-width: 1650px) {
  .l-cont_xxl.swiper-btn-wrap {
    width: 100%;
    top: 16vw;
    padding: 0;
    max-width: 1535px;
  }
}
@media (max-width: 1553px) {
  .l-cont_xxl.swiper-btn-wrap {
    width: 90%;
    top: 16vw;
    max-width: 1375px;
  }
}
@media (max-width: 767px) {
  .l-cont_xxl.swiper-btn-wrap {
    width: 95%;
    top: 22vw;
  }
}
@media (max-width: 576px) {
  .l-cont_xxl.swiper-btn-wrap {
    width: 95%;
    top: 47vw;
  }
}

.swiper-btn-wrap__inner {
  position: relative;
}

/*--------------------------------------------------------------------/
	top-company
/--------------------------------------------------------------------*/
.ysk-top-company {
  position: relative;
  z-index: 2;
  background-color: #ffffff;
}
@media (min-width: 768px) {
  .ysk-top-company {
    padding-top: clamp(6em, 9vw, 9em);
    padding-bottom: clamp(6em, 9vw, 9em);
  }
}
@media (min-width: 768px) {
  .ysk-top-company {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
@media (max-width: 767px) {
  .ysk-top-company {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    -ms-grid-rows: auto 1fr;
    grid-template-rows: auto 1fr;
  }
  .ysk-top-company > *:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .ysk-top-company > *:nth-child(2) {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
  }
}
.ysk-top-company .l-cont_xxl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.ysk-top-company__icon {
  position: absolute;
  top: 0;
  left: 0;
  width: 20%;
  max-width: 300px;
  z-index: 0;
}
.ysk-top-company__img {
  position: relative;
  background: #ffffff;
  aspect-ratio: 3/2;
}
@media (min-width: 768px) {
  .ysk-top-company__img {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
  }
}
@media (max-width: 767px) {
  .ysk-top-company__img {
    -ms-grid-row: 2;
    -ms-grid-row-span: 1;
    grid-row: 2/3;
    width: 100%;
  }
}
.ysk-top-company__img li {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.ysk-top-company__img li img {
  display: none;
}
.ysk-top-company__img li img.is-active {
  display: block;
}

.ysk-top-company__txt {
  position: relative;
  z-index: 2;
}
@media (min-width: 768px) {
  .ysk-top-company__txt {
    width: 60%;
  }
}
@media (min-width: 1176px) {
  .ysk-top-company__txt {
    width: 48%;
    width: 50%;
  }
}
@media (max-width: 767px) {
  .ysk-top-company__txt {
    -ms-grid-column: 1;
    grid-column: 1;
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    grid-row: 1/2;
    width: 100%;
  }
}
.ysk-top-company__txt__inner {
  padding: 5vw;
}
@media (min-width: 1176px) {
  .ysk-top-company__txt__txt {
    font-size: clamp(16px, 1.48vw, 18px);
  }
}
@media (min-width: 1553px) {
  .ysk-top-company__txt__txt {
    font-size: 1.13rem;
  }
}

.ysk-top-company__txt__list {
  margin-top: 2em;
  border-top: 1px solid #C9CED2;
}
@media (min-width: 1553px) {
  .ysk-top-company__txt__list {
    width: 85%;
  }
}
.ysk-top-company__txt__list li {
  border-bottom: 1px solid #C9CED2;
}
.ysk-top-company__txt__list li a {
  color: #101010;
  padding: 1.5em 0;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto 0.5em 1fr;
  grid-template-columns: auto 1fr;
  -webkit-column-gap: 0.5em;
     -moz-column-gap: 0.5em;
          column-gap: 0.5em;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  -webkit-transform-origin: left;
          transform-origin: left;
  font-size: clamp(13.5px, 4.82vw, 20px);
  font-weight: 700;
  line-height: 1;
  text-decoration: none !important;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
@media (min-width: 768px) {
  .ysk-top-company__txt__list li a {
    font-size: clamp(16px, 2.08vw, 24px);
  }
}
@media (min-width: 1553px) {
  .ysk-top-company__txt__list li a {
    font-size: 1.5em;
  }
}
.ysk-top-company__txt__list li a .is-txt span {
  display: block;
}
.ysk-top-company__txt__list li a .is-txt em {
  display: block;
  text-transform: capitalize;
  color: #5DCED0;
  font-size: 0.7em;
  margin-top: 1em;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1;
}
.ysk-top-company__txt__list li a i {
  position: relative;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-size: 1em;
  width: 2em;
  height: 2em;
  content: "";
  background: #ffffff;
  border-radius: 50%;
  -ms-grid-column-align: end;
      justify-self: end;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.ysk-top-company__txt__list li a i::before {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  color: #5DCED0;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.ysk-top-company__txt__list li a:hover {
  color: #ffffff;
  background-color: #5DCED0;
  width: calc(100% + 2em);
  padding-left: 2em;
  padding-right: 1em;
}
.ysk-top-company__txt__list li a:hover em {
  color: #ffffff;
}

.ysk-top-company .is-btn {
  margin-top: 2em;
}

/*--------------------------------------------------------------------/
	top-ourwork
/--------------------------------------------------------------------*/
.ysk-top-ourwork {
  background-color: #E5FDFD;
}
.ysk-top-ourwork__head {
  padding-top: clamp(3em, 6vw, 6em);
  padding-bottom: clamp(2em, 3vw, 3em);
}
@media (min-width: 768px) {
  .ysk-top-ourwork__head {
    padding-top: clamp(6em, 9vw, 9em);
  }
}
@media (min-width: 1176px) {
  .ysk-top-ourwork__head__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-column-gap: 2%;
       -moz-column-gap: 2%;
            column-gap: 2%;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.ysk-top-ourwork__head__ttl {
  margin-bottom: clamp(1.5em, 2vw, 2em);
  line-height: 1;
}
@media (min-width: 1176px) {
  .ysk-top-ourwork__head__ttl {
    width: 50%;
  }
}
.ysk-top-ourwork__head__ttl em {
  display: block;
  text-transform: capitalize;
  font-style: italic;
  font-weight: 500;
  font-family: 'Cormorant Garamond', sans-serif;
  font-size: clamp(32px, 11.43vw, 60px);
}
@media (min-width: 1176px) {
  .ysk-top-ourwork__head__ttl em {
    font-size: clamp(60px, 5.56vw, 130px);
  }
}
.ysk-top-ourwork__head__ttl b {
  display: block;
  margin-top: 0.2em;
  font-weight: 600;
  font-size: clamp(10px, 3.57vw, 18px);
}
@media (min-width: 1176px) {
  .ysk-top-ourwork__head__ttl b {
    font-size: clamp(18px, 1.67vw, 32px);
  }
}
.ysk-top-ourwork__head__txt {
  font-size: clamp(9.5px, 3.39vw, 14px);
}
@media (min-width: 1176px) {
  .ysk-top-ourwork__head__txt {
    width: 50%;
    font-size: clamp(13px, 1.2vw, 20px);
  }
}

.ysk-top-ourwork__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (min-width: 768px) {
  .ysk-top-ourwork__list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
@media (min-width: 768px) {
  .ysk-top-ourwork__list li {
    width: 50%;
  }
}
.ysk-top-ourwork__list li a {
  position: relative;
  display: block;
  padding: clamp(3em, 12vw, 10em) 5%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-decoration: none !important;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
@media (min-width: 768px) {
  .ysk-top-ourwork__list li a {
    padding: clamp(3em, 9vw, 9em) 5%;
  }
}
.ysk-top-ourwork__list li a:hover .is-bg img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.ysk-top-ourwork__list li .is-txt {
  position: relative;
  width: 100%;
  text-align: left;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.ysk-top-ourwork__list li .is-txt h3 {
  position: relative;
  margin-bottom: 0.5em;
  color: #ffffff;
  font-size: clamp(14px, 5vw, 30px);
  font-weight: 500;
  line-height: 1;
}
@media (min-width: 768px) {
  .ysk-top-ourwork__list li .is-txt h3 {
    font-size: clamp(20px, 2.6vw, 48px);
  }
}
.ysk-top-ourwork__list li .is-txt h3 i {
  position: absolute;
  top: 100%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 16px;
  width: 32px;
  height: 32px;
  content: "";
  background: #ffffff;
  border-radius: 50%;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
@media (min-width: 768px) {
  .ysk-top-ourwork__list li .is-txt h3 i {
    font-size: 20px;
    width: 40px;
    height: 40px;
  }
}
@media (min-width: 1553px) {
  .ysk-top-ourwork__list li .is-txt h3 i {
    font-size: 30px;
    width: 60px;
    height: 60px;
  }
}
.ysk-top-ourwork__list li .is-txt h3 i::before {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  color: #5DCED0;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.ysk-top-ourwork__list li .is-txt p {
  font-style: italic;
  text-transform: capitalize;
  color: #ffffff;
  font-size: clamp(10px, 3.57vw, 20px);
  letter-spacing: 0;
  line-height: 1;
  font-weight: 500;
  font-family: 'Cormorant Garamond', sans-serif;
}
@media (min-width: 768px) {
  .ysk-top-ourwork__list li .is-txt p {
    font-size: clamp(18px, 2.34vw, 32px);
  }
}
.ysk-top-ourwork__list li .is-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}
.ysk-top-ourwork__list li .is-bg img {
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

/*--------------------------------------------------------------------/
	top-blog
/--------------------------------------------------------------------*/
.ysk-top-blog {
  background-color: #ffffff;
}
.ysk-top-blog__head {
  padding-top: clamp(3em, 6vw, 6em);
  padding-bottom: clamp(2em, 3vw, 3em);
}
@media (min-width: 768px) {
  .ysk-top-blog__head {
    padding-top: clamp(6em, 9vw, 9em);
  }
}
@media (min-width: 1176px) {
  .ysk-top-blog__head__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-column-gap: 2%;
       -moz-column-gap: 2%;
            column-gap: 2%;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.ysk-top-blog__head__ttl {
  margin-bottom: clamp(1.5em, 2vw, 2em);
  line-height: 1;
}
@media (min-width: 1176px) {
  .ysk-top-blog__head__ttl {
    width: 50%;
  }
}
.ysk-top-blog__head__ttl em {
  display: block;
  text-transform: capitalize;
  font-style: italic;
  font-weight: 500;
  font-family: 'Cormorant Garamond', sans-serif;
  font-size: clamp(32px, 11.43vw, 60px);
}
@media (min-width: 1176px) {
  .ysk-top-blog__head__ttl em {
    font-size: clamp(60px, 5.56vw, 130px);
  }
}
.ysk-top-blog__head__ttl b {
  display: block;
  margin-top: 0.2em;
  font-weight: 600;
  font-size: clamp(10px, 3.57vw, 18px);
}
@media (min-width: 1176px) {
  .ysk-top-blog__head__ttl b {
    font-size: clamp(18px, 1.67vw, 32px);
  }
}
.ysk-top-blog__head__txt {
  font-size: clamp(9.5px, 3.39vw, 14px);
}
@media (min-width: 1176px) {
  .ysk-top-blog__head__txt {
    width: 50%;
    font-size: clamp(13px, 1.2vw, 20px);
  }
}
.ysk-top-blog .is-btn {
  margin-top: 1em;
}

@media (min-width: 768px) {
  .ysk-top-blog__list > li {
    float: left;
    width: 50%;
  }
}
.ysk-top-blog__list > li a {
  text-decoration: none !important;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.ysk-top-blog__list > li a:hover .is-img img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.ysk-top-blog__list > li a:hover .is-img i {
  background-color: #2BBABD;
}
.ysk-top-blog__list > li .is-txt {
  padding-top: 0.5em;
  padding-left: 1em;
  padding-bottom: 0.5em;
}
@media (min-width: 768px) {
  .ysk-top-blog__list > li .is-txt {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.ysk-top-blog__list > li .is-txt time {
  color: #5DCED0;
  font-size: clamp(12px, 4.29vw, 20px);
}
@media (min-width: 1176px) {
  .ysk-top-blog__list > li .is-txt time {
    font-size: 1.25rem;
  }
}
.ysk-top-blog__list > li .is-txt h3 {
  margin-bottom: 0.5em;
  font-size: clamp(12px, 4.29vw, 20px);
  font-weight: 500;
  line-height: 1;
}
.ysk-top-blog__list > li .is-txt p {
  text-transform: capitalize;
  margin-top: 0.75em;
  font-size: clamp(8px, 2.86vw, 14px);
  letter-spacing: 0;
  line-height: 1;
  font-weight: 500;
  font-family: 'Cormorant Garamond', sans-serif;
}
@media (min-width: 1176px) {
  .ysk-top-blog__list > li .is-txt p {
    font-size: 0.88rem;
  }
}
.ysk-top-blog__list > li .is-txt .tags-list {
  margin-top: 0.75em;
}
.ysk-top-blog__list > li .is-txt .tags-list li {
  display: inline-block;
}
.ysk-top-blog__list > li .is-txt .tags-list li .tag {
  padding: 0.2em;
  min-width: 120px;
  background-color: #efefef;
  display: inline-block;
  border-radius: 20px;
  text-align: center;
  color: #ffffff;
  font-size: clamp(8px, 2.86vw, 14px);
}
@media (min-width: 1176px) {
  .ysk-top-blog__list > li .is-txt .tags-list li .tag {
    font-size: 0.88rem;
  }
}
.ysk-top-blog__list > li .is-txt .tags-list li .tag.is-c1 {
  background-color: #44D8A4;
}
.ysk-top-blog__list > li .is-txt .tags-list li .tag.is-c2 {
  background-color: #5DCED0;
}
.ysk-top-blog__list > li .is-img {
  overflow: hidden;
}
.ysk-top-blog__list > li .is-img img {
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.ysk-top-blog__list > li .tags-list .tag {
  padding: 10px;
  min-width: 120px;
}
.ysk-top-blog__list > li .is-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}
.ysk-top-blog__list > li .is-bg img {
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
@media (min-width: 768px) {
  .ysk-top-blog__list > li:nth-child(1) {
    border-right: 1px solid #000000;
    -o-border-image: linear-gradient(to bottom, #ffffff, #B0DBD8, #ffffff) 1;
       border-image: -webkit-gradient(linear, left top, left bottom, from(#ffffff), color-stop(#B0DBD8), to(#ffffff)) 1;
       border-image: linear-gradient(to bottom, #ffffff, #B0DBD8, #ffffff) 1;
    padding-right: 1.5em;
  }
}
.ysk-top-blog__list > li:nth-child(1) .is-cst {
  display: block;
}
.ysk-top-blog__list > li:nth-child(1) .is-cst .is-txt {
  padding-left: 0;
  display: block;
}
@media (min-width: 768px) {
  .ysk-top-blog__list > li:nth-child(n+2) {
    padding-left: 1.5em;
  }
  .ysk-top-blog__list > li:nth-child(n+2) .is-cst {
    background-color: #EBF8F7;
  }
}
@media (min-width: 768px) and (min-width: 768px) {
  .ysk-top-blog__list > li:nth-child(n+2) .is-cst {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media (min-width: 768px) {
  .ysk-top-blog__list > li:nth-child(n+2) .is-cst > a {
    width: 40%;
  }
  .ysk-top-blog__list > li:nth-child(n+2) .is-cst .is-txt p {
    display: none;
  }
}
@media (min-width: 768px) {
  .ysk-top-blog__list > li:nth-child(3) {
    margin-top: 1.5em;
  }
}

/*--------------------------------------------------------------------/
	top-introduction
/--------------------------------------------------------------------*/
.top-introduction__head {
  background: #ffffff;
  padding-top: clamp(3em, 6vw, 6em);
  padding-bottom: clamp(2em, 3vw, 3em);
}
@media (min-width: 768px) {
  .top-introduction__head {
    padding-top: clamp(6em, 9vw, 9em);
  }
}
@media (min-width: 1176px) {
  .top-introduction__head__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-column-gap: 2%;
       -moz-column-gap: 2%;
            column-gap: 2%;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.top-introduction__head__ttl {
  margin-bottom: clamp(1.5em, 2vw, 2em);
  line-height: 1;
}
@media (min-width: 1176px) {
  .top-introduction__head__ttl {
    width: 50%;
  }
}
.top-introduction__head__ttl em {
  display: block;
  text-transform: capitalize;
  font-style: italic;
  font-weight: 500;
  font-family: 'Cormorant Garamond', sans-serif;
  font-size: clamp(32px, 11.43vw, 60px);
}
@media (min-width: 1176px) {
  .top-introduction__head__ttl em {
    font-size: clamp(60px, 5.56vw, 130px);
  }
}
.top-introduction__head__ttl b {
  display: block;
  margin-top: 0.2em;
  font-weight: 600;
  font-size: clamp(10px, 3.57vw, 18px);
}
@media (min-width: 1176px) {
  .top-introduction__head__ttl b {
    font-size: clamp(18px, 1.67vw, 32px);
  }
}
.top-introduction__head__txt {
  font-size: clamp(9.5px, 3.39vw, 14px);
}
@media (min-width: 1176px) {
  .top-introduction__head__txt {
    width: 50%;
    font-size: clamp(13px, 1.2vw, 20px);
  }
}

.top-introduction__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (min-width: 768px) {
  .top-introduction__list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
@media (min-width: 768px) {
  .top-introduction__list li {
    width: 50%;
  }
}
.top-introduction__list li.is-company a {
  color: #ffffff;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.top-introduction__list li.is-company a .is-txt h3 {
  border-color: #ffffff;
}
.top-introduction__list li.is-company a .is-txt h3 i::before {
  color: #5DCED0;
}
.top-introduction__list li.is-future a {
  color: #101010;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.top-introduction__list li.is-future a .is-txt h3 {
  border-color: #101010;
}
.top-introduction__list li.is-future a .is-txt h3 i::before {
  color: #73DADC;
}
.top-introduction__list li a {
  position: relative;
  display: block;
  padding: clamp(3em, 12vw, 10em) 5%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none !important;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
@media (min-width: 768px) {
  .top-introduction__list li a {
    padding: clamp(3em, 9vw, 9em) 5%;
  }
}
.top-introduction__list li a:hover .is-bg img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.top-introduction__list li .is-txt {
  position: relative;
  width: 50%;
  text-align: center;
  z-index: 2;
  max-width: 340px;
}
@media (min-width: 1921px) {
  .top-introduction__list li .is-txt {
    max-width: 17.7vw;
  }
}
.top-introduction__list li .is-txt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.top-introduction__list li .is-txt h3 {
  position: relative;
  padding-bottom: 0.8em;
  margin-bottom: 0.75em;
  border-bottom: 1px solid;
  font-size: clamp(14px, 5vw, 30px);
  font-weight: 500;
  line-height: 1;
}
@media (min-width: 768px) {
  .top-introduction__list li .is-txt h3 {
    font-size: clamp(20px, 2.6vw, 48px);
  }
}
.top-introduction__list li .is-txt h3 i {
  position: absolute;
  top: 100%;
  left: calc(100% + 0.75em);
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 16px;
  width: 32px;
  height: 32px;
  content: "";
  background: #ffffff;
  border-radius: 50%;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
@media (min-width: 768px) {
  .top-introduction__list li .is-txt h3 i {
    font-size: 20px;
    width: 40px;
    height: 40px;
  }
}
@media (min-width: 1553px) {
  .top-introduction__list li .is-txt h3 i {
    font-size: 30px;
    width: 60px;
    height: 60px;
  }
}
.top-introduction__list li .is-txt h3 i::before {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.top-introduction__list li .is-txt p {
  font-style: italic;
  text-transform: capitalize;
  font-size: clamp(10px, 3.57vw, 20px);
  letter-spacing: 0;
  line-height: 1;
  font-weight: 500;
  font-family: 'Cormorant Garamond', sans-serif;
}
@media (min-width: 768px) {
  .top-introduction__list li .is-txt p {
    font-size: clamp(18px, 2.34vw, 32px);
  }
}
.top-introduction__list li .is-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}
.top-introduction__list li .is-bg img {
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

/*--------------------------------------------------------------------/
	top works
/--------------------------------------------------------------------*/
.top-works {
  position: relative;
  padding-top: clamp(9em, 20vw, 16em);
  padding-bottom: clamp(6em, 21vw, 9em);
  overflow: hidden;
}
@media (min-width: 768px) {
  .top-works {
    padding-top: clamp(9em, 12vw, 12em);
  }
}
.top-works__inner {
  position: relative;
  z-index: 3;
}

.top-works {
  position: relative;
}
.top-works__inner {
  width: 100%;
  position: relative;
  padding: clamp(3.5em, 7vw, 7em) clamp(1.5em, 8%, 5em) clamp(3em, 6vw, 4em);
  background: rgba(250, 250, 250, 0.9);
  max-width: 640px;
}
@media (min-width: 1921px) {
  .top-works__inner {
    max-width: 33.33vw;
  }
}
.top-works__inner {
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 768px) {
  .top-works__inner {
    padding: clamp(4em, 5vw, 5em) clamp(1.5em, 8%, 6em) clamp(3em, 6vw, 4em);
  }
}
.top-works__ttl {
  position: relative;
  text-align: center;
  margin-bottom: 1em;
  font-size: clamp(12px, 4.29vw, 20px);
}
@media (min-width: 768px) {
  .top-works__ttl {
    font-size: clamp(20px, 2.6vw, 30px);
  }
}
.top-works__ttl .is-add {
  display: block;
  position: absolute;
  bottom: calc(100% - 1.5em);
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: clamp(60px, 50%, 180px);
}
@media (min-width: 768px) {
  .top-works__ttl .is-add {
    width: clamp(60px, 50%, 200px);
  }
}
@media (min-width: 1176px) {
  .top-works__ttl .is-add {
    width: clamp(60px, 50%, 280px);
  }
}
.top-works__ttl em {
  position: relative;
  display: block;
  text-transform: capitalize;
  font-style: italic;
  z-index: 1;
  font-size: 5em;
  font-family: 'Cormorant Garamond', sans-serif;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
}
.top-works__ttl b {
  position: relative;
  display: block;
  color: #5DCED0;
  z-index: 1;
  font-weight: 600;
}
.top-works__txt {
  margin-bottom: clamp(2em, 3vw, 3em);
  font-size: clamp(9.5px, 3.39vw, 18px);
  line-height: 2;
}

.top-works__bg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 200%;
  overflow: hidden;
}
@media (min-width: 768px) {
  .top-works__bg {
    width: 100%;
  }
}
.top-works__bg__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-animation: marquee 20s linear infinite;
          animation: marquee 20s linear infinite;
}
@media (min-width: 768px) {
  .top-works__bg__inner {
    -webkit-animation: marquee2 35s linear infinite;
            animation: marquee2 35s linear infinite;
  }
}
.top-works__bg__inner img {
  width: 100%;
}

/* 左 → 右 or 右 → 左はここで調整 */
@-webkit-keyframes marquee {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0); /* 左の外からスタート */
  }
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%); /* ちょうど1枚分だけ右へ */
  }
}
@keyframes marquee {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0); /* 左の外からスタート */
  }
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%); /* ちょうど1枚分だけ右へ */
  }
}
@-webkit-keyframes marquee2 {
  0% {
    -webkit-transform: translateX(0%);
            transform: translateX(0%); /* 左の外からスタート */
  }
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%); /* ちょうど1枚分だけ右へ */
  }
}
@keyframes marquee2 {
  0% {
    -webkit-transform: translateX(0%);
            transform: translateX(0%); /* 左の外からスタート */
  }
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%); /* ちょうど1枚分だけ右へ */
  }
}
/*--------------------------------------------------------------------/
	top culture
/--------------------------------------------------------------------*/
.top-culture {
  position: relative;
  z-index: 2;
}
@media (min-width: 768px) {
  .top-culture {
    padding-top: clamp(6em, 9vw, 9em);
    padding-bottom: clamp(6em, 9vw, 9em);
  }
}
@media (min-width: 768px) {
  .top-culture {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}
@media (max-width: 767px) {
  .top-culture {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    -ms-grid-rows: auto 1fr;
    grid-template-rows: auto 1fr;
  }
  .top-culture > *:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .top-culture > *:nth-child(2) {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
  }
}
.top-culture__img {
  position: relative;
  background: #ffffff;
  aspect-ratio: 3/2;
}
@media (min-width: 768px) {
  .top-culture__img {
    position: absolute;
    top: 0;
    left: 0;
    width: 68.75%;
  }
}
@media (max-width: 767px) {
  .top-culture__img {
    -ms-grid-row: 2;
    -ms-grid-row-span: 1;
    grid-row: 2/3;
    width: 100%;
  }
}
.top-culture__img li {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.top-culture__img li img {
  display: none;
}
.top-culture__img li img.is-active {
  display: block;
}

.top-culture__txt {
  position: relative;
  padding: clamp(3em, 5vw, 5em) clamp(2em, 8%, 4em);
  background: #ffffff;
  z-index: 2;
}
@media (min-width: 768px) {
  .top-culture__txt {
    width: 60%;
    padding: clamp(2em, 4vw, 4em) clamp(1.5em, 5vw, 3em) clamp(2em, 3vw, 3em) clamp(1.5em, 5vw, 6em);
  }
}
@media (min-width: 1176px) {
  .top-culture__txt {
    width: 48%;
    padding: clamp(3em, 5vw, 5em) clamp(1.5em, 5vw, 3em) clamp(2em, 3vw, 3em) clamp(1.5em, 7vw, 6em);
  }
}
@media (max-width: 767px) {
  .top-culture__txt {
    -ms-grid-column: 1;
    grid-column: 1;
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    grid-row: 1/2;
    width: 100%;
  }
}
.top-culture__txt__ttl {
  margin-bottom: clamp(2em, 3vw, 3em);
}
.top-culture__txt__ttl em {
  position: relative;
  font-style: normal;
  display: block;
  text-transform: capitalize;
  color: #101010;
  font-style: italic;
  margin-bottom: 0.2em;
  font-family: 'Cormorant Garamond', sans-serif;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
  font-size: clamp(32px, 11.43vw, 40px);
}
@media (min-width: 768px) {
  .top-culture__txt__ttl em {
    font-size: clamp(44px, 5.73vw, 110px);
  }
}
@media (min-width: 1176px) {
  .top-culture__txt__ttl em {
    font-size: clamp(52px, 4.81vw, 110px);
  }
}
@media (min-width: 1921px) {
  .top-culture__txt__ttl em {
    font-size: 6.88rem;
  }
}
.top-culture__txt__ttl em span.is-txt {
  font-size: 0.6em;
  font-style: normal;
  text-transform: lowercase;
  font-family: 'Zen Old Mincho', sans-serif;
  font-weight: 400;
}
.top-culture__txt__ttl b {
  display: block;
  color: #5DCED0;
  margin-top: 0.2em;
  line-height: 1;
  font-size: clamp(12px, 4.29vw, 18px);
  font-weight: 600;
}
@media (min-width: 768px) {
  .top-culture__txt__ttl b {
    font-size: clamp(18px, 2.34vw, 32px);
  }
}
@media (min-width: 768px) {
  .top-culture__txt__ttl b {
    font-size: clamp(20px, 1.85vw, 32px);
  }
}
@media (min-width: 1553px) {
  .top-culture__txt__ttl b {
    font-size: 2rem;
  }
}
@media (min-width: 1176px) {
  .top-culture__txt__txt {
    font-size: clamp(16px, 1.48vw, 18px);
  }
}
@media (min-width: 1553px) {
  .top-culture__txt__txt {
    font-size: 1.13rem;
  }
}

.top-culture__txt__list {
  margin-top: 2em;
  border-top: 1px solid #C9CED2;
}
@media (min-width: 1553px) {
  .top-culture__txt__list {
    width: 85%;
  }
}
.top-culture__txt__list li {
  border-bottom: 1px solid #C9CED2;
}
.top-culture__txt__list li a {
  color: #101010;
  padding: 1.5em 0;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto 0.5em 1fr;
  grid-template-columns: auto 1fr;
  -webkit-column-gap: 0.5em;
     -moz-column-gap: 0.5em;
          column-gap: 0.5em;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  -webkit-transform-origin: left;
          transform-origin: left;
  font-size: clamp(13.5px, 4.82vw, 20px);
  font-weight: 700;
  line-height: 1;
  text-decoration: none !important;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
@media (min-width: 768px) {
  .top-culture__txt__list li a {
    font-size: clamp(16px, 2.08vw, 24px);
  }
}
@media (min-width: 1553px) {
  .top-culture__txt__list li a {
    font-size: 1.5em;
  }
}
.top-culture__txt__list li a .is-txt span {
  display: block;
}
.top-culture__txt__list li a .is-txt em {
  display: block;
  text-transform: capitalize;
  color: #5DCED0;
  font-size: 0.7em;
  margin-top: 1em;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1;
}
.top-culture__txt__list li a i {
  position: relative;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-size: 1em;
  width: 2em;
  height: 2em;
  content: "";
  background: #ffffff;
  border-radius: 50%;
  -ms-grid-column-align: end;
      justify-self: end;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.top-culture__txt__list li a i::before {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  color: #5DCED0;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.top-culture__txt__list li a:hover {
  color: #ffffff;
  background-color: #5DCED0;
  width: calc(100% + 2em);
  padding-left: 2em;
  padding-right: 1em;
}
.top-culture__txt__list li a:hover em {
  color: #ffffff;
}
/*# sourceMappingURL=top.css.map */