@charset "UTF-8";
/*
  File Name   : top.css
  Description : Write top content styles
*/
/* TOP 共通パーツ
============================================================ */
.top .header {
  opacity: 0;
  -webkit-animation: topHeaderFadeIn 1.2s ease-in 1.5s forwards;
          animation: topHeaderFadeIn 1.2s ease-in 1.5s forwards;
}
@-webkit-keyframes topHeaderFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes topHeaderFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.top .header:not(.isScrolled):not(.isMenuOpen) {
  background-color: transparent;
}
.top .header:not(.isScrolled):not(.isMenuOpen) .header-logoInner > img.default {
  opacity: 0;
}
.top .header:not(.isScrolled):not(.isMenuOpen) .header-logoInner > img.forTop {
  opacity: 1;
}
@media print, screen and (min-width: 1025px) {
  .top:not(.isScrolled) .header-logo {
    position: relative;
    max-width: 360px;
    height: 100%;
  }
  .top:not(.isScrolled) .header-logoInner {
    width: 100%;
    top: 20px;
    left: 0;
  }
  .top:not(.isScrolled) .header-menu .header-nav .header-nav-list > li .menuTitle {
    color: #fff;
    text-shadow: 0px 0px 2px rgba(3, 23, 31, 0.75);
  }
}

.top-moreBtn {
  max-width: 280px;
}

.top-contentsContainer {
  max-width: calc(1400px + (var(--sidePadding_base) * 2));
  margin: 0 auto 0;
  padding: 0 var(--sidePadding_base);
}
@media only screen and (max-width: 1024px) {
  .top-contentsContainer {
    padding: 0 var(--sidePadding_base_mbl);
  }
}
.top-contentsContainer > .lay-contentsContainer {
  padding-left: 0;
  padding-right: 0;
}

