@charset "UTF-8";
.button-circle--blue {
  position: relative;
  display: block;
  background-color: var(--color-navy);
  border-radius: 50%;
}
.button-circle--blue__arrow {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  display: block;
  width: 36.67%;
  transform: translate(-50%, -50%);
  aspect-ratio: 22/17;
}
.button-circle--blue__arrow svg {
  display: block;
  width: 100%;
  height: 100%;
  color: var(--color-white);
  transition: color 0.3s ease;
}
.button-circle--blue__inner {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 100%;
  height: 100%;
  background-color: var(--color-white);
  border-radius: 50%;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translate(-50%, -50%) scale(0);
  transform-origin: center;
}
.button-circle--blue:hover, .button-circle--blue:active {
  border: solid 1px var(--color-navy);
}
.button-circle--blue:hover .button-circle--blue__arrow svg, .button-circle--blue:active .button-circle--blue__arrow svg {
  color: var(--color-navy);
}
.button-circle--blue:hover .button-circle--blue__inner, .button-circle--blue:active .button-circle--blue__inner {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.button-circle--blue--diagonal {
  position: relative;
  display: block;
  background-color: var(--color-navy);
  border-radius: 50%;
}
.button-circle--blue--diagonal__arrow {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  display: block;
  width: 36.67%;
  transform: translate(-50%, -50%);
  aspect-ratio: 22/17;
}
.button-circle--blue--diagonal__arrow svg {
  display: block;
  width: 100%;
  height: 100%;
  color: var(--color-white);
  transition: color 0.3s ease;
  transform: rotate(-45deg);
}
.button-circle--blue--diagonal__inner {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 100%;
  height: 100%;
  background-color: var(--color-white);
  border-radius: 50%;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translate(-50%, -50%) scale(0);
  transform-origin: center;
}
.button-circle--blue--diagonal:hover, .button-circle--blue--diagonal:active {
  border: solid 1px var(--color-navy);
}
.button-circle--blue--diagonal:hover .button-circle--blue--diagonal__arrow svg, .button-circle--blue--diagonal:active .button-circle--blue--diagonal__arrow svg {
  color: var(--color-navy);
}
.button-circle--blue--diagonal:hover .button-circle--blue--diagonal__inner, .button-circle--blue--diagonal:active .button-circle--blue--diagonal__inner {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.button-circle--red {
  position: relative;
  display: block;
  background-color: var(--color-red);
  border-radius: 50%;
}
.button-circle--red__arrow {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  display: block;
  width: 36.67%;
  transform: translate(-50%, -50%);
  aspect-ratio: 22/17;
}
.button-circle--red__arrow svg {
  display: block;
  width: 100%;
  height: 100%;
  color: var(--color-white);
  transition: color 0.3s ease;
}
.button-circle--red__inner {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 100%;
  height: 100%;
  background-color: var(--color-white);
  border-radius: 50%;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translate(-50%, -50%) scale(0);
  transform-origin: center;
}
.button-circle--red:hover, .button-circle--red:active {
  border: solid 1px var(--color-red);
}
.button-circle--red:hover .button-circle--red__arrow svg, .button-circle--red:active .button-circle--red__arrow svg {
  color: var(--color-red);
}
.button-circle--red:hover .button-circle--red__inner, .button-circle--red:active .button-circle--red__inner {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.button-circle--white {
  position: relative;
  display: block;
  background-color: var(--color-white);
  border-radius: 50%;
}
.button-circle--white__arrow {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  display: block;
  width: 36.67%;
  transform: translate(-50%, -50%);
  aspect-ratio: 22/17;
}
.button-circle--white__arrow svg {
  display: block;
  width: 100%;
  height: 100%;
  color: var(--color-navy);
  transition: color 0.3s ease;
}
.button-circle--white__inner {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 100%;
  height: 100%;
  background-color: var(--color-navy);
  border-radius: 50%;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translate(-50%, -50%) scale(0);
  transform-origin: center;
}
.button-circle--white:hover .button-circle--white__arrow svg, .button-circle--white:active .button-circle--white__arrow svg {
  color: var(--color-white);
}
.button-circle--white:hover .button-circle--white__inner, .button-circle--white:active .button-circle--white__inner {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.button-plus--blue {
  position: relative;
  background: #0e0e8f;
  border-radius: 50%;
}
.button-plus--blue__plus {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 10px;
  transform: translate(-50%, -50%);
  aspect-ratio: 1/1;
}
.button-plus--blue__plus svg {
  display: block;
  width: 100%;
  height: 100%;
  color: #fff;
  transition: color 0.3s ease;
}
@media (width < 1440px) {
  .button-plus--blue__plus {
    width: 0.69vw;
  }
}
@media (width <= 767px) {
  .button-plus--blue__plus {
    width: 6px;
  }
}

.pdf-link__link {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  width: 160px;
  height: 38px;
  background: #ffffff;
  border: 1px solid #6c6c6c;
  border-radius: 100px;
  cursor: pointer;
}
@media (width < 1440px) {
  .pdf-link__link {
    gap: 0.69vw;
    width: 12vw;
    height: 2.64vw;
    padding: 0.56vw 1.53vw 0.56vw 1.78vw;
  }
}
@media (width <= 767px) {
  .pdf-link__link {
    gap: 8px;
    width: 120px;
    height: 28px;
    padding: 6px 16px 6px 18px;
  }
}
.pdf-link__link-text {
  font-size: 14px;
  font-weight: 700;
  line-height: 160%;
  letter-spacing: 0.05em;
  color: var(--color-black);
  white-space: nowrap;
}
@media (width < 1440px) {
  .pdf-link__link-text {
    font-size: 0.97vw;
  }
}
@media (width <= 767px) {
  .pdf-link__link-text {
    font-size: 10px;
  }
}
.pdf-link__link-icon {
  width: 29px;
  aspect-ratio: 29/16;
}
@media (width < 1440px) {
  .pdf-link__link-icon {
    width: 2.01vw;
  }
}
@media (width <= 767px) {
  .pdf-link__link-icon {
    width: 16px;
  }
}

.top-main-visual__container {
  display: grid;
  gap: 1.39%;
  height: calc(var(--header-height) + min(49.93vw, 719px));
  background: linear-gradient(180deg, #8b9fe5 0%, #c3cdf0 100%);
  grid-template-columns: 1fr 51.39% 1fr;
  padding-inline: 0;
}
@media (width < 768px) {
  .top-main-visual__container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3.85vw;
    height: auto;
  }
}

.top-main-visual-main {
  width: min(51.39vw, 740px);
}
.top-main-visual-main .swiper-wrapper {
  padding-top: calc(var(--header-height) + min(1.67vw, 24px));
}
@media (width < 768px) {
  .top-main-visual-main .swiper-wrapper {
    padding-top: 0;
  }
}
.top-main-visual-main__slide {
  aspect-ratio: 740/679;
}
.top-main-visual-main__slide img {
  width: 100%;
  object-fit: contain;
}
@media (width < 768px) {
  .top-main-visual-main {
    width: 92.31%;
    order: 2;
    margin-inline: auto;
  }
}

@media (width < 768px) {
  .top-main-visual-sub--left {
    order: 3;
  }
}

@media (width < 768px) {
  .top-main-visual-sub--right {
    order: 1;
  }
}

.top-main-visual-sub {
  height: 100%;
  overflow: hidden;
}
.top-main-visual-sub__track {
  display: flex;
  flex-direction: column;
  gap: min(1.11vw, 16px);
  will-change: transform;
}
.top-main-visual-sub--left .top-main-visual-sub__track {
  animation: scrollDown 25s linear infinite;
  animation-direction: reverse;
}
@media (width < 768px) {
  .top-main-visual-sub--left .top-main-visual-sub__track {
    animation: scrollRight 15s linear infinite;
  }
}
.top-main-visual-sub--right .top-main-visual-sub__track {
  animation: scrollUp 25s linear infinite;
}
@media (width < 768px) {
  .top-main-visual-sub--right .top-main-visual-sub__track {
    margin-top: 5.13vw;
    animation: scrollLeft 15s linear infinite;
    animation-direction: reverse;
  }
}
@media (width < 768px) {
  .top-main-visual-sub__track {
    flex-direction: row;
    gap: 0;
  }
}
.top-main-visual-sub__slide {
  display: block;
  width: 100%;
}
@media (width < 768px) {
  .top-main-visual-sub--left .top-main-visual-sub__slide {
    flex-shrink: 0;
    margin-right: 3.33%;
  }
  .top-main-visual-sub--left .top-main-visual-sub__slide img {
    width: 100%;
    height: auto;
  }
  .top-main-visual-sub--left .top-main-visual-sub__slide:nth-child(1), .top-main-visual-sub--left .top-main-visual-sub__slide:nth-child(6) {
    width: 59.23%;
  }
  .top-main-visual-sub--left .top-main-visual-sub__slide:nth-child(2), .top-main-visual-sub--left .top-main-visual-sub__slide:nth-child(7) {
    width: 28.36%;
  }
  .top-main-visual-sub--left .top-main-visual-sub__slide:nth-child(3), .top-main-visual-sub--left .top-main-visual-sub__slide:nth-child(8) {
    width: 41.71%;
  }
  .top-main-visual-sub--left .top-main-visual-sub__slide:nth-child(4), .top-main-visual-sub--left .top-main-visual-sub__slide:nth-child(9) {
    width: 47.96%;
  }
  .top-main-visual-sub--left .top-main-visual-sub__slide:nth-child(5), .top-main-visual-sub--left .top-main-visual-sub__slide:nth-child(10) {
    width: 47.96%;
  }
}
@media (width < 768px) {
  .top-main-visual-sub--right .top-main-visual-sub__slide {
    height: 35.9vw;
    flex-shrink: 0;
    margin-right: 3.33%;
  }
  .top-main-visual-sub--right .top-main-visual-sub__slide img {
    width: 100%;
    height: auto;
  }
  .top-main-visual-sub--right .top-main-visual-sub__slide:nth-child(1), .top-main-visual-sub--right .top-main-visual-sub__slide:nth-child(6) {
    width: 45.39%;
  }
  .top-main-visual-sub--right .top-main-visual-sub__slide:nth-child(2), .top-main-visual-sub--right .top-main-visual-sub__slide:nth-child(7) {
    width: 53.72%;
  }
  .top-main-visual-sub--right .top-main-visual-sub__slide:nth-child(3), .top-main-visual-sub--right .top-main-visual-sub__slide:nth-child(8) {
    width: 41.62%;
  }
  .top-main-visual-sub--right .top-main-visual-sub__slide:nth-child(4), .top-main-visual-sub--right .top-main-visual-sub__slide:nth-child(9) {
    width: 34.84%;
  }
  .top-main-visual-sub--right .top-main-visual-sub__slide:nth-child(5), .top-main-visual-sub--right .top-main-visual-sub__slide:nth-child(10) {
    width: 57.31%;
  }
}

@keyframes scrollDown {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-50%);
  }
}
@keyframes scrollRight {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@keyframes scrollUp {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-50%);
  }
}
@keyframes scrollLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.value__container {
  position: relative;
  background-image: image-set(url("../images/bg_top-value.jpg") 1x, url("../images/bg_top-value@2x.jpg") 2x);
  background-size: cover;
  background-position: center;
  padding-block: 130px 146px;
}
.value__container::before {
  position: absolute;
  right: -59px;
  bottom: -99px;
  width: 400px;
  height: 400px;
  background-image: image-set(url("../images/decoration_top-value.png") 1x, url("../images/decoration_top-value@2x.png") 2x);
  background-size: cover;
  background-position: center;
  content: "";
}
@media (width < 1440px) {
  .value__container {
    padding-block: 9.03vw 10.14vw;
  }
  .value__container::before {
    right: -4.1vw;
    bottom: -6.88vw;
    width: 27.78vw;
    height: 27.78vw;
  }
}
.value__title h2 {
  font-size: 40px;
  font-weight: 600;
  line-height: 160%;
  letter-spacing: 0.05em;
  color: var(--color-black);
}
@media (width < 1440px) {
  .value__title h2 {
    font-size: 2.78vw;
  }
}
@media (width <= 767px) {
  .value__title h2 {
    font-size: 24px;
  }
}

.value-card {
  position: relative;
  z-index: 0;
}
.value-card.value-card-coating {
  margin-top: 30px;
}
.value-card.value-card-coating::after {
  position: absolute;
  top: -81px;
  right: -58px;
  width: 164px;
  height: 154px;
  background-image: image-set(url("../images/decoration_top-value-card-coating.png") 1x, url("../images/decoration_top-value-card-coating@2x.png") 2x);
  background-size: cover;
  background-position: center;
  content: "";
}
.value-card.value-card-coating .square {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.value-card.value-card-coating .square .square-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(100% - 140px);
  background-color: var(--color-white);
  border-radius: 20px 20px 0 0;
}
@media (width < 1440px) {
  .value-card.value-card-coating .square .square-top {
    height: calc(100% - 9.72vw);
    border-radius: 1.39vw 1.39vw 0 0;
  }
}
@media (width <= 767px) {
  .value-card.value-card-coating .square .square-top {
    height: calc(100% - 98px);
    border-radius: 3vw 3vw 0 0;
  }
}
.value-card.value-card-coating .square .square-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 144px;
}
.value-card.value-card-coating .square .square-bottom .square-bottom-left {
  position: absolute;
  bottom: 0;
  left: 0;
  width: calc(100% - 140px);
  height: 100%;
  background-color: var(--color-white);
  border-radius: 0 0 0 20px;
}
@media (width < 1440px) {
  .value-card.value-card-coating .square .square-bottom .square-bottom-left {
    width: calc(100% - 9.72vw);
    border-radius: 0 0 0 1.39vw;
  }
}
@media (width <= 767px) {
  .value-card.value-card-coating .square .square-bottom .square-bottom-left {
    width: calc(100% - 98px);
    border-radius: 0 0 0 3vw;
  }
}
.value-card.value-card-coating .square .square-bottom .square-bottom-right {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 144px;
  height: 144px;
  /* prettier-ignore */
  background-image: image-set(url("../images/decoration_square-bottom-right.png") 1x, url("../images/decoration_square-bottom-right@2x.png") 2x);
  background-size: cover;
  background-position: center;
}
@media (width < 1440px) {
  .value-card.value-card-coating .square .square-bottom .square-bottom-right {
    width: 10vw;
    height: 10vw;
  }
}
@media (width <= 767px) {
  .value-card.value-card-coating .square .square-bottom .square-bottom-right {
    width: 101px;
    height: 101px;
  }
}
@media (width < 1440px) {
  .value-card.value-card-coating .square .square-bottom {
    height: 10vw;
  }
}
@media (width <= 767px) {
  .value-card.value-card-coating .square .square-bottom {
    height: 101px;
  }
}
@media (width < 1440px) {
  .value-card.value-card-coating {
    margin-top: 2.08vw;
  }
  .value-card.value-card-coating::after {
    top: -5.63vw;
    right: -4.03vw;
    width: 11.39vw;
    height: 10.69vw;
  }
}
.value-card.value-card-fproduct {
  margin-top: 20px;
}
.value-card.value-card-fproduct .square {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.value-card.value-card-fproduct .square .square-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(100% - 140px);
  background-color: var(--color-white);
  border-radius: 20px 20px 0 0;
}
@media (width < 1440px) {
  .value-card.value-card-fproduct .square .square-top {
    height: calc(100% - 9.72vw);
    border-radius: 1.39vw 1.39vw 0 0;
  }
}
@media (width <= 767px) {
  .value-card.value-card-fproduct .square .square-top {
    height: calc(100% - 98px);
    border-radius: 3vw 3vw 0 0;
  }
}
.value-card.value-card-fproduct .square .square-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 144px;
}
.value-card.value-card-fproduct .square .square-bottom .square-bottom-left {
  position: absolute;
  bottom: 0;
  left: 0;
  width: calc(100% - 140px);
  height: 100%;
  background-color: var(--color-white);
  border-radius: 0 0 0 20px;
}
@media (width < 1440px) {
  .value-card.value-card-fproduct .square .square-bottom .square-bottom-left {
    width: calc(100% - 9.72vw);
    border-radius: 0 0 0 1.39vw;
  }
}
@media (width <= 767px) {
  .value-card.value-card-fproduct .square .square-bottom .square-bottom-left {
    width: calc(100% - 98px);
    border-radius: 0 0 0 3vw;
  }
}
.value-card.value-card-fproduct .square .square-bottom .square-bottom-right {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 144px;
  height: 144px;
  /* prettier-ignore */
  background-image: image-set(url("../images/decoration_square-bottom-right.png") 1x, url("../images/decoration_square-bottom-right@2x.png") 2x);
  background-size: cover;
  background-position: center;
}
@media (width < 1440px) {
  .value-card.value-card-fproduct .square .square-bottom .square-bottom-right {
    width: 10vw;
    height: 10vw;
  }
}
@media (width <= 767px) {
  .value-card.value-card-fproduct .square .square-bottom .square-bottom-right {
    width: 101px;
    height: 101px;
  }
}
@media (width < 1440px) {
  .value-card.value-card-fproduct .square .square-bottom {
    height: 10vw;
  }
}
@media (width <= 767px) {
  .value-card.value-card-fproduct .square .square-bottom {
    height: 101px;
  }
}
@media (width < 1440px) {
  .value-card.value-card-fproduct {
    margin-top: 1.39vw;
  }
}
.value-card__inner {
  display: flex;
  gap: 51px;
  padding: 20px 30px 20px 20px;
}
@media (width < 1440px) {
  .value-card__inner {
    gap: 3.54vw;
    padding: 1.39vw 2.08vw 1.39vw 1.39vw;
  }
}
@media (width <= 767px) {
  .value-card__inner {
    flex-direction: column;
    align-items: center;
    gap: 5px;
    padding-bottom: 90px;
  }
}
.value-card__media {
  position: relative;
  z-index: 1;
  display: flex;
  flex-shrink: 0;
}
.value-card__label-wrapper {
  position: relative;
  width: 43px;
  height: 100%;
}
.value-card__label-wrapper::after {
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 100%;
  background-color: #aeaeae;
  content: "";
}
@media (width <= 767px) {
  .value-card__label-wrapper::after {
    top: 15px;
    right: -5px;
    height: 23vw;
  }
}
@media (width < 1440px) {
  .value-card__label-wrapper {
    width: 2.99vw;
  }
}
@media (width <= 767px) {
  .value-card__label-wrapper {
    width: 20px;
    flex-shrink: 0;
    padding-bottom: 12px;
  }
}
.value-card__label {
  position: absolute;
  font-family: var(--font-poppins);
  font-size: 20px;
  font-weight: 500;
  line-height: 160%;
  color: transparent;
  background: linear-gradient(142.23deg, #516ed6 12.3%, #3620c7 89.4%);
  transform: rotate(90deg);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  white-space: nowrap;
}
.value-card-coating .value-card__label {
  top: 43px;
  left: -35px;
}
.value-card-fproduct .value-card__label {
  top: 79px;
  left: -70px;
}
@media (width < 1440px) {
  .value-card__label {
    font-size: 1.39vw;
  }
  .value-card-coating .value-card__label {
    top: 2.99vw;
    left: -2.43vw;
  }
  .value-card-fproduct .value-card__label {
    top: 5.49vw;
    left: -4.86vw;
  }
}
@media (width <= 767px) {
  .value-card__label {
    font-size: 14px;
  }
  .value-card-coating .value-card__label {
    top: 40px;
    left: -28px;
  }
  .value-card-fproduct .value-card__label {
    top: 67px;
    left: -53px;
  }
}
.value-card__image-wrapper {
  padding-bottom: 20px;
}
.value-card__image-wrapper img {
  margin-left: 32px;
  margin-top: 20px;
}
.value-card-coating .value-card__image-wrapper img {
  width: 448px;
  aspect-ratio: 448/360;
}
.value-card-fproduct .value-card__image-wrapper img {
  width: 448px;
  aspect-ratio: 448/240;
}
@media (width < 1440px) {
  .value-card__image-wrapper img {
    margin-left: 2.22vw;
    margin-top: 1.39vw;
  }
  .value-card-coating .value-card__image-wrapper img {
    width: 31.11vw;
  }
  .value-card-fproduct .value-card__image-wrapper img {
    width: 31.11vw;
  }
}
@media (width <= 767px) {
  .value-card__image-wrapper img {
    max-width: 448px;
    margin-left: 0;
    margin-top: 10px;
    order: 1;
  }
  .value-card-coating .value-card__image-wrapper img {
    width: 85%;
  }
  .value-card-fproduct .value-card__image-wrapper img {
    width: 85%;
  }
}
@media (width <= 767px) {
  .value-card__image-wrapper {
    display: flex;
    justify-content: center;
    padding-bottom: 0;
  }
}
.value-card__content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding-top: 20px;
}
@media (width < 1440px) {
  .value-card__content {
    padding-top: 1.39vw;
  }
}
.value-card__heading {
  font-size: 30px;
  font-weight: 700;
  line-height: 160%;
  color: var(--color-black);
}
@media (width < 1440px) {
  .value-card__heading {
    font-size: 2.08vw;
  }
}
@media (width <= 767px) {
  .value-card__heading {
    font-size: 18px;
    text-align: center;
  }
}
.value-card__text {
  font-size: 16px;
  line-height: 180%;
  color: #000;
  margin-top: 10px;
}
.value-card-coating .value-card__text {
  width: 422px;
}
.value-card-fproduct .value-card__text {
  width: 472px;
}
@media (width < 1440px) {
  .value-card__text {
    font-size: 1.11vw;
    margin-top: 0.69vw;
  }
  .value-card-coating .value-card__text {
    width: 29.31vw;
  }
  .value-card-fproduct .value-card__text {
    width: 32.78vw;
  }
}
@media (width <= 767px) {
  .value-card__text {
    font-size: 12px;
  }
  .value-card-coating .value-card__text, .value-card-fproduct .value-card__text {
    width: 95%;
    max-width: 450px;
    margin-inline: auto;
  }
}
.value-card__divider {
  width: 100%;
  height: 1px;
  background-color: #aeaeae;
  margin-block: 30px;
}
@media (width <= 767px) {
  .value-card__divider {
    width: 80%;
    margin-inline: auto;
  }
}
.value-card__link {
  position: absolute;
  right: 24px;
  bottom: 24px;
  z-index: 1;
  width: 60px;
  height: 60px;
}
@media (width < 1440px) {
  .value-card__link {
    right: 1.67vw;
    bottom: 1.67vw;
    width: 4.17vw;
    height: 4.17vw;
  }
}
@media (width <= 767px) {
  .value-card__link {
    right: unset;
    right: 15px;
    bottom: 15px;
    width: 42px;
    height: 42px;
  }
}
@media (width < 1440px) {
  .value-card {
    gap: 3.54vw;
    padding: 1.39vw 2.08vw 1.39vw 1.39vw;
  }
}

@media (width <= 767px) {
  .value-card.value-card-coating {
    margin-top: 28px;
  }
  .value-card.value-card-coating::after {
    top: -68px;
    right: -78px;
    z-index: 0;
    width: 128px;
    height: 132px;
    pointer-events: none;
  }
  .value-card.value-card-coating .square .square-top {
    height: calc(100% - 74px);
    border-radius: 24px 24px 0 0;
  }
  .value-card.value-card-coating .square .square-bottom {
    height: 74px;
  }
  .value-card.value-card-coating .square .square-bottom .square-bottom-left {
    width: calc(100% - 74px);
    border-radius: 0 0 0 24px;
  }
  .value-card.value-card-coating .square .square-bottom .square-bottom-right {
    width: 74px;
    height: 74px;
  }
  .value-card.value-card-coating .value-card__inner {
    position: relative;
    align-items: stretch;
    gap: 12px;
    padding: 16px 14px 92px;
  }
  .value-card.value-card-coating .value-card__inner::before {
    position: absolute;
    top: 18px;
    bottom: 20px;
    left: 39px;
    z-index: 1;
    width: 1px;
    background-color: #aeaeae;
    content: "";
  }
  .value-card.value-card-coating .value-card__media {
    align-items: flex-start;
    gap: 10px;
  }
  .value-card.value-card-coating .value-card__label-wrapper {
    width: 28px;
    padding-bottom: 0;
  }
  .value-card.value-card-coating .value-card__label-wrapper::after {
    display: none;
  }
  .value-card.value-card-coating .value-card__label {
    top: 0;
    left: -6px;
    font-size: 16px;
    line-height: 1.5;
    transform: none;
    writing-mode: vertical-rl;
    text-orientation: mixed;
  }
  .value-card.value-card-coating .value-card__image-wrapper {
    display: block;
    flex: 1;
    padding-bottom: 0;
  }
  .value-card.value-card-coating .value-card__image-wrapper img {
    width: 100%;
    max-width: none;
    border-radius: 24px;
    margin-top: 0;
  }
  .value-card.value-card-coating .value-card__content {
    padding-top: 0;
    padding-left: 46px;
  }
  .value-card.value-card-coating .value-card__heading {
    font-size: 28px;
    line-height: 1.35;
    text-align: left;
  }
  .value-card.value-card-coating .value-card__text {
    width: 100%;
    max-width: none;
    font-size: 15px;
    line-height: 1.85;
    margin-top: 12px;
    margin-inline: 0;
  }
  .value-card.value-card-coating .value-card__divider {
    width: 100%;
    margin: 34px 0;
  }
  .value-card.value-card-coating .value-card__link {
    right: 6px;
    bottom: 6px;
    width: 42px;
    height: 42px;
  }
  .value-card.value-card-fproduct {
    margin-top: 24px;
  }
  .value-card.value-card-fproduct::after {
    position: absolute;
    top: -32px;
    left: -18px;
    z-index: -1;
    width: 108px;
    height: 132px;
    background-image: image-set(url("../images/decoration_top-value-card-coating.png") 1x, url("../images/decoration_top-value-card-coating@2x.png") 2x);
    background-size: cover;
    background-position: center;
    pointer-events: none;
    content: "";
  }
  .value-card.value-card-fproduct .square .square-top {
    height: calc(100% - 74px);
    border-radius: 24px 24px 0 0;
  }
  .value-card.value-card-fproduct .square .square-bottom {
    height: 74px;
  }
  .value-card.value-card-fproduct .square .square-bottom .square-bottom-left {
    width: calc(100% - 74px);
    border-radius: 0 0 0 24px;
  }
  .value-card.value-card-fproduct .square .square-bottom .square-bottom-right {
    width: 74px;
    height: 74px;
  }
  .value-card.value-card-fproduct .value-card__inner {
    position: relative;
    align-items: stretch;
    gap: 12px;
    padding: 16px 14px 92px;
  }
  .value-card.value-card-fproduct .value-card__inner::before {
    position: absolute;
    top: 18px;
    bottom: 20px;
    left: 39px;
    z-index: 1;
    width: 1px;
    background-color: #aeaeae;
    content: "";
  }
  .value-card.value-card-fproduct .value-card__media {
    align-items: flex-start;
    gap: 10px;
  }
  .value-card.value-card-fproduct .value-card__label-wrapper {
    width: 28px;
    padding-bottom: 0;
  }
  .value-card.value-card-fproduct .value-card__label-wrapper::after {
    display: none;
  }
  .value-card.value-card-fproduct .value-card__label {
    top: 0;
    left: -6px;
    font-size: 16px;
    line-height: 1.5;
    transform: none;
    writing-mode: vertical-rl;
    text-orientation: mixed;
  }
  .value-card.value-card-fproduct .value-card__image-wrapper {
    display: block;
    flex: 1;
    padding-bottom: 0;
  }
  .value-card.value-card-fproduct .value-card__image-wrapper img {
    width: 100%;
    max-width: none;
    border-radius: 24px;
    margin-top: 0;
  }
  .value-card.value-card-fproduct .value-card__content {
    padding-top: 0;
    padding-left: 46px;
  }
  .value-card.value-card-fproduct .value-card__heading {
    font-size: 28px;
    line-height: 1.35;
    text-align: left;
  }
  .value-card.value-card-fproduct .value-card__text {
    width: 100%;
    max-width: none;
    font-size: 15px;
    line-height: 1.85;
    margin-top: 12px;
    margin-inline: 0;
  }
  .value-card.value-card-fproduct .value-card__link {
    right: 6px;
    bottom: 6px;
    width: 42px;
    height: 42px;
  }
}
@keyframes strengths-info-fade-out {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes strengths-info-fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.strengths {
  --strengths-slot-width: 38.75%;
  --strengths-slot-radius: 20px;
  --strengths-slot-shadow: 0 8px 18px rgb(22 38 82 / 2%);
  --strengths-motion-ease: cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
  padding-block: 79px 120px;
}
@media (width < 768px) {
  .strengths__container {
    padding-inline: 0;
  }
}
.strengths::before {
  position: absolute;
  bottom: 112px;
  left: 80.3%;
  width: 158px;
  height: 134px;
  /* prettier-ignore */
  background-image: image-set(url("../images/decoration_top-strengths-info.png") 1x, url("../images/decoration_top-strengths-info@2x.png") 2x);
  background-size: cover;
  background-position: center;
  transform: translateX(-50%);
  content: "";
}
@media (width < 1440px) {
  .strengths::before {
    bottom: 7.78vw;
    left: 80.14%;
    width: 11.03vw;
    height: 9.31vw;
  }
}
@media (width <= 767px) {
  .strengths::before {
    bottom: 7.78vw;
    left: 80.14%;
    width: 70px;
    height: 59px;
  }
}
.strengths__container {
  position: relative;
}
.strengths__container::before {
  position: absolute;
  top: -0.73em;
  left: -35%;
  font-family: var(--font-poppins);
  font-size: 120px;
  font-weight: 600;
  line-height: 160%;
  color: #dfe5fb;
  opacity: 0.5;
  content: "Our company's strengths";
  white-space: nowrap;
}
@media (width < 1440px) {
  .strengths__container::before {
    font-size: 8.33vw;
  }
}
@media (width <= 767px) {
  .strengths__container::before {
    font-size: 52px;
  }
}
.strengths__container::after {
  position: absolute;
  bottom: 0.07em;
  left: 51%;
  z-index: -1;
  font-family: var(--font-poppins);
  font-size: 120px;
  font-weight: 600;
  line-height: 160%;
  color: #dfe5fb;
  opacity: 0.5;
  content: "Our company's strengths";
  white-space: nowrap;
}
@media (width < 1440px) {
  .strengths__container::after {
    font-size: 8.33vw;
  }
}
@media (width <= 767px) {
  .strengths__container::after {
    font-size: 52px;
  }
}
.strengths__title {
  position: relative;
  z-index: 1;
}
.strengths__title h2 {
  font-size: 40px;
  font-weight: 600;
  line-height: 160%;
  letter-spacing: 0.05em;
  color: var(--color-black);
}
@media (width < 1440px) {
  .strengths__title h2 {
    font-size: 2.78vw;
  }
}
@media (width <= 767px) {
  .strengths__title h2 {
    font-size: 24px;
  }
}
@media (width <= 767px) {
  .strengths__title {
    padding-inline: 16px;
  }
}
.strengths__gallery {
  position: relative;
  margin-top: 31px;
  padding-top: 54px;
}
.strengths__gallery::before {
  position: absolute;
  top: 8px;
  left: 98.7%;
  width: 139px;
  height: 139px;
  /* prettier-ignore */
  background-image: image-set(url("../images/decoration_top-strengths-gallery.png") 1x, url("../images/decoration_top-strengths-gallery@2x.png") 2x);
  background-size: cover;
  background-position: center;
  transform: translateX(-50%);
  content: "";
}
@media (width < 1440px) {
  .strengths__gallery::before {
    top: 0.56vw;
    left: 97.22%;
    width: 9.65vw;
    height: 9.65vw;
  }
}
@media (width <= 767px) {
  .strengths__gallery::before {
    top: 0.56vw;
    left: 97.22%;
    width: 65px;
    height: 65px;
  }
}
@media (width < 1440px) {
  .strengths__gallery {
    margin-top: 2.15vw;
    padding-top: 3.75vw;
  }
}
@media (width <= 767px) {
  .strengths__gallery {
    width: calc(100% - 32px);
    max-width: 550px;
    margin-top: 20px;
    padding-top: 30px;
    margin-inline: auto;
  }
}
.strengths__gallery-viewport {
  position: relative;
  margin-top: 0;
  padding-top: 16px;
  overflow: visible;
  touch-action: pan-y;
  -webkit-user-select: none;
  user-select: none;
  cursor: grab;
}
@media (width < 1440px) {
  .strengths__gallery-viewport {
    padding-top: 1.11vw;
  }
}
@media (width <= 767px) {
  .strengths__gallery-viewport {
    padding-top: 10px;
  }
}
.strengths.is-dragging .strengths__gallery-viewport {
  cursor: grabbing;
}
.strengths__gallery-track {
  position: relative;
  height: clamp(220px, 22.22vw, 320px);
  overflow: visible;
  isolation: isolate;
}
@media (width <= 767px) {
  .strengths__gallery-track {
    height: clamp(220px, 60vw, 320px);
  }
}
.strengths__gallery-slot {
  position: absolute;
  top: 0;
  left: 0;
  width: var(--strengths-slot-width);
  opacity: 0;
  transition: transform var(--strengths-motion-ms, 3600ms) var(--strengths-motion-ease), opacity 420ms var(--strengths-motion-ease), filter 420ms ease;
  transform: translate3d(82%, 16%, 0) scale(0.68);
  pointer-events: none;
  transform-origin: 50% 100%;
  will-change: transform, opacity, filter;
}
.strengths__gallery-slot.is-active {
  z-index: 5;
  opacity: 1;
  transform: translate3d(0, calc(-26% + 30px), 0) scale(1);
}
.strengths__gallery-slot.is-next {
  z-index: 4;
  opacity: 1;
  transform: translate3d(55%, 13%, 0) scale(1);
}
.strengths__gallery-slot.is-next-2 {
  z-index: 3;
  opacity: 1;
  transform: translate3d(110%, 13%, 0) scale(1);
}
.strengths__gallery-slot.is-tail {
  z-index: 2;
  opacity: 1;
  transform: translate3d(165%, 13%, 0) scale(1);
  transition-delay: 0ms, calc(var(--strengths-motion-ms, 3600ms) * 0.68), 0ms;
}
.strengths__gallery-slot.is-buffer {
  z-index: 1;
  opacity: 0;
  transform: translate3d(165%, 13%, 0) scale(1);
  transition-delay: 0ms, calc(var(--strengths-motion-ms, 3600ms) * 0.76), 0ms;
}
.strengths__gallery-slot.is-hidden {
  z-index: 0;
  opacity: 0;
  transform: translate3d(228%, 13%, 0) scale(1);
}
.strengths__gallery-card {
  position: relative;
  width: 100%;
  background: var(--color-white);
  border-radius: var(--strengths-slot-radius);
  box-shadow: var(--strengths-slot-shadow);
  transition: opacity 320ms ease, filter 320ms ease, box-shadow 320ms ease;
  aspect-ratio: 448/240;
  overflow: hidden;
}
.strengths__gallery-card::after {
  position: absolute;
  background: rgba(255, 255, 255, 0);
  transition: background-color 320ms ease;
  inset: 0;
  content: "";
  pointer-events: none;
}
.strengths__gallery-slot.is-active .strengths__gallery-card {
  opacity: 1;
  filter: none;
}
.strengths__gallery-slot:not(.is-active) .strengths__gallery-card {
  opacity: 1;
  filter: none;
}
.strengths__gallery-slot:not(.is-active) .strengths__gallery-card::after {
  background: rgba(255, 255, 255, 0.42);
}
.strengths__gallery-slot.is-buffer .strengths__gallery-card, .strengths__gallery-slot.is-hidden .strengths__gallery-card {
  opacity: 1;
  filter: none;
}
.strengths__gallery-slot.is-buffer .strengths__gallery-card::after, .strengths__gallery-slot.is-hidden .strengths__gallery-card::after {
  background: rgba(255, 255, 255, 0.52);
}
.strengths__gallery-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.strengths__gallery-progress {
  --strengths-progress-dot-size: 10px;
  --strengths-progress-step: 30px;
  --strengths-progress-bar-width: 30px;
  --strengths-progress-height: 10px;
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 8;
  display: flex;
  align-items: center;
  gap: 0;
  width: fit-content;
  transform: translateX(-50%);
  margin-top: 0;
}
.strengths__gallery-progress::after {
  position: absolute;
  top: 50%;
  left: 0;
  z-index: 1;
  width: var(--strengths-progress-bar-width);
  height: var(--strengths-progress-height);
  background: var(--blue-01);
  border-radius: 999px;
  transition: transform 560ms var(--strengths-motion-ease);
  transform: translate3d(calc(var(--strengths-progress-active-index, 0) * var(--strengths-progress-step)), -50%, 0);
  pointer-events: none;
  content: "";
}
@media (width < 1440px) {
  .strengths__gallery-progress {
    --strengths-progress-dot-size: 0.69vw;
    --strengths-progress-step: 2.08vw;
    --strengths-progress-bar-width: 2.08vw;
    --strengths-progress-height: 0.69vw;
  }
}
@media (width <= 767px) {
  .strengths__gallery-progress {
    --strengths-progress-dot-size: 6px;
    --strengths-progress-step: 22px;
    --strengths-progress-bar-width: 22px;
    --strengths-progress-height: 6px;
    padding-inline: 0;
  }
}
.strengths__gallery-progress-button {
  position: relative;
  z-index: 2;
  width: var(--strengths-progress-step);
  height: var(--strengths-progress-height);
  padding: 0;
  background: transparent;
  border: none;
  cursor: pointer;
}
.strengths__gallery-progress-button::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: var(--strengths-progress-dot-size);
  height: var(--strengths-progress-dot-size);
  background: rgba(93, 116, 223, 0.4);
  border-radius: 999px;
  transition: opacity 320ms ease, transform 320ms ease;
  transform: translate(-50%, -50%);
  content: "";
}
.strengths__gallery-progress-button:disabled {
  opacity: 0.4;
  cursor: default;
}
.strengths__gallery-progress-button.is-active::before {
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.4);
}
@media (width <= 767px) {
  .strengths {
    --strengths-slot-width: 100%;
    --strengths-slot-radius: 16px;
  }
  .strengths__gallery-slot.is-active {
    transform: translate3d(0, 0, 0) scale(1);
  }
  .strengths__gallery-slot.is-next {
    transform: translate3d(4%, 6%, 0) scale(1);
  }
  .strengths__gallery-slot.is-next-2 {
    opacity: 1;
    transform: translate3d(8%, 12%, 0) scale(1);
  }
  .strengths__gallery-slot.is-tail {
    opacity: 1;
    transform: translate3d(12%, 18%, 0) scale(1);
    transition-delay: 0ms, calc(var(--strengths-motion-ms, 3600ms) * 0.74), 0ms;
  }
  .strengths__gallery-slot.is-buffer {
    transform: translate3d(12%, 18%, 0) scale(1);
    transition-delay: 0ms, calc(var(--strengths-motion-ms, 3600ms) * 0.82), 0ms;
  }
  .strengths__gallery-slot.is-hidden {
    transform: translate3d(16%, 24%, 0) scale(1);
  }
}
.strengths {
  /* アクティブの次 */
  /* アクティブの次の次 */
  /* それ以降 */
}
.strengths__info {
  width: 610px;
  height: 181px;
  margin-top: 24px;
}
@media (width < 1440px) {
  .strengths__info {
    width: 42.36vw;
    height: 12.57vw;
    margin-top: 1.67vw;
  }
}
@media (width <= 767px) {
  .strengths__info {
    width: 95%;
    max-width: 450px;
    height: unset;
    margin-top: 40px;
    padding-inline: 16px;
  }
}
.strengths__info.is-fading-out {
  animation: strengths-info-fade-out 750ms ease forwards;
}
.strengths__info.is-fading-in {
  animation: strengths-info-fade-in 750ms ease forwards;
}
.strengths__info-number {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-poppins);
  font-size: 20px;
  font-weight: 500;
  line-height: 160%;
  color: var(--blue-01);
}
@media (width < 1440px) {
  .strengths__info-number {
    font-size: 1.39vw;
  }
}
@media (width <= 767px) {
  .strengths__info-number {
    gap: 8px;
    font-size: 14px;
  }
}
.strengths__info-number::after {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 24px;
  padding: 0 10px;
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  color: var(--color-white);
  background: var(--blue-01);
  border-radius: 999px;
  content: attr(data-business);
}
@media (width < 1440px) {
  .strengths__info-number::after {
    min-height: 1.67vw;
    font-size: 0.83vw;
    padding-inline: 0.69vw;
  }
}
@media (width <= 767px) {
  .strengths__info-number::after {
    min-height: 20px;
    font-size: 10px;
    padding-inline: 8px;
  }
}
.strengths__info-number:not([data-business])::after, .strengths__info-number[data-business=""]::after {
  content: none;
}
.strengths__info-title {
  font-size: 32px;
  font-weight: 600;
  line-height: 160%;
  color: var(--color-black);
}
@media (width < 1440px) {
  .strengths__info-title {
    font-size: 2.22vw;
  }
}
@media (width <= 767px) {
  .strengths__info-title {
    font-size: 24px;
  }
}
.strengths__info-text {
  font-size: 16px;
  font-weight: 400;
  line-height: 180%;
  color: var(--color-black);
  margin-top: 11px;
}
@media (width < 1440px) {
  .strengths__info-text {
    font-size: 1.11vw;
    margin-top: 0.76vw;
  }
}
@media (width <= 767px) {
  .strengths__info-text {
    font-size: 12px;
    margin-top: 8px;
  }
}
@media (width < 1440px) {
  .strengths {
    padding-block: 5.56vw 8.33vw;
  }
}
@media (width <= 767px) {
  .strengths {
    padding-block: 48px 72px;
  }
}