/* KV
============================================================ */
.top-kv {
  position: relative;
  overflow: hidden;
  background-color: var(--color_main);
  /***** SLIDER *****/
  /***** CATCHCOPY *****/
  /***** PICK UP *****/
}
.top-kv .top-kv-slider {
  position: relative;
}
.top-kv .top-kv-slider::before {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: -webkit-linear-gradient(45deg, #231C43, #064A67);
  background: linear-gradient(45deg, #231C43, #064A67);
  opacity: 0.3;
  z-index: 1;
}
.top-kv .top-kv-slider .splide__list {
  width: 100%;
}
.top-kv .top-kv-slider .splide__slide {
  display: block;
  width: 100%;
}
.top-kv .top-kv-slider .splide__slide--pictWrap {
  display: block;
  text-decoration: none;
}
.top-kv .top-kv-slider .splide__slide--pict {
  position: relative;
  display: block;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  min-height: 500px;
  overflow: hidden;
}
.top-kv .top-kv-slider .splide__slide--pict > img {
  position: absolute;
  top: 50%;
  right: 50%;
  -webkit-transform: translate(50%, -50%);
          transform: translate(50%, -50%);
}
.top-kv .top-kv-catchCopy {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.3em;
  width: 100%;
  height: 100%;
  color: #fff;
  font-family: var(--fontFamily_sub);
  font-size: min(4.6vw, 58px);
  width: 100%;
  max-width: calc(var(--width_base) + var(--sidePadding_base) * 2);
  top: 0;
  right: 50%;
  -webkit-transform: translate(50%, 0);
          transform: translate(50%, 0);
  padding: 150px var(--sidePadding_base);
  z-index: 2;
}
@media only screen and (max-width: 1024px) {
  .top-kv .top-kv-catchCopy {
    padding: 150px var(--sidePadding_base_mbl);
  }
}
@media only screen and (min-width: 600px) and (max-width: 1024px) {
  .top-kv .top-kv-catchCopy {
    font-size: clamp(20px, 5.6vw, 58px);
  }
}
@media only screen and (max-width: 599px) {
  .top-kv .top-kv-catchCopy {
    font-size: clamp(20px, 8.8vw, 33px);
  }
}
.top-kv .top-kv-catchCopy .mainTxt,
.top-kv .top-kv-catchCopy .subTxt {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.top-kv .top-kv-catchCopy .mainTxt > .txtRow,
.top-kv .top-kv-catchCopy .subTxt > .txtRow {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.top-kv .top-kv-catchCopy .mainTxt > .txtRow::after,
.top-kv .top-kv-catchCopy .subTxt > .txtRow::after {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
@media screen {
  .top-kv .top-kv-catchCopy .mainTxt > .txtRow::after,
.top-kv .top-kv-catchCopy .subTxt > .txtRow::after {
    background-color: var(--color_main);
  }
}
.top-kv .top-kv-catchCopy .mainTxt > .txtRow > .txtWrap,
.top-kv .top-kv-catchCopy .subTxt > .txtRow > .txtWrap {
  display: block;
}
.top-kv .top-kv-catchCopy .mainTxt {
  font-size: inherit;
  font-weight: 700;
  line-height: 1.5em;
  letter-spacing: 0.15em;
  text-shadow: 0px 0px 5px rgba(3, 23, 31, 0.7);
}
@media only screen and (max-width: 1024px) {
  .top-kv .top-kv-catchCopy .mainTxt {
    letter-spacing: 0.08em;
    text-shadow: 0px 0px 3px rgba(3, 23, 31, 0.5);
  }
}
.top-kv .top-kv-catchCopy .subTxt {
  font-family: var(--fontFamily_sub_en);
  font-size: 0.67em;
  font-weight: 600;
  line-height: 1.4em;
  letter-spacing: 0.05em;
  text-shadow: 0px 0px 5px rgba(3, 23, 31, 0.7);
}
@media only screen and (max-width: 1024px) {
  .top-kv .top-kv-catchCopy .subTxt {
    font-size: 0.7em;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-shadow: 0px 0px 3px rgba(3, 23, 31, 0.5);
  }
}
@media screen {
  .top-kv .top-kv-catchCopy .txtRow::after {
    -webkit-transform: scale(0, 1);
            transform: scale(0, 1);
    -webkit-transform-origin: left center;
            transform-origin: left center;
    -webkit-animation: passing-bar 1s ease 0.9s normal forwards;
            animation: passing-bar 1s ease 0.9s normal forwards;
  }
  .top-kv .top-kv-catchCopy .txtWrap {
    opacity: 0;
    -webkit-animation: passing-txt 1s ease 0.8s normal forwards;
            animation: passing-txt 1s ease 0.8s normal forwards;
  }
}
@-webkit-keyframes passing-bar {
  0% {
    -webkit-transform-origin: left center;
            transform-origin: left center;
    left: 0;
    -webkit-transform: scale(0, 1);
            transform: scale(0, 1);
  }
  50% {
    -webkit-transform-origin: left center;
            transform-origin: left center;
    left: 0;
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
  55% {
    -webkit-transform-origin: right center;
            transform-origin: right center;
    left: 0;
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
  100% {
    -webkit-transform-origin: right center;
            transform-origin: right center;
    left: auto;
    right: 0;
    -webkit-transform: scale(0, 1);
            transform: scale(0, 1);
  }
}
@keyframes passing-bar {
  0% {
    -webkit-transform-origin: left center;
            transform-origin: left center;
    left: 0;
    -webkit-transform: scale(0, 1);
            transform: scale(0, 1);
  }
  50% {
    -webkit-transform-origin: left center;
            transform-origin: left center;
    left: 0;
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
  55% {
    -webkit-transform-origin: right center;
            transform-origin: right center;
    left: 0;
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
  100% {
    -webkit-transform-origin: right center;
            transform-origin: right center;
    left: auto;
    right: 0;
    -webkit-transform: scale(0, 1);
            transform: scale(0, 1);
  }
}
@-webkit-keyframes passing-txt {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes passing-txt {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.top-kv .top-kv-pickUp {
  position: absolute;
  display: block;
  background: var(--gradient_default);
  width: calc(100% - var(--sidePadding_base));
  max-width: 750px;
  bottom: -20px;
  right: 0;
  z-index: 3;
  -webkit-transition: bottom 0.2s ease-in;
  transition: bottom 0.2s ease-in;
}
@media only screen and (max-width: 1024px) {
  .top-kv .top-kv-pickUp {
    width: calc(100% - var(--sidePadding_base_mbl));
  }
}
.top-kv .top-kv-pickUpInner {
  display: block;
  text-decoration: none;
}
.top-kv .top-kv-pickUp .top-kv-pickUp-hl {
  display: block;
  color: #fff;
  font-family: var(--fontFamily_sub_en);
  font-size: 40px;
  font-weight: 500;
  line-height: 1em;
  letter-spacing: 0.04em;
  margin: -0.5em 0 0;
  text-shadow: 0px 0px 2px rgba(3, 23, 31, 0.4);
}
@media only screen and (max-width: 1024px) {
  .top-kv .top-kv-pickUp .top-kv-pickUp-hl {
    font-size: 35px;
    font-weight: 600;
    text-shadow: 0px 0px 2px rgba(3, 23, 31, 0.3);
  }
}
@media only screen and (max-width: 599px) {
  .top-kv .top-kv-pickUp .top-kv-pickUp-hl {
    text-align: right;
    padding: 0 0.5em 0 0;
  }
}
.top-kv .top-kv-pickUp .top-kv-pickUp-post {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 17px;
  width: 100%;
  min-height: calc(4.7em + 20px);
  padding: 0.75em 1.75em calc(1.75em + 20px);
}
@media only screen and (max-width: 1024px) {
  .top-kv .top-kv-pickUp .top-kv-pickUp-post {
    font-size: 16px;
  }
}
@media only screen and (max-width: 599px) {
  .top-kv .top-kv-pickUp .top-kv-pickUp-post {
    min-height: calc(6.8em + 20px);
    padding: 0em 1.75em calc(1.0em + 20px);
  }
}
.top-kv .top-kv-pickUp .top-kv-pickUp-postInner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  width: 100%;
  gap: 0.75em 1.25em;
  font-size: inherit;
  text-decoration: none;
}
@media only screen and (max-width: 599px) {
  .top-kv .top-kv-pickUp .top-kv-pickUp-postInner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -ms-flex-line-pack: start;
        align-content: flex-start;
  }
}
.top-kv .top-kv-pickUp .top-kv-pickUp-postInner .date,
.top-kv .top-kv-pickUp .top-kv-pickUp-postInner .title {
  color: #fff;
  font-size: inherit;
  line-height: 1.7em;
}
.top-kv .top-kv-pickUp .top-kv-pickUp-postInner .date {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-family: var(--fontFamily_sub);
  font-weight: 700;
  letter-spacing: 0em;
}
@media only screen and (max-width: 599px) {
  .top-kv .top-kv-pickUp .top-kv-pickUp-postInner .date {
    line-height: 1em;
  }
}
.top-kv .top-kv-pickUp .top-kv-pickUp-postInner .title {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  width: 100%;
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-decoration: underline;
  /* ブラウザがサポートしていない場合のフェールセーフ */
  max-height: 1.7em;
}
@media only screen and (max-width: 599px) {
  .top-kv .top-kv-pickUp .top-kv-pickUp-postInner .title {
    -webkit-line-clamp: 2;
    max-height: calc(1.7em * 2);
  }
}
.top-kv .top-kv-pickUp .top-kv-pickUp-postInner:hover {
  opacity: 1 !important;
}
@media print, screen and (min-width: 1025px) {
  .top-kv .top-kv-pickUp .top-kv-pickUp-postInner:hover .top-kv-pickUp-post .title {
    text-decoration: none;
  }
}
@media print, screen and (min-width: 1025px) {
  .top-kv .top-kv-pickUp:hover {
    bottom: -10px;
  }
}
.top-kv .top-kv-pickUp:hover .top-kv-pickUpInner {
  opacity: 1 !important;
}
@media print, screen and (min-width: 1025px) {
  .top-kv .top-kv-pickUp:hover .top-kv-pickUpInner .top-kv-pickUp-post .title {
    text-decoration: none;
  }
}
@media screen {
  .top-kv .top-kv-pickUp {
    opacity: 0;
    -webkit-animation: pickUp-slideIn 0.6s ease-out 1.5s 1 normal forwards;
            animation: pickUp-slideIn 0.6s ease-out 1.5s 1 normal forwards;
  }
}
@-webkit-keyframes pickUp-slideIn {
  0% {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  60% {
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}
@keyframes pickUp-slideIn {
  0% {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  60% {
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}

/* NEWS
============================================================ */
.top-news {
  padding: 131px 0 154px;
}
@media only screen and (max-width: 1024px) {
  .top-news {
    padding: 81px 0 80px;
  }
}
.top-newsInner {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: min(7.8vw, 98px);
  width: 100%;
}
@media only screen and (max-width: 1024px) {
  .top-newsInner {
    grid-template-columns: 100%;
    gap: 20px;
  }
}
.top-news .top-news-headerBlock {
  padding: 20px 0 0;
}
@media only screen and (max-width: 1024px) {
  .top-news .top-news-headerBlock {
    padding: 0 0 0;
  }
}
.top-news .top-news-nav {
  display: block;
  background-color: #E2F1F7;
  padding: 15px;
  margin: 52px 0 0;
}
@media only screen and (max-width: 1024px) {
  .top-news .top-news-nav {
    margin-top: 30px;
  }
}
.top-news .top-news-nav .top-news-nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 5px;
  width: 100%;
}
@media only screen and (max-width: 1024px) {
  .top-news .top-news-nav .top-news-nav-list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 5px;
  }
}
.top-news .top-news-nav .top-news-nav-list > li {
  display: block;
}
@media only screen and (max-width: 1024px) {
  .top-news .top-news-nav .top-news-nav-list > li {
    width: calc(50% - (5px * 0.5));
  }
  .top-news .top-news-nav .top-news-nav-list > li:first-child {
    width: 100%;
  }
}
.top-news .top-news-nav .top-news-nav-list > li > a {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  min-width: 10em;
  height: 100%;
  color: var(--color_font);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4em;
  text-align: justify;
  text-decoration: none;
  padding: 0.55em 0.5em 0.55em 2.25em;
  -webkit-transition: background-color 0.2s ease-in-out;
  transition: background-color 0.2s ease-in-out;
}
.top-news .top-news-nav .top-news-nav-list > li > a::before {
  content: "";
  position: absolute;
  display: block;
  width: 0.375em;
  height: auto;
  aspect-ratio: 1/1;
  top: 50%;
  left: 1.25em;
  background-color: var(--color_main);
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
}
.top-news .top-news-nav .top-news-nav-list > li > a.active {
  background-color: #fff;
}
.top-news .top-news-nav .top-news-nav-list > li > a:hover {
  opacity: 1 !important;
}
@media print, screen and (min-width: 1025px) {
  .top-news .top-news-nav .top-news-nav-list > li > a:hover {
    background-color: #fff;
  }
}
.top-news .top-news-list-wrap .com-news-list > ul {
  border-top: none;
}
.top-news .top-news-list-wrap .com-news-list > ul > li > a {
  padding-right: 0;
}
.top-news .top-news-list-wrap .com-news-list > ul > li > a .txtGroup .title {
  padding: 0 3.5em 0 0;
}
@media only screen and (max-width: 599px) {
  .top-news .top-news-list-wrap .com-news-list > ul > li > a .txtGroup .title {
    width: 100%;
    padding: 0 1.75em 0 0;
  }
}
.top-news .top-news-list-wrap .com-news-list > ul > li > a .txtGroup .title::after {
  right: 1.5em;
}
@media only screen and (max-width: 1024px) {
  .top-news .top-news-list-wrap .com-news-list > ul > li > a .txtGroup .title::after {
    right: 0;
  }
}
.top-news .top-news-list-wrap .com-noneText {
  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;
  -ms-flex-line-pack: center;
      align-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
  height: 100%;
  padding: 3em 0 1em;
}
.top-news .top-moreBtn {
  margin: 50px auto 0;
  max-width: 250px;
  min-height: 60px;
}
@media only screen and (max-width: 1024px) {
  .top-news .top-moreBtn {
    margin-top: 41px;
  }
}

/* ABOUT US
============================================================ */
.top-aboutUS {
  padding: 171px 0 145px;
  overflow: hidden;
  background: -webkit-linear-gradient(bottom, #fff 0%, #fff calc(142px + 10.84%), #dee8f2 100%);
  background: linear-gradient(0deg, #fff 0%, #fff calc(142px + 10.84%), #dee8f2 100%);
}
@media only screen and (max-width: 1024px) {
  .top-aboutUS {
    padding: 80px 0 80px;
    background: -webkit-linear-gradient(bottom, #fff 0%, #fff calc(80px + 10.84%), #dee8f2 100%);
    background: linear-gradient(0deg, #fff 0%, #fff calc(80px + 10.84%), #dee8f2 100%);
  }
}
.top-aboutUSInner {
  position: relative;
}
.top-aboutUSInner::before {
  content: "";
  position: absolute;
  display: block;
  width: min(26.72vw, 398px);
  height: auto;
  aspect-ratio: 1/1;
  top: -84px;
  left: 0;
  -webkit-mask-image: url(../images/common/logo_icon.svg);
          mask-image: url(../images/common/logo_icon.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: contain;
          mask-size: contain;
  background-color: rgba(1, 123, 173, 0.04);
  pointer-events: none;
}
@media only screen and (max-width: 1024px) {
  .top-aboutUSInner::before {
    width: clamp(189px, 59.2vw, 300px);
    top: -61px;
    left: 0;
    -webkit-transform: translate(-15.315%, 0%);
            transform: translate(-15.315%, 0%);
  }
}
.top-aboutUS .top-aboutUS-contents {
  position: relative;
  z-index: 1;
}
.top-aboutUS .top-aboutUS-hl {
  margin: 0 auto 0;
}
.top-aboutUS .top-aboutUS-description {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.7em;
  letter-spacing: 0.06em;
  text-indent: 0.06em;
  text-align: center;
  margin: 51px 0 0;
}
@media only screen and (max-width: 1024px) {
  .top-aboutUS .top-aboutUS-description {
    font-size: 18px;
    line-height: 1.75em;
    letter-spacing: 0.08em;
    text-indent: 0.08em;
    margin: 40px 0 0;
  }
}
.top-aboutUS .top-moreBtn {
  margin: 58px auto 0;
}
@media only screen and (max-width: 1024px) {
  .top-aboutUS .top-moreBtn {
    margin-top: 47px;
  }
}
.top-aboutUS .top-aboutUS-sliderWrap {
  position: relative;
  width: 100%;
  height: max(480px, 16.37666325vw);
  aspect-ratio: 1920/480;
  margin: 50px 0 0;
}
@media only screen and (max-width: 1024px) {
  .top-aboutUS .top-aboutUS-sliderWrap {
    margin-top: 41px;
    height: 239px;
    aspect-ratio: initial;
  }
}
.top-aboutUS .top-aboutUS-sliderWrap .top-aboutUS-slider {
  position: absolute;
  width: max(2931px, 100%);
  height: auto;
  top: auto;
  bottom: 0;
  right: 50%;
  -webkit-transform: translate(50%, 0);
          transform: translate(50%, 0);
}
@media only screen and (max-width: 1024px) {
  .top-aboutUS .top-aboutUS-sliderWrap .top-aboutUS-slider {
    width: 1456px;
    height: 239px;
  }
}

/* BUSINESSES
============================================================ */
.top-businesses {
  position: relative;
  padding: 148px 0 170px;
  overflow: hidden;
  background: -webkit-linear-gradient(156deg, #0f5e7e 0%, #4d96b5 81.6%, #68c7eb 100%);
  background: linear-gradient(294deg, #0f5e7e 0%, #4d96b5 81.6%, #68c7eb 100%);
  overflow: hidden;
}
@media only screen and (max-width: 1024px) {
  .top-businesses {
    padding: 84px 0 80px;
  }
}
.top-businesses::before {
  content: "";
  position: absolute;
  display: block;
  width: min(64.0vw, 768px);
  height: auto;
  aspect-ratio: 768/646;
  top: 0;
  right: max(0px, calc((100% - 1920px) * 0.5));
  -webkit-transform: translate(20%, -34%) rotate(23deg);
          transform: translate(20%, -34%) rotate(23deg);
  background: url(../images/home/businesses_decore_img_01.svg) no-repeat center/contain;
  opacity: 0.4;
  pointer-events: none;
}
@media only screen and (max-width: 1024px) {
  .top-businesses::before {
    width: clamp(380px, 118.4vw, 750px);
    -webkit-transform: translate(60%, -31%) rotate(23deg);
            transform: translate(60%, -31%) rotate(23deg);
  }
}
@media only screen and (max-width: 599px) {
  .top-businesses .top-businesses-hl .txtEn {
    font-size: clamp(45px, 14.3vw, 60px);
  }
}
.top-businesses .top-businesses-list {
  position: relative;
  margin: 60px 0 0;
}
@media only screen and (min-width: 600px) and (max-width: 1024px) {
  .top-businesses .top-businesses-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 30px;
    width: 100%;
  }
}
@media only screen and (max-width: 599px) {
  .top-businesses .top-businesses-list {
    display: grid;
    grid-template-columns: 100%;
    gap: 31px;
    margin-top: 35px;
  }
}
.top-businesses .businessesBlock {
  display: block;
}
@media only screen and (max-width: 1024px) {
  .top-businesses .businessesBlock {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    border-bottom: 1px solid #fff;
  }
}
@media print, screen and (min-width: 1025px) {
  .top-businesses .businessesBlock__thumbWrap {
    position: absolute;
    width: 80%;
    height: 100%;
    top: 0;
    left: 50%;
    pointer-events: none;
  }
}
@media print, screen and (min-width: 1025px) and (max-width: 1259px) {
  .top-businesses .businessesBlock__thumbWrap {
    left: 45%;
  }
}
@media only screen and (max-width: 1024px) {
  .top-businesses .businessesBlock__thumbWrap {
    width: 100%;
    height: auto;
  }
}
.top-businesses .businessesBlock__thumb {
  position: relative;
  width: 100%;
}
@media print, screen and (min-width: 1025px) {
  .top-businesses .businessesBlock__thumb {
    height: 100%;
    opacity: 0;
    -webkit-transition: opacity 0.6s ease;
    transition: opacity 0.6s ease;
  }
}
.top-businesses .businessesBlock__thumb--pict {
  position: relative;
  display: block;
  overflow: hidden;
  width: 100%;
  height: 100%;
}
@media only screen and (max-width: 1024px) {
  .top-businesses .businessesBlock__thumb--pict {
    width: 100%;
    height: auto;
    aspect-ratio: 335/215;
  }
}
.top-businesses .businessesBlock__thumb--pict > img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 50%;
  right: 50%;
  -webkit-transform: translate(50%, -50%);
          transform: translate(50%, -50%);
  -o-object-position: 0 0;
     object-position: 0 0;
}
.top-businesses .businessesBlock__thumb--title {
  position: absolute;
  display: block;
  width: min(40%, 360px);
  height: auto;
  aspect-ratio: 360/145;
  top: 25px;
  left: 25px;
}
@media only screen and (max-width: 1024px) {
  .top-businesses .businessesBlock__thumb--title {
    width: 40%;
    top: 10px;
    left: 10px;
  }
}
.top-businesses .businessesBlock__txt {
  position: relative;
  display: block;
  width: 50%;
  text-decoration: none;
}
@media print, screen and (min-width: 1025px) and (max-width: 1259px) {
  .top-businesses .businessesBlock__txt {
    width: 45%;
  }
}
@media only screen and (max-width: 1024px) {
  .top-businesses .businessesBlock__txt {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    width: 100%;
    padding: 32px 0 25px;
  }
}
.top-businesses .businessesBlock__txtInner {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1.5em 0;
  width: 100%;
  color: #fff;
  font-size: 18px;
  padding: 1em 5.5em 1em 0;
  min-height: 10.6em;
}
@media only screen and (max-width: 1024px) {
  .top-businesses .businessesBlock__txtInner {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    height: 100%;
    min-height: initial;
  }
}
@media only screen and (min-width: 600px) and (max-width: 1024px) {
  .top-businesses .businessesBlock__txtInner {
    padding: 0 1.5em 0 0;
  }
}
@media only screen and (max-width: 599px) {
  .top-businesses .businessesBlock__txtInner {
    padding: 0 0 0;
  }
}
.top-businesses .businessesBlock__txtInner::after {
  content: "";
  position: absolute;
  display: block;
  width: 0.75em;
  height: 100%;
  top: 0;
  right: 1.75em;
  -webkit-mask-image: url(../images/common/arrow.svg);
          mask-image: url(../images/common/arrow.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: contain;
          mask-size: contain;
  background-color: #fff;
  pointer-events: none;
}
@media only screen and (min-width: 600px) and (max-width: 1024px) {
  .top-businesses .businessesBlock__txtInner::after {
    right: 0;
    -webkit-mask-position: right bottom;
            mask-position: right bottom;
  }
}
@media only screen and (max-width: 599px) {
  .top-businesses .businessesBlock__txtInner::after {
    content: none;
  }
}
.top-businesses .businessesBlock__txt::before, .top-businesses .businessesBlock__txt::after {
  content: "";
  position: absolute;
  display: block;
  width: 1020px;
  height: 100%;
  top: 0;
  right: 0;
  pointer-events: none;
}
@media only screen and (max-width: 1024px) {
  .top-businesses .businessesBlock__txt::before, .top-businesses .businessesBlock__txt::after {
    content: none;
  }
}
.top-businesses .businessesBlock__txt::before {
  border: 1px solid #fff;
  border-right: none;
  border-left: none;
}
.top-businesses .businessesBlock__txt::after {
  background: rgba(255, 255, 255, 0.2);
  mix-blend-mode: overlay;
  opacity: 0;
  -webkit-transition: opacity 0.6s ease;
  transition: opacity 0.6s ease;
}
.top-businesses .businessesBlock__txt--title {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.4em;
  padding: 0 0 0 0.8em;
  margin: -0.2em 0;
}
@media only screen and (max-width: 1024px) {
  .top-businesses .businessesBlock__txt--title {
    font-size: 25px;
  }
}
.top-businesses .businessesBlock__txt--title::before {
  content: "";
  position: absolute;
  display: block;
  width: 0.35em;
  height: auto;
  aspect-ratio: 1/1;
  background-color: #fff;
  top: 50%;
  left: 0;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
}
.top-businesses .businessesBlock__txt--title > span {
  display: block;
}
.top-businesses .businessesBlock__txt--description {
  font-size: inherit;
  font-weight: 500;
  line-height: 1.8em;
  letter-spacing: 0em;
  margin: -0.4em 0;
}
@media only screen and (max-width: 599px) {
  .top-businesses .businessesBlock__txt--description {
    position: relative;
    padding: 0 1.5em 0 0;
  }
  .top-businesses .businessesBlock__txt--description::after {
    content: "";
    position: absolute;
    display: block;
    width: 0.75em;
    height: 100%;
    top: 0;
    right: 0;
    -webkit-mask-image: url(../images/common/arrow.svg);
            mask-image: url(../images/common/arrow.svg);
    -webkit-mask-repeat: no-repeat;
            mask-repeat: no-repeat;
    -webkit-mask-position: center;
            mask-position: center;
    -webkit-mask-size: contain;
            mask-size: contain;
    background-color: #fff;
    pointer-events: none;
  }
}
.top-businesses .businessesBlock:not(:first-child) .businessesBlock__txt::before {
  border-top: none;
}
.top-businesses .businessesBlock .businessesBlock__txt:hover {
  opacity: 1 !important;
}
@media print, screen and (min-width: 1025px) {
  .top-businesses .businessesBlock .businessesBlock__txt:hover::after {
    opacity: 1;
  }
  .top-businesses .businessesBlock .businessesBlock__txt:hover .businessesBlock__txtInner::after {
    -webkit-transform: rotateX(360deg);
            transform: rotateX(360deg);
    -webkit-transition: -webkit-transform 0.8s ease;
    transition: -webkit-transform 0.8s ease;
    transition: transform 0.8s ease;
    transition: transform 0.8s ease, -webkit-transform 0.8s ease;
  }
}
@media print, screen and (min-width: 1025px) {
  .top-businesses .businessesBlock.isActive .businessesBlock__thumb,
.top-businesses .businessesBlock .businessesBlock__thumbWrap:has(+ .businessesBlock__txt:hover) .businessesBlock__thumb {
    opacity: 1;
  }
}

/* WORKS
============================================================ */
.top-works {
  padding: 152px 0 162px;
  background: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#f0efe7));
  background: -webkit-linear-gradient(#fff 0%, #f0efe7 100%);
  background: linear-gradient(#fff 0%, #f0efe7 100%);
}
@media only screen and (max-width: 1024px) {
  .top-works {
    padding: 80px 0 80px;
  }
}
.top-works .top-works-hl {
  margin: 0 auto 0;
}
.top-works .top-works-description {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.7em;
  letter-spacing: 0.06em;
  text-indent: 0.06em;
  text-align: center;
  margin: 50px 0 0;
}
@media only screen and (max-width: 1024px) {
  .top-works .top-works-description {
    font-size: 18px;
    line-height: 1.75em;
    letter-spacing: 0.08em;
    text-indent: 0.08em;
    margin: 40px 0 0;
  }
}
.top-works .top-works-listBlock {
  display: grid;
  grid-template-columns: 100%;
  gap: 60px;
  margin: 56px 0 0;
}
@media only screen and (max-width: 1024px) {
  .top-works .top-works-listBlock {
    gap: 40px;
    margin-top: 46px;
  }
}
.top-works .top-works-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  width: 100%;
}
@media only screen and (min-width: 600px) and (max-width: 1024px) {
  .top-works .top-works-list {
    gap: min(4vw, 40px);
  }
}
@media only screen and (max-width: 599px) {
  .top-works .top-works-list {
    grid-template-columns: 100%;
    gap: 40px;
  }
}
.top-works .top-works-list .worksCatBox {
  display: block;
  width: 100%;
}
@media only screen and (max-width: 599px) {
  .top-works .top-works-list .worksCatBox {
    -webkit-animation-delay: 0 !important;
            animation-delay: 0 !important;
  }
}
.top-works .top-works-list .worksCatBoxInner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  height: 100%;
  text-decoration: none;
}
.top-works .top-works-list .worksCatBox__slider {
  width: 100%;
}
.top-works .top-works-list .worksCatBox__slider .splide__slide {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 440/280;
  overflow: hidden;
}
@media only screen and (max-width: 599px) {
  .top-works .top-works-list .worksCatBox__slider .splide__slide {
    aspect-ratio: 335/230;
  }
}
.top-works .top-works-list .worksCatBox__slider .splide__slide > img {
  position: absolute;
  top: 50%;
  right: 50%;
  -webkit-transform: translate(50%, -50%);
          transform: translate(50%, -50%);
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}
.top-works .top-works-list .worksCatBox__hl {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  display: block;
  position: relative;
}
.top-works .top-works-list .worksCatBox__hl::before, .top-works .top-works-list .worksCatBox__hl::after {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 2px;
  bottom: 0;
  left: 0;
  -webkit-transform-origin: left center;
          transform-origin: left center;
}
.top-works .top-works-list .worksCatBox__hl::before {
  background-color: #A8B4B9;
}
@media only screen and (max-width: 1024px) {
  .top-works .top-works-list .worksCatBox__hl::before {
    content: none;
  }
}
.top-works .top-works-list .worksCatBox__hl::after {
  background: -webkit-linear-gradient(10deg, #3f2e9a 0%, #017bad 100%);
  background: linear-gradient(80deg, #3f2e9a 0%, #017bad 100%);
}
@media print, screen and (min-width: 1025px) {
  .top-works .top-works-list .worksCatBox__hl::after {
    -webkit-transform: scale(0, 1);
            transform: scale(0, 1);
    -webkit-transition: -webkit-transform 0.4s ease-in-out;
    transition: -webkit-transform 0.4s ease-in-out;
    transition: transform 0.4s ease-in-out;
    transition: transform 0.4s ease-in-out, -webkit-transform 0.4s ease-in-out;
  }
}
.top-works .top-works-list .worksCatBox__hl .txtWrap {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  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;
  -ms-flex-line-pack: center;
      align-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
  height: 100%;
  min-height: 3.1em;
  color: var(--color_font);
  font-size: 25px;
  font-weight: 700;
  line-height: 1.4em;
  letter-spacing: 0em;
  text-indent: 0em;
  text-align: center;
  padding: 0.25em 1.75em 0.25em;
}
@media only screen and (min-width: 600px) and (max-width: 1024px) {
  .top-works .top-works-list .worksCatBox__hl .txtWrap {
    font-size: min(2.5vw, 25px);
  }
}
@media only screen and (max-width: 599px) {
  .top-works .top-works-list .worksCatBox__hl .txtWrap {
    font-size: 22px;
    min-height: 2.7em;
  }
}
.top-works .top-works-list .worksCatBox__hl .txtWrap::before, .top-works .top-works-list .worksCatBox__hl .txtWrap::after {
  content: "";
  position: absolute;
  display: block;
}
.top-works .top-works-list .worksCatBox__hl .txtWrap::before {
  width: 1em;
  height: auto;
  aspect-ratio: 1/1;
  top: 50%;
  right: 0;
  background: var(--gradient_default);
  border-radius: 50%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
}
.top-works .top-works-list .worksCatBox__hl .txtWrap::after {
  width: 0.5em;
  height: auto;
  aspect-ratio: 1/1;
  top: 50%;
  right: 0.2em;
  -webkit-mask-image: url(../images/common/arrow.svg);
          mask-image: url(../images/common/arrow.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: contain;
          mask-size: contain;
  background-color: #fff;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
}
.top-works .top-works-list .worksCatBox__hl .txtWrap > span {
  display: block;
}
.top-works .top-works-list .worksCatBoxInner:hover {
  opacity: 1 !important;
}
@media print, screen and (min-width: 1025px) {
  .top-works .top-works-list .worksCatBoxInner:hover .worksCatBox__hl::after {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
  .top-works .top-works-list .worksCatBoxInner:hover .worksCatBox__hl .txtWrap::after {
    -webkit-transform: translate(0, -50%) rotateX(360deg);
            transform: translate(0, -50%) rotateX(360deg);
    -webkit-transition: -webkit-transform 0.8s ease;
    transition: -webkit-transform 0.8s ease;
    transition: transform 0.8s ease;
    transition: transform 0.8s ease, -webkit-transform 0.8s ease;
  }
}
.top-works .top-works-list.sizeL {
  grid-template-columns: repeat(2, 1fr);
}
@media only screen and (min-width: 600px) and (max-width: 1024px) {
  .top-works .top-works-list.sizeL {
    gap: min(4vw, 40px);
  }
}
@media only screen and (max-width: 599px) {
  .top-works .top-works-list.sizeL {
    grid-template-columns: 100%;
    gap: 30px;
  }
}
@media print, screen and (min-width: 600px) {
  .top-works .top-works-list.sizeL .worksCatBox__slider .splide__slide {
    aspect-ratio: 680/380;
  }
}

/* RECRUIT
============================================================ */
.top-recruit {
  padding: 150px 0 0;
}
@media only screen and (max-width: 1024px) {
  .top-recruit {
    padding: 80px 0 0;
  }
}
@media only screen and (max-width: 599px) {
  .top-recruitInner {
    padding: 0 12px 0;
  }
}
.top-recruit .top-recruit-linkBlock {
  position: relative;
  display: grid;
  grid-template-columns: min(46.43%, 650px) 1fr;
}
@media only screen and (max-width: 599px) {
  .top-recruit .top-recruit-linkBlock {
    grid-template-columns: 100%;
    gap: 0;
  }
}
.top-recruit .top-recruit-linkBlock::before {
  content: "";
  position: absolute;
  display: block;
  width: calc(100% - 40px);
  height: calc(100% - 40px);
  top: 50%;
  right: 50%;
  -webkit-transform: translate(50%, -50%);
          transform: translate(50%, -50%);
  border: 1px solid #fff;
  pointer-events: none;
  z-index: 1;
}
@media only screen and (max-width: 1024px) {
  .top-recruit .top-recruit-linkBlock::before {
    width: calc(100% - 15px);
    height: calc(100% - 15px);
  }
}
.top-recruit .top-recruit-linkBlock__pict {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  padding-bottom: min(98.62%, 640px);
  overflow: hidden;
}
@media only screen and (max-width: 599px) {
  .top-recruit .top-recruit-linkBlock__pict {
    height: 300px;
    aspect-ratio: initial;
    padding-bottom: 0;
  }
}
.top-recruit .top-recruit-linkBlock__pict > img {
  position: absolute;
  top: 50%;
  right: 50%;
  -webkit-transform: translate(50%, -50%);
          transform: translate(50%, -50%);
}
.top-recruit .top-recruit-linkBlock__txt {
  position: relative;
  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;
  -ms-flex-line-pack: center;
      align-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
  padding: 60px 60px 60px 40px;
  background: -webkit-linear-gradient(45deg, #271b5f 0%, #027cb1 100%);
  background: linear-gradient(45deg, #271b5f 0%, #027cb1 100%);
}
.top-recruit .top-recruit-linkBlock__txt::before {
  content: "";
  position: absolute;
  display: block;
  width: 50%;
  height: auto;
  aspect-ratio: 1/1;
  right: 0;
  bottom: 0;
  -webkit-mask-image: url(../images/common/logo_icon.svg);
          mask-image: url(../images/common/logo_icon.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: contain;
          mask-size: contain;
  background-color: var(--color_main);
  opacity: 0.25;
}
@media only screen and (max-width: 1024px) {
  .top-recruit .top-recruit-linkBlock__txt::before {
    width: min(62.858%, 375px);
  }
}
@media only screen and (max-width: 1024px) {
  .top-recruit .top-recruit-linkBlock__txt {
    padding: 50px 28px 62px;
  }
}
.top-recruit .top-recruit-linkBlock__txtInner {
  position: relative;
  width: 100%;
  max-width: 546px;
  z-index: 1;
}
@media only screen and (min-width: 600px) and (max-width: 1024px) {
  .top-recruit .top-recruit-linkBlock__txt--hl .txtEn {
    font-size: min(7.5vw, 60px);
  }
}
@media screen and (max-width: 374px) {
  .top-recruit .top-recruit-linkBlock__txt--hl .txtEn {
    font-size: clamp(48px, 15.2vw, 60px);
  }
}
.top-recruit .top-recruit-linkBlock__txt--description {
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.8em;
  letter-spacing: 0.04em;
  text-align: justify;
  margin: 60px 0 0;
}
@media only screen and (max-width: 1024px) {
  .top-recruit .top-recruit-linkBlock__txt--description {
    font-size: 18px;
    line-height: 1.8em;
    margin-top: 36px;
  }
}
.top-recruit .top-recruit-linkBlock__txt .top-moreBtn {
  margin: 56px 0 0;
  background-color: transparent;
  border: 1px solid #fff;
  background: transparent;
}
@media only screen and (max-width: 1024px) {
  .top-recruit .top-recruit-linkBlock__txt .top-moreBtn {
    margin: 35px auto 0;
  }
}

/* INSTAGRAM
============================================================ */
.top-instagram {
  padding: 160px 0 270px;
}
@media only screen and (max-width: 1024px) {
  .top-instagram {
    padding: 123px 0 198px;
  }
}
@media only screen and (max-width: 599px) {
  .top-instagramInner {
    padding: 0 12px;
  }
}
.top-instagram .top-instagram-hl {
  position: relative;
  padding: 0 92px 0;
  margin: 0 auto 0;
}
@media only screen and (max-width: 1024px) {
  .top-instagram .top-instagram-hl {
    padding: 0 8px 0;
  }
}
.top-instagram .top-instagram-hl::after {
  content: "";
  position: absolute;
  display: block;
  width: 75px;
  height: auto;
  aspect-ratio: 75/60;
  top: 0;
  right: 0;
  pointer-events: none;
  background: url(../images/home/instagram_decore.svg) no-repeat right top/contain;
}
@media only screen and (max-width: 1024px) {
  .top-instagram .top-instagram-hl::after {
    top: -43px;
    right: 6px;
  }
}
@media only screen and (max-width: 599px) {
  .top-instagram .top-instagram-hl .txtEn {
    letter-spacing: 0em;
    text-indent: 0em;
    font-size: min(14.6vw, 60px);
  }
}
@media screen and (max-width: 374px) {
  .top-instagram .top-instagram-hl .txtEn {
    font-size: clamp(44px, 14.0vw, 55px);
  }
}
.top-instagram .top-instagram-cards {
  display: grid;
  grid-template-columns: 100%;
  gap: 20px;
  margin: 70px 0 0;
}
@media only screen and (max-width: 1024px) {
  .top-instagram .top-instagram-cards {
    gap: 30px;
    margin-top: 60px;
  }
}
.top-instagram .top-instagram-cards .card {
  background: -webkit-linear-gradient(45deg, #e1f1f7 0%, #f1f0f8 50.74%, #dfe8f4 100%);
  background: linear-gradient(45deg, #e1f1f7 0%, #f1f0f8 50.74%, #dfe8f4 100%);
  padding: 50px 0 40px;
  border-radius: 20px;
}
@media screen and (max-width: 767px) {
  .top-instagram .top-instagram-cards .card {
    padding: 50px 0;
  }
}
@media only screen and (max-width: 1024px) {
  .top-instagram .top-instagram-cards .card {
    background: -webkit-linear-gradient(60deg, #e1f1f7 0%, #f1f0f8 50.74%, #dfe8f4 100%);
    background: linear-gradient(30deg, #e1f1f7 0%, #f1f0f8 50.74%, #dfe8f4 100%);
  }
}
.top-instagram .top-instagram-cards .cardInner {
  display: grid;
  grid-template-columns: 1fr 250px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 34px;
}
@media only screen and (max-width: 1024px) {
  .top-instagram .top-instagram-cards .cardInner {
    grid-template-columns: 100%;
    gap: 30px;
  }
}
.top-instagram .top-instagram-cards .cardInner .card-header {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
@media only screen and (max-width: 1024px) {
  .top-instagram .top-instagram-cards .cardInner .card-header {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
.top-instagram .top-instagram-cards .cardInner .card-posts {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
@media only screen and (max-width: 1024px) {
  .top-instagram .top-instagram-cards .cardInner .card-posts {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
.top-instagram .top-instagram-cards .card .card-header__hl {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4em;
  letter-spacing: 0.06em;
  text-indent: 0.06em;
  text-align: center;
  padding: 42px 0 0;
}
.top-instagram .top-instagram-cards .card .card-header__hl::before {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 32px;
  top: 0;
  left: 0;
  background: url(../images/common/icon/icon_sns_instagram.svg) no-repeat center top/contain;
}
.top-instagram .top-instagram-cards .card .card-header__hl > span {
  display: block;
}
.top-instagram .top-instagram-cards .card .card-header__linkBtn {
  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;
  -ms-flex-line-pack: center;
      align-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
  max-width: 250px;
  min-height: 3.125em;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4em;
  letter-spacing: 0em;
  text-indent: 0em;
  text-align: center;
  text-decoration: none;
  background: var(--gradient_default);
  border-radius: 1.6em;
  padding: 0.25em 0.5em 0.25em;
  margin: 20px auto 0;
}
.top-instagram .top-instagram-cards .card .card-header__linkBtn:hover {
  opacity: 1 !important;
}
@media print, screen and (min-width: 1025px) {
  .top-instagram .top-instagram-cards .card .card-header__linkBtn:hover {
    background: var(--gradient_reverse);
    -webkit-animation: ripple 1.5s forwards;
            animation: ripple 1.5s forwards;
  }
}
.top-instagram .top-instagram-cards .card .card-posts {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  aspect-ratio: 1/0.25;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .top-instagram .top-instagram-cards .card .card-posts {
    aspect-ratio: 1/1;
  }
}
.top-instagram .top-instagram-cards .card .card-posts > iframe {
  width: 100% !important;
  height: 100% !important;
}