.about-us__container {
  position: relative;
  background-color: var(--blue-05);
  overflow: hidden;
  padding-top: min(6.25vw, 90px);
  padding-bottom: min(4.72vw, 68px);
}
.about-us__container::before {
  position: absolute;
  top: 0.38em;
  left: 0;
  font-family: var(--font-poppins);
  font-size: 120px;
  font-weight: 600;
  line-height: 160%;
  color: var(--color-white);
  opacity: 0.5;
  white-space: nowrap;
  content: "About us";
}
@media (width < 1440px) {
  .about-us__container::before {
    font-size: 8.33vw;
  }
}
@media (width <= 767px) {
  .about-us__container {
    padding-block: 56px 48px;
  }
  .about-us__container::before {
    font-size: 52px;
  }
}
.about-us__inner {
  overflow: visible;
}
.about-us__header {
  position: relative;
  display: flex;
  align-items: center;
  gap: min(2.78vw, 40px);
  min-height: min(6.67vw, 96px);
}
@media (width <= 767px) {
  .about-us__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    min-height: 56px;
  }
}
.about-us__title {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  padding-top: min(2.78vw, 40px);
}
.about-us__title h2 {
  font-size: 40px;
  font-weight: 600;
  line-height: 160%;
  letter-spacing: 0.05em;
  color: var(--color-black);
}
@media (width < 1440px) {
  .about-us__title {
    padding-left: 6.67vw;
  }
  .about-us__title h2 {
    font-size: 2.78vw;
  }
}
@media (width <= 767px) {
  .about-us__title {
    padding-top: 12px;
    padding-left: 0;
  }
  .about-us__title h2 {
    font-size: 24px;
  }
}
.about-us__progress {
  display: flex;
  flex: 1;
  justify-content: flex-end;
  align-items: center;
  min-width: 0;
}
@media (width <= 767px) {
  .about-us__progress {
    width: 100%;
  }
}
.about-us__gallery {
  width: 100%;
  margin-top: min(2.43vw, 35px);
  overflow: visible;
}
@media (width <= 767px) {
  .about-us__gallery {
    margin-top: 24px;
    overflow: hidden;
  }
}
.about-us__cards {
  justify-content: center;
  gap: min(0.56vw, 8px);
  margin: 0;
  padding: 8px 0;
}
@media (width <= 767px) {
  .about-us__cards {
    justify-content: flex-start;
    gap: 0;
    padding: 4px 0 8px;
  }
}
.about-us__card-item {
  width: 220px;
  height: auto;
  opacity: 1;
  list-style: none;
}
@media (width < 1440px) {
  .about-us__card-item {
    width: 15.28vw;
  }
}
@media (width <= 767px) {
  .about-us__card-item {
    width: clamp(176px, 55vw, 220px);
    transition: opacity 0.35s ease, transform 0.35s ease;
  }
  .about-us__card-item.swiper-slide-active {
    opacity: 1;
  }
  .about-us__card-item:not(.swiper-slide-active) {
    opacity: 0.88;
  }
}
.about-us__card-item:nth-child(even) .about-us-card__inner {
  margin-top: 23px;
}
.about-us__progress-track {
  position: relative;
  width: min(100%, 622px);
  height: 40px;
  touch-action: none;
}
.about-us__progress-track::before {
  position: absolute;
  top: 50%;
  left: 19px;
  width: calc(100% - 38px);
  height: 2px;
  background: #c6c8d8;
  border-radius: 999px;
  transform: translateY(-50%);
  content: "";
}
@media (width <= 767px) {
  .about-us__progress-track {
    width: min(100%, 320px);
    height: 36px;
  }
}
.about-us__progress-thumb {
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  height: 40px;
  padding: 0;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="40" height="40" viewBox="0 0 40 40" fill="none"><circle cx="20" cy="20" r="20" fill="%230E0E8F"/><path d="M30 20L26.4645 23.5355M30 20L26.4645 16.4645M30 20H23.3065" stroke="white"/><path d="M10 20L13.5355 23.5355M10 20L13.5355 16.4645M10 20H16.6935" stroke="white"/></svg>') no-repeat center/contain;
  border: 0;
  border-radius: 50%;
  transition: transform 0.2s ease-out;
  cursor: grab;
  appearance: none;
}
.about-us__progress-thumb:active {
  cursor: grabbing;
}
.about-us__progress-thumb.is-dragging {
  transition: none;
}
@media (width <= 767px) {
  .about-us__progress-thumb {
    width: 36px;
    height: 36px;
  }
}
.about-us__gallery .about-us__card-item.swiper-slide {
  width: 220px;
}
@media (width < 1440px) {
  .about-us__gallery .about-us__card-item.swiper-slide {
    width: 15.28vw;
  }
}
@media (width <= 767px) {
  .about-us__gallery .about-us__card-item.swiper-slide {
    width: clamp(176px, 55vw, 220px);
  }
}
.about-us__gallery .about-us-card--ages.swiper-slide {
  width: 454px;
}
@media (width < 1440px) {
  .about-us__gallery .about-us-card--ages.swiper-slide {
    width: 31.53vw;
  }
}
@media (width <= 767px) {
  .about-us__gallery .about-us-card--ages.swiper-slide {
    width: min(100vw - 24px, 350px);
  }
}
.about-us__progress {
  display: none;
}

.about-us-card--ages {
  width: 454px;
}
@media (width < 1440px) {
  .about-us-card--ages {
    width: 31.53vw;
  }
}
@media (width <= 767px) {
  .about-us-card--ages {
    width: min(100vw - 24px, 350px);
  }
}
.about-us-card--founded .about-us-card__inner, .about-us-card--employees .about-us-card__inner, .about-us-card--ratio .about-us-card__inner, .about-us-card--ages .about-us-card__inner, .about-us-card--paiddays .about-us-card__inner, .about-us-card--yearsofservice .about-us-card__inner {
  min-height: 0;
  padding: 0;
  background-color: transparent;
  background-size: contain;
  background-position: center;
  border: 0;
  border-radius: 0;
  background-repeat: no-repeat;
}
.about-us-card--founded .about-us-card__inner, .about-us-card--employees .about-us-card__inner, .about-us-card--ratio .about-us-card__inner, .about-us-card--paiddays .about-us-card__inner, .about-us-card--yearsofservice .about-us-card__inner {
  aspect-ratio: 220/321;
}
.about-us-card--ages .about-us-card__inner {
  aspect-ratio: 455/321;
}
.about-us-card--founded .about-us-card__inner {
  background-image: image-set(url("../images/img_top_aboutus_founding.png") 1x, url("../images/img_top_aboutus_founding@2x.png") 2x);
}
.about-us-card--employees .about-us-card__inner {
  background-image: image-set(url("../images/img_top_aboutus_employee.png") 1x, url("../images/img_top_aboutus_employee@2x.png") 2x);
}
.about-us-card--ratio .about-us-card__inner {
  background-image: image-set(url("../images/img_top_aboutus_mfratio.png") 1x, url("../images/img_top_aboutus_mfratio@2x.png") 2x);
}
.about-us-card--ages .about-us-card__inner {
  background-image: image-set(url("../images/img_top_aboutus_age.png") 1x, url("../images/img_top_aboutus_age@2x.png") 2x);
}
.about-us-card--paiddays .about-us-card__inner {
  background-image: image-set(url("../images/img_top_aboutus_paiddays.png") 1x, url("../images/img_top_aboutus_paiddays@2x.png") 2x);
}
.about-us-card--yearsofservice .about-us-card__inner {
  background-image: image-set(url("../images/img_top_aboutus_yearsofservice.png") 1x, url("../images/img_top_aboutus_yearsofservice@2x.png") 2x);
}
.about-us-card__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  min-height: 321px;
  padding: 18px 20px 22px;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(81, 110, 214, 0.6);
  border-radius: 12px;
}
@media (width < 1440px) {
  .about-us-card__inner {
    min-height: 22.29vw;
    padding: 1.25vw 1.39vw 1.53vw;
  }
}
@media (width <= 767px) {
  .about-us-card__inner {
    min-height: 260px;
    padding: 18px 16px 20px;
  }
}
.about-us-card--founded .about-us-card__title, .about-us-card--founded .about-us-card__icon, .about-us-card--founded .about-us-card__value, .about-us-card--employees .about-us-card__title, .about-us-card--employees .about-us-card__icon, .about-us-card--employees .about-us-card__value, .about-us-card--ratio .about-us-card__title, .about-us-card--ratio .about-us-card__icon, .about-us-card--ratio .about-us-card__value, .about-us-card--ages .about-us-card__title, .about-us-card--ages .about-us-age-chart, .about-us-card--paiddays .about-us-card__icon, .about-us-card--paiddays .about-us-card__value, .about-us-card--yearsofservice .about-us-card__icon, .about-us-card--yearsofservice .about-us-card__value {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  clip-path: inset(50%);
}
.about-us-card__title {
  font-size: 24px;
  font-weight: 700;
  line-height: 145%;
  letter-spacing: 0.02em;
  color: var(--blue-01);
  text-align: center;
}
@media (width < 1440px) {
  .about-us-card__title {
    font-size: 1.67vw;
  }
}
@media (width <= 767px) {
  .about-us-card__title {
    font-size: 20px;
  }
}
.about-us-card__icon {
  display: grid;
  min-height: 92px;
  color: var(--blue-01);
  place-items: center;
  margin-top: auto;
}
.about-us-card__icon svg {
  display: block;
  max-width: 100%;
  height: auto;
}
@media (width <= 767px) {
  .about-us-card__icon {
    min-height: 76px;
  }
}
.about-us-card__value {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  line-height: 1;
  margin-top: auto;
  white-space: nowrap;
}
.about-us-card__number, .about-us-card__unit {
  color: transparent;
  background-image: linear-gradient(142deg, var(--blue-02) 12.299%, var(--blue-01) 89.399%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.about-us-card__number {
  font-family: var(--font-oswald);
  font-size: 100px;
  font-weight: 500;
  line-height: 0.92;
}
@media (width < 1440px) {
  .about-us-card__number {
    font-size: 6.94vw;
  }
}
@media (width <= 767px) {
  .about-us-card__number {
    font-size: 72px;
  }
}
.about-us-card__unit {
  font-size: 30px;
  font-weight: 700;
  line-height: 1.1;
  margin-left: 6px;
}
.about-us-card__unit--percent {
  font-family: var(--font-oswald);
  font-size: 50px;
  font-weight: 500;
  margin-left: 2px;
}
@media (width < 1440px) {
  .about-us-card__unit {
    font-size: 2.08vw;
  }
  .about-us-card__unit--percent {
    font-size: 3.47vw;
  }
}
@media (width <= 767px) {
  .about-us-card__unit {
    font-size: 24px;
  }
  .about-us-card__unit--percent {
    font-size: 36px;
  }
}

.about-us-age-chart {
  width: 100%;
  padding: 20px 12px 0;
  margin-top: auto;
}
.about-us-age-chart__columns {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 10px;
  min-height: 206px;
  padding: 0 6px;
  border-bottom: 2px solid var(--blue-01);
}
@media (width <= 767px) {
  .about-us-age-chart__columns {
    gap: 8px;
    min-height: 180px;
    padding: 0;
  }
}
.about-us-age-chart__column {
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
  min-width: 0;
}
.about-us-age-chart__column--20s .about-us-age-chart__bar {
  height: 106px;
}
.about-us-age-chart__column--30s .about-us-age-chart__bar {
  height: 42px;
}
.about-us-age-chart__column--40s .about-us-age-chart__bar {
  height: 27px;
}
.about-us-age-chart__column--50s .about-us-age-chart__bar {
  height: 18px;
}
.about-us-age-chart__column--60s .about-us-age-chart__bar {
  height: 12px;
}
@media (width <= 767px) {
  .about-us-age-chart__column {
    gap: 8px;
  }
  .about-us-age-chart__column--20s .about-us-age-chart__bar {
    height: 88px;
  }
  .about-us-age-chart__column--30s .about-us-age-chart__bar {
    height: 34px;
  }
  .about-us-age-chart__column--40s .about-us-age-chart__bar {
    height: 22px;
  }
  .about-us-age-chart__column--50s .about-us-age-chart__bar {
    height: 16px;
  }
  .about-us-age-chart__column--60s .about-us-age-chart__bar {
    height: 10px;
  }
}
.about-us-age-chart__value {
  display: flex;
  align-items: flex-end;
  line-height: 1;
  white-space: nowrap;
}
.about-us-age-chart__number, .about-us-age-chart__unit, .about-us-age-chart__label {
  color: transparent;
  background-image: linear-gradient(142deg, var(--blue-02) 12.299%, var(--blue-01) 89.399%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.about-us-age-chart__number {
  font-family: var(--font-oswald);
  font-size: 42px;
  font-weight: 500;
  line-height: 0.95;
}
@media (width < 1440px) {
  .about-us-age-chart__number {
    font-size: 2.92vw;
  }
}
@media (width <= 767px) {
  .about-us-age-chart__number {
    font-size: 28px;
  }
}
.about-us-age-chart__unit {
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  margin-left: 3px;
}
@media (width < 1440px) {
  .about-us-age-chart__unit {
    font-size: 1.67vw;
  }
}
@media (width <= 767px) {
  .about-us-age-chart__unit {
    font-size: 16px;
  }
}
.about-us-age-chart__bar {
  display: block;
  width: min(2.08vw, 30px);
  min-width: 18px;
  border: 2px solid var(--blue-01);
  border-bottom: none;
}
@media (width <= 767px) {
  .about-us-age-chart__bar {
    width: 18px;
    min-width: 18px;
  }
}
.about-us-age-chart__label {
  font-size: 30px;
  font-weight: 700;
  line-height: 1.1;
  margin-top: 2px;
  white-space: nowrap;
}
@media (width < 1440px) {
  .about-us-age-chart__label {
    font-size: 2.08vw;
  }
}
@media (width <= 767px) {
  .about-us-age-chart__label {
    font-size: 20px;
  }
}
@media (width < 1440px) {
  .about-us-age-chart {
    padding: 1.39vw 0.83vw 0;
  }
}
@media (width <= 767px) {
  .about-us-age-chart {
    padding: 16px 4px 0;
  }
}

.company-csr__container {
  background-color: var(--blue-05);
  padding-top: min(2.78vw, 40px);
  padding-bottom: min(9.03vw, 130px);
}
.company-csr__inner {
  display: flex;
  gap: min(1.67vw, 24px);
}
@media (width <= 767px) {
  .company-csr__inner {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }
}
.company-csr__company, .company-csr__csr {
  flex: 1;
}
@media (width <= 767px) {
  .company-csr__company, .company-csr__csr {
    width: 100%;
    max-width: 566px;
  }
}
.company-csr__header {
  position: relative;
  margin-top: min(3.47vw, 50px);
}
.company-csr__header::before {
  position: absolute;
  top: -0.833em;
  left: 0px;
  z-index: 1;
  font-family: var(--font-poppins);
  font-size: min(4.17vw, 60px);
  font-weight: 600;
  line-height: 160%;
  color: var(--color-white);
  opacity: 0.5;
  white-space: nowrap;
}
@media (width <= 767px) {
  .company-csr__header::before {
    font-size: 42px;
  }
}
.company-csr__company-header::before {
  content: "Company";
}
.company-csr__csr-header::before {
  content: "Approach on CSR";
}
.company-csr__title {
  position: relative;
  z-index: 2;
  font-size: min(2.22vw, 32px);
  font-weight: 600;
  line-height: 160%;
  letter-spacing: 0.05em;
  color: var(--color-black);
}
@media (width <= 767px) {
  .company-csr__title {
    font-size: 24px;
  }
}
.company-csr__text-wrapper {
  margin-top: min(0.49vw, 7px);
}
.company-csr__text {
  font-size: min(1.11vw, 16px);
  font-weight: 400;
  line-height: 180%;
  color: #000;
}
@media (width <= 767px) {
  .company-csr__text {
    font-size: 12px;
  }
}
.company-csr__img-wrapper {
  position: relative;
  margin-top: min(1.67vw, 24px);
}
.company-csr__img {
  width: 100%;
  height: auto;
}
.company-csr__link {
  position: absolute;
  right: 4.24%;
  bottom: 9.09%;
  z-index: 1;
  width: 10.6%;
  aspect-ratio: 1/1;
}

.recruit__container {
  background-image: image-set(url("../images/bg_top-recruit.jpg") 1x, url("../images/bg_top-recruit@2x.jpg") 2x);
  background-size: cover;
  background-position: center;
  padding-block: 90px 120px;
}
@media (width < 1440px) {
  .recruit__container {
    padding-block: 6.25vw 8.33vw;
  }
}
@media (width <= 767px) {
  .recruit__container {
    padding-block: 54px 72px;
  }
}
.recruit__title {
  display: flex;
  gap: 47px;
}
@media (width < 1440px) {
  .recruit__title {
    gap: 3.26vw;
  }
}
@media (width <= 767px) {
  .recruit__title {
    flex-direction: column;
    gap: 0;
  }
}
.recruit__title-main {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.recruit__title-main h2 {
  font-family: var(--font-poppins);
  font-size: 70px;
  font-weight: 600;
  line-height: 127%;
  letter-spacing: 0.05em;
  color: var(--color-white);
  order: 2;
}
@media (width < 1440px) {
  .recruit__title-main h2 {
    font-size: 4.86vw;
  }
}
@media (width <= 767px) {
  .recruit__title-main h2 {
    font-size: 42px;
  }
}
.recruit__title-main p {
  font-size: 20px;
  font-weight: 600;
  line-height: 160%;
  letter-spacing: 0.05em;
  color: var(--color-white);
  order: 1;
}
@media (width < 1440px) {
  .recruit__title-main p {
    font-size: 1.39vw;
  }
}
@media (width <= 767px) {
  .recruit__title-main p {
    font-size: 12px;
  }
}
.recruit__title-sub {
  display: flex;
  align-items: flex-end;
  padding-bottom: 12px;
}
.recruit__title-sub p {
  font-size: 20px;
  font-weight: 600;
  line-height: 160%;
  letter-spacing: 0.05em;
  color: var(--color-white);
  align-self: flex-end;
}
@media (width < 1440px) {
  .recruit__title-sub p {
    font-size: 1.39vw;
  }
}
@media (width <= 767px) {
  .recruit__title-sub p {
    font-size: 12px;
  }
}
@media (width < 1440px) {
  .recruit__title-sub {
    padding-bottom: 0.83vw;
  }
}
@media (width <= 767px) {
  .recruit__title-sub {
    padding-bottom: 7px;
  }
}
.recruit__content {
  display: flex;
  gap: 78px;
  margin-top: 31px;
}
@media (width < 1440px) {
  .recruit__content {
    gap: 5.42vw;
    margin-top: 2.15vw;
  }
}
@media (width <= 767px) {
  .recruit__content {
    flex-direction: column;
    align-items: center;
    gap: 1vw;
    margin-top: 19px;
  }
}
.recruit__image-wrapper {
  position: relative;
  width: 802px;
  flex-shrink: 0;
}
.recruit__image-wrapper picture {
  display: block;
}
.recruit__image-wrapper img {
  display: block;
  width: 100%;
}
@media (width < 1440px) {
  .recruit__image-wrapper {
    width: 55.69vw;
  }
}
@media (width <= 767px) {
  .recruit__image-wrapper {
    width: 100%;
    aspect-ratio: 350/196;
  }
}
.recruit__link {
  position: absolute;
  right: 14px;
  bottom: 14px;
  z-index: 2;
  width: 60px;
  height: 60px;
}
@media (width < 1440px) {
  .recruit__link {
    right: 0.97vw;
    bottom: 0.97vw;
    width: 4.17vw;
    height: 4.17vw;
  }
}
@media (width <= 767px) {
  .recruit__link {
    right: 2.86%;
    bottom: 5.1%;
    width: 10.6%;
    height: auto;
    aspect-ratio: 1/1;
  }
}
.recruit__text-wrapper {
  width: 276px;
  align-self: flex-end;
}
.recruit__text-wrapper p {
  font-size: 20px;
  font-weight: 400;
  line-height: 160%;
  letter-spacing: 0.05em;
  color: var(--color-white);
  transform: translateY(1.3em);
}
@media (width < 1440px) {
  .recruit__text-wrapper p {
    font-size: 1.39vw;
  }
}
@media (width <= 767px) {
  .recruit__text-wrapper p {
    font-size: 12px;
  }
}
@media (width < 1440px) {
  .recruit__text-wrapper {
    width: 27vw;
  }
}
@media (width <= 767px) {
  .recruit__text-wrapper {
    width: 100%;
    align-self: center;
  }
}

.news__container {
  padding-top: min(14.79vw, 213px);
}
@media (width <= 767px) {
  .news__container {
    padding-top: 56px;
  }
}
.news__inner {
  display: flex;
  align-items: flex-start;
  gap: min(8.54vw, 123px);
}
@media (width <= 767px) {
  .news__inner {
    flex-direction: column;
    gap: 28px;
  }
}
.news__header {
  width: 238px;
  flex-shrink: 0;
}
@media (width < 1440px) {
  .news__header {
    width: 16.53vw;
  }
}
@media (width <= 767px) {
  .news__header {
    display: contents;
    width: 100%;
  }
}
.news__title h2 {
  font-size: 40px;
  font-weight: 600;
  line-height: 160%;
  letter-spacing: 0.05em;
  color: var(--color-black);
}
@media (width < 1440px) {
  .news__title h2 {
    font-size: 2.78vw;
  }
}
@media (width <= 767px) {
  .news__title h2 {
    font-size: 24px;
  }
}
@media (width <= 767px) {
  .news__title {
    order: 1;
  }
}
.news__archive-link {
  display: inline-flex;
  align-items: center;
  gap: 30px;
  min-height: 70px;
  padding: 15px 21px;
  color: var(--color-black);
  background: var(--color-white);
  border-radius: 999px;
  margin-top: min(4.17vw, 60px);
  text-decoration: none;
}
@media (width <= 767px) {
  .news__archive-link {
    gap: 16px;
    min-height: 56px;
    padding: 10px 16px;
    order: 3;
    align-self: center;
    margin-top: 0;
  }
}
.news__archive-text {
  font-size: 20px;
  font-weight: 700;
  line-height: 160%;
  letter-spacing: 0.05em;
  white-space: nowrap;
}
@media (width < 1440px) {
  .news__archive-text {
    font-size: 1.39vw;
  }
}
@media (width <= 767px) {
  .news__archive-text {
    font-size: 16px;
  }
}
.news__archive-button {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}
@media (width <= 767px) {
  .news__archive-button {
    width: 36px;
    height: 36px;
  }
}
.news__content {
  flex: 1;
}
@media (width <= 767px) {
  .news__content {
    width: 100%;
    order: 2;
  }
}
.news__list {
  display: grid;
  gap: 30px;
  margin: 0;
  padding-left: 0;
}
@media (width <= 767px) {
  .news__list {
    gap: 18px;
  }
}
.news__item {
  display: grid;
  align-items: start;
  grid-template-columns: 116px 1fr;
  column-gap: 50px;
  list-style: none;
}
@media (width < 1440px) {
  .news__item {
    grid-template-columns: 8.06vw 1fr;
    column-gap: 3.47vw;
  }
}
@media (width <= 767px) {
  .news__item {
    grid-template-columns: 1fr;
    row-gap: 4px;
  }
}
.news__item-date {
  font-family: var(--roboto-font-family);
  font-size: 20px;
  font-weight: 400;
  line-height: 160%;
  color: var(--color-black);
  white-space: nowrap;
}
@media (width < 1440px) {
  .news__item-date {
    font-size: 1.39vw;
  }
}
@media (width <= 767px) {
  .news__item-date {
    font-size: 14px;
  }
}
.news__item-title {
  font-size: 20px;
  font-weight: 400;
  line-height: 160%;
  letter-spacing: 0.05em;
  color: var(--color-black);
}
@media (width < 1440px) {
  .news__item-title {
    font-size: 1.39vw;
  }
}
@media (width <= 767px) {
  .news__item-title {
    font-size: 14px;
  }
}

.access {
  margin-bottom: 5rem;
}
.access__container {
  padding-top: min(8.4vw, 121px);
}
@media (width < 1440px) {
  .access__container {
    padding-block: 9.31vw;
  }
}
@media (width <= 767px) {
  .access__container {
    padding-block: 40px;
  }
}
.access__title h2 {
  font-size: 40px;
  font-weight: 600;
  line-height: 160%;
  letter-spacing: 0.05em;
  color: var(--color-black);
}
@media (width < 1440px) {
  .access__title h2 {
    font-size: 2.78vw;
  }
}
@media (width <= 767px) {
  .access__title h2 {
    font-size: 24px;
  }
}
.access__content {
  position: relative;
  margin-top: 26px;
}
.access__content picture {
  display: block;
}
.access__content img {
  display: block;
  width: 100%;
}
@media (width < 1440px) {
  .access__content {
    margin-top: 1.81vw;
  }
}
@media (width <= 767px) {
  .access__content {
    margin-top: 16px;
    aspect-ratio: 350/196;
  }
}
.access__link {
  position: absolute;
  right: 14px;
  bottom: 14px;
  width: 60px;
  height: 60px;
}
@media (width < 1440px) {
  .access__link {
    right: 0.97vw;
    bottom: 0.97vw;
    width: 5.19vw;
    height: 5.19vw;
  }
}
@media (width <= 767px) {
  .access__link {
    right: 2.86%;
    bottom: 5.1%;
    width: 10.6%;
    height: auto;
    aspect-ratio: 1/1;
  }
}

.instagram {
  overflow: clip;
  margin-top: min(9.31vw, 134px);
}
.instagram__container {
  background: var(--blue-05);
  overflow: hidden;
  padding-top: min(8.33vw, 120px);
  padding-bottom: min(8.33vw, 120px);
}
@media (width <= 767px) {
  .instagram__container {
    padding-top: 56px;
    padding-bottom: 64px;
  }
}
.instagram__inner {
  overflow: visible;
}
.instagram__heading {
  display: grid;
  gap: 2px;
  justify-items: start;
}
.instagram__eyebrow {
  font-family: var(--font-poppins);
  font-size: 20px;
  font-weight: 500;
  line-height: 160%;
  color: var(--blue-01);
}
@media (width < 1440px) {
  .instagram__eyebrow {
    font-size: 1.39vw;
  }
}
@media (width <= 767px) {
  .instagram__eyebrow {
    font-size: 16px;
  }
}
.instagram__title {
  font-size: 32px;
  font-weight: 600;
  line-height: 160%;
  color: var(--color-black);
  margin-top: 1px;
}
@media (width < 1440px) {
  .instagram__title {
    font-size: 2.22vw;
  }
}
@media (width <= 767px) {
  .instagram__title {
    font-size: 26px;
  }
}
.instagram__lead {
  font-size: 16px;
  font-weight: 400;
  line-height: 180%;
  color: var(--color-black);
  margin-top: 2px;
}
@media (width < 1440px) {
  .instagram__lead {
    font-size: 1.11vw;
  }
}
@media (width <= 767px) {
  .instagram__lead {
    font-size: 14px;
    line-height: 171.43%;
  }
}
.instagram__posts {
  display: grid;
  gap: min(1.39vw, 20px);
  width: max-content;
  margin-bottom: 0;
  padding-left: 0;
  margin-top: min(3.47vw, 50px);
  grid-template-columns: repeat(4, 330px);
}
@media (width <= 767px) {
  .instagram__posts {
    gap: 12px;
    width: 100%;
    margin-top: 24px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.instagram__post {
  width: 330px;
  list-style: none;
}
@media (width <= 767px) {
  .instagram__post {
    width: auto;
  }
}
.instagram__post-card {
  position: relative;
  display: block;
  width: 100%;
  background: #c6c8d8;
  border-radius: 30px;
  overflow: hidden;
  aspect-ratio: 1/1;
}
.instagram__post-card img,
.instagram__post-card picture,
.instagram__post-card picture img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (width <= 767px) {
  .instagram__post-card {
    border-radius: 20px;
  }
}
.instagram__actions {
  display: flex;
  justify-content: flex-end;
  margin-top: min(2.78vw, 40px);
}
@media (width <= 767px) {
  .instagram__actions {
    margin-top: 24px;
  }
}
.instagram__archive-link {
  display: inline-flex;
  align-items: center;
  gap: 30px;
  min-height: 70px;
  padding: 15px 16px 15px 32px;
  color: var(--color-black);
  border-radius: 999px;
  text-decoration: none;
}
@media (width <= 767px) {
  .instagram__archive-link {
    gap: 16px;
    min-height: 56px;
    padding: 10px 12px 10px 20px;
  }
}
.instagram__archive-text {
  font-size: 20px;
  font-weight: 700;
  line-height: 160%;
  letter-spacing: 0.05em;
}
@media (width < 1440px) {
  .instagram__archive-text {
    font-size: 1.39vw;
  }
}
@media (width <= 767px) {
  .instagram__archive-text {
    font-size: 16px;
  }
}
.instagram__archive-button {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}
@media (width <= 767px) {
  .instagram__archive-button {
    width: 36px;
    height: 36px;
  }
}/**
 * Swiper 12.0.3
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2025 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: October 21, 2025
 */

:root {
  --swiper-theme-color: #007aff;
  /*
  --swiper-preloader-color: var(--swiper-theme-color);
  --swiper-wrapper-transition-timing-function: initial;
  */
}
:host {
  position: relative;
  z-index: 1;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.swiper {
  position: relative;
  /* Fix of Webkit flickering */
  z-index: 1;
  display: block;
  padding: 0;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
  list-style: none;
}
.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}
.swiper-wrapper {
  position: relative;
  z-index: 1;
  display: flex;
  width: 100%;
  height: 100%;
  transition-property: transform;
  transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
  box-sizing: content-box;
}
.swiper-android .swiper-slide,
.swiper-ios .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}
.swiper-horizontal {
  touch-action: pan-y;
}
.swiper-vertical {
  touch-action: pan-x;
}
.swiper-slide {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  flex-shrink: 0;
  transition-property: transform;
}
.swiper-slide-invisible-blank {
  visibility: hidden;
}
/* Auto Height */
.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}
.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}
.swiper-backface-hidden .swiper-slide {
  transform: translateZ(0);
  backface-visibility: hidden;
}
/* 3D Effects */
.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}
.swiper-3d .swiper-wrapper {
  transform-style: preserve-3d;
}
.swiper-3d {
  perspective: 1200px;
  .swiper-slide,
  .swiper-cube-shadow {
    transform-style: preserve-3d;
  }
}

/* CSS Mode */
.swiper-css-mode {
  > .swiper-wrapper {
    overflow: auto;
    scrollbar-width: none; /* For Firefox */
    -ms-overflow-style: none; /* For Internet Explorer and Edge */
    &::-webkit-scrollbar {
      display: none;
    }
  }
  > .swiper-wrapper > .swiper-slide {
    scroll-snap-align: start start;
  }
  &.swiper-horizontal {
    > .swiper-wrapper {
      scroll-snap-type: x mandatory;
    }
  }
  &.swiper-vertical {
    > .swiper-wrapper {
      scroll-snap-type: y mandatory;
    }
  }
  &.swiper-free-mode {
    > .swiper-wrapper {
      scroll-snap-type: none;
    }
    > .swiper-wrapper > .swiper-slide {
      scroll-snap-align: none;
    }
  }
  &.swiper-centered {
    > .swiper-wrapper::before {
      content: '';
      flex-shrink: 0;
      order: 9999;
    }
    > .swiper-wrapper > .swiper-slide {
      scroll-snap-align: center center;
      scroll-snap-stop: always;
    }
  }
  &.swiper-centered.swiper-horizontal {
    > .swiper-wrapper > .swiper-slide:first-child {
      margin-inline-start: var(--swiper-centered-offset-before);
    }
    > .swiper-wrapper::before {
      width: var(--swiper-centered-offset-after);
      height: 100%;
      min-height: 1px;
    }
  }
  &.swiper-centered.swiper-vertical {
    > .swiper-wrapper > .swiper-slide:first-child {
      margin-block-start: var(--swiper-centered-offset-before);
    }
    > .swiper-wrapper::before {
      width: 100%;
      min-width: 1px;
      height: var(--swiper-centered-offset-after);
    }
  }
}

/* Slide styles start */
/* 3D Shadows */
.swiper-3d {
  .swiper-slide-shadow,
  .swiper-slide-shadow-left,
  .swiper-slide-shadow-right,
  .swiper-slide-shadow-top,
  .swiper-slide-shadow-bottom,
  .swiper-slide-shadow,
  .swiper-slide-shadow-left,
  .swiper-slide-shadow-right,
  .swiper-slide-shadow-top,
  .swiper-slide-shadow-bottom {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
    width: 100%;
    height: 100%;
    pointer-events: none;
  }
  .swiper-slide-shadow {
    background: rgba(0, 0, 0, 0.15);
  }
  .swiper-slide-shadow-left {
    background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
  .swiper-slide-shadow-right {
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
  .swiper-slide-shadow-top {
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
  .swiper-slide-shadow-bottom {
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
}
.swiper-lazy-preloader {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 10;
  width: 42px;
  height: 42px;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  margin-left: -21px;
  margin-top: -21px;
  transform-origin: 50%;
  box-sizing: border-box;
  border-top-color: transparent;
}
.swiper:not(.swiper-watch-progress),
.swiper-watch-progress .swiper-slide-visible {
  .swiper-lazy-preloader {
    animation: swiper-preloader-spin 1s infinite linear;
  }
}
.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}
.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}
@keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* Slide styles end */
.swiper-fade {
  &.swiper-free-mode {
    .swiper-slide {
      transition-timing-function: ease-out;
    }
  }
  .swiper-slide {
    pointer-events: none;
    transition-property: opacity;
    .swiper-slide {
      pointer-events: none;
    }
  }
  .swiper-slide-active {
    pointer-events: auto;
    & .swiper-slide-active {
      pointer-events: auto;
    }
  }
}
