img {
  width: 100%;
}

.c-wrap {
  margin: 0 auto;
  width: 90%;
  max-width: 600px;
}
@media screen and (min-width: 1080px) {
  .c-wrap {
    width: 94%;
    max-width: 1700px;
  }
}

.s-of-hidden {
  overflow: hidden;
}

@media screen and (min-width: 1080px) {
  .s-lg-hidden {
    display: none;
  }
}

.s-lg-block {
  display: none;
}
@media screen and (min-width: 1080px) {
  .s-lg-block {
    display: block;
  }
}

@keyframes softPulse {
  0% {
    transform: scale(1);
  }
  70% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
.s-fade-in {
  opacity: 0;
}
.s-fade-in.s-in-view {
  opacity: 1;
}

@keyframes overshootUp {
  0% {
    transform: translateY(0%);
  }
  70% {
    transform: translateY(-120%);
  }
  100% {
    transform: translateY(-100%);
  }
}
@keyframes returnDown {
  0% {
    transform: translateY(-100%);
  }
  70% {
    transform: translateY(20%);
  }
  100% {
    transform: translateY(0%);
  }
}
.s-hover-text p, .s-hover-text span {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  text-align: inherit;
  transition: inherit;
}
.s-hover-text p {
  clip-path: inset(0 0 0 0);
}
.s-hover-text span {
  display: inline-block;
  position: relative;
  transition: 0.2s;
  animation: returnDown 0.4s ease forwards;
}
.s-hover-text span::after {
  position: absolute;
  content: attr(data-text);
  left: 50%;
  transform: translate(-50%, 100%);
  width: 100%;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  text-align: inherit;
  transition: inherit;
}
.s-hover-text:hover span {
  animation: overshootUp 0.4s ease forwards;
}

.header {
  position: fixed;
  width: 96%;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 6px;
  background: #fff;
  z-index: 99;
}
@media screen and (min-width: 1080px) {
  .header {
    top: 38px;
    width: 88%;
    border-radius: 16px;
  }
}
.header__inner {
  padding-block: 15px 13px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (min-width: 1080px) {
  .header__inner {
    padding-block: 22px 19px;
  }
}
.header__logo {
  display: block;
  width: 85px;
}
@media screen and (min-width: 1080px) {
  .header__logo {
    width: 134px;
  }
}
.header__content {
  display: flex;
  align-items: center;
  gap: 18px;
}
@media screen and (min-width: 1080px) {
  .header__content {
    gap: 34px;
  }
}
.header__links {
  display: none;
}
@media screen and (min-width: 1080px) {
  .header__links {
    display: flex;
    align-items: center;
    gap: 32px;
  }
}
.header__link {
  font-family: "Cantarell", sans-serif;
  font-size: 16px;
  font-weight: bold;
}
.header__contact {
  overflow: hidden;
  position: relative;
  padding: 5px 13px;
  display: flex;
  align-items: center;
  gap: 3px;
  background: #000;
  border-radius: 20px;
}
@media screen and (min-width: 1080px) {
  .header__contact {
    gap: 10px;
  }
}
.header__contact::before {
  position: absolute;
  content: "";
  background: url(../img/icon-contact.webp) no-repeat center center/contain;
  width: 15px;
  height: 19px;
  top: 50%;
  transform: translateY(-50%);
  left: -15px;
  transition: 0.2s;
  opacity: 0;
}
@media screen and (min-width: 1080px) {
  .header__contact::before {
    width: 24px;
    height: 30px;
  }
}
.header__contact:hover::before {
  left: 11px;
  opacity: 1;
}
.header__contact:hover .header__contact-content {
  transform: translateX(20px);
}
@media screen and (min-width: 1080px) {
  .header__contact:hover .header__contact-content {
    transform: translateX(30px);
  }
}
.header__contact:hover .header__contact-icon {
  opacity: 0;
}
.header__contact-content {
  display: flex;
  align-items: center;
  gap: 10px;
  transition: 0.2s;
}
.header__contact-icon {
  display: block;
  width: 15px;
  opacity: 1;
  transition: 0.2s;
}
@media screen and (min-width: 1080px) {
  .header__contact-icon {
    width: 24px;
  }
}
.header__contact-text span {
  font-family: "Cantarell", sans-serif;
  font-size: 13px;
  color: #fff;
  font-weight: bold;
  letter-spacing: -0.05em;
}
@media screen and (min-width: 1080px) {
  .header__contact-text span {
    font-size: 16px;
  }
}
.header__drawer {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 20px;
  height: 14px;
}
@media screen and (min-width: 1080px) {
  .header__drawer {
    display: none;
  }
}
.header__drawer span {
  position: absolute;
  display: block;
  background: #000;
  border-radius: 100px;
  width: 100%;
  height: 2px;
  left: 50%;
  transform: translateX(-50%);
  transition: 0.3s;
}
.header__drawer span:nth-of-type(1) {
  top: 0;
}
.header__drawer span:nth-of-type(2) {
  top: 50%;
  transform: translate(-50%, -50%);
}
.header__drawer span:nth-of-type(3) {
  bottom: 0;
}
.header__drawer.is-checked span:nth-of-type(1) {
  top: 7px;
  transform: translateX(-50%) rotate(35deg);
}
.header__drawer.is-checked span:nth-of-type(2) {
  opacity: 0;
}
.header__drawer.is-checked span:nth-of-type(3) {
  bottom: 5px;
  transform: translateX(-50%) rotate(-35deg);
}

.g-nav {
  position: fixed;
  z-index: 98;
  background: #F05539;
  width: 100%;
  height: 100dvh;
  color: #fff;
  transform: translateX(100%);
  pointer-events: none;
  transition: 0.5s;
}
.g-nav.is-checked {
  pointer-events: auto;
  transform: translateX(0%);
}
.g-nav__wrap {
  height: 100%;
}
.g-nav__inner {
  margin: 0 auto;
  padding-block: 160px 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  max-width: 350px;
}
.g-nav__lists {
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.g-nav__list {
  font-family: "Cantarell", sans-serif;
  font-size: 39px;
  font-weight: bold;
}
.g-nav__contact {
  margin-top: 21px;
  padding-block: 20px 20px;
  display: inline-block;
  width: 100%;
  font-family: "Cantarell", sans-serif;
  font-size: 15px;
  font-weight: bold;
  border-radius: 37px;
  text-align: center;
  border: 1px solid #fff;
}
.g-nav__copy {
  margin-top: 20px;
  font-family: "Cantarell", sans-serif;
  font-size: 13px;
  font-weight: bold;
  text-align: right;
}

.hero {
  overflow: hidden;
  height: 698px;
  background: #EFECE7;
  position: relative;
}
@media screen and (min-width: 1080px) {
  .hero {
    height: 1150px;
  }
}
.hero__bg-circle {
  position: absolute;
  display: block;
  width: 601px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -45%);
}
@media screen and (min-width: 1080px) {
  .hero__bg-circle {
    width: 1291px;
    transform: translate(-50%, -49%);
  }
}
.hero__inner {
  margin: 0 auto;
  position: relative;
  height: 100%;
  width: 100%;
  max-width: 600px;
}
@media screen and (min-width: 1080px) {
  .hero__inner {
    max-width: 100%;
  }
}
.hero__content {
  position: absolute;
  display: flex;
  align-items: center;
  top: 50.5%;
  left: 23px;
  z-index: 3;
}
@media screen and (min-width: 1080px) {
  .hero__content {
    top: 44%;
    left: calc(50% - 470px);
  }
}
.hero__content span {
  margin-inline: 31px 21px;
  display: block;
  background-color: #000;
  width: 4px;
  height: 76px;
  border-radius: 10px;
}
@media screen and (min-width: 768px) {
  .hero__content span {
    height: 107px;
  }
}
@media screen and (min-width: 1080px) {
  .hero__content span {
    margin-inline: 62px 51px;
    width: 11px;
    height: 208px;
  }
}
.hero__title-en {
  font-family: "Cantarell", sans-serif;
  font-size: 19px;
  letter-spacing: -0.05em;
  line-height: 120%;
  font-weight: bold;
  color: #F05539;
}
@media screen and (min-width: 768px) {
  .hero__title-en {
    font-size: 30px;
  }
}
@media screen and (min-width: 1080px) {
  .hero__title-en {
    font-size: 58px;
  }
}
.hero__title {
  font-family: "Noto Sans", sans-serif;
  font-size: 31px;
  letter-spacing: -0.05em;
  line-height: 120%;
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .hero__title {
    font-size: 45px;
  }
}
@media screen and (min-width: 1080px) {
  .hero__title {
    font-size: 89px;
  }
}
.hero__heart-blue {
  position: absolute;
  display: block;
  width: 172px;
  top: -25px;
  left: -40px;
  animation: softPulse 2s infinite;
  transform-origin: center;
}
@media screen and (min-width: 1080px) {
  .hero__heart-blue {
    width: 407px;
    top: -90px;
    left: 57px;
  }
}
.hero__heart-red {
  position: absolute;
  display: block;
  width: 277px;
  top: 87px;
  right: -113px;
  animation: softPulse 2s infinite;
  transform-origin: center;
  animation-delay: 0.3s;
}
@media screen and (min-width: 1080px) {
  .hero__heart-red {
    width: 710px;
    top: 133px;
    right: -260px;
  }
}
.hero__heart-lightblue {
  position: absolute;
  display: block;
  width: 224px;
  bottom: -10px;
  left: -76px;
  animation: softPulse 2s infinite;
  transform-origin: center;
  animation-delay: 0.6s;
}
@media screen and (min-width: 1080px) {
  .hero__heart-lightblue {
    width: 407px;
    bottom: 31px;
    left: -45px;
  }
}

.philosophy {
  display: flex;
}
.philosophy__container {
  margin-top: -32px;
  padding-block: 113px 98px;
  position: relative;
  background: #F5F9FC;
  border-radius: 16px 16px 0 0;
  width: 100%;
}
@media screen and (min-width: 1080px) {
  .philosophy__container {
    margin-top: -100px;
    border-radius: 60px 60px 0 0;
    padding-block: 335px 163px;
  }
}
.philosophy__inner {
  position: relative;
  z-index: 0;
}
@media screen and (min-width: 1080px) {
  .philosophy__inner {
    margin: 0 auto;
    width: 78.5%;
  }
}
.philosophy__title {
  font-family: "Cantarell", sans-serif;
  font-weight: bold;
  font-size: 47px;
  line-height: 115%;
  display: block;
}
@media screen and (min-width: 1080px) {
  .philosophy__title {
    font-size: 80px;
  }
}
.philosophy__sub-title {
  font-family: "Cantarell", sans-serif;
  font-weight: bold;
  font-size: 15px;
  line-height: 180%;
  letter-spacing: -0.05em;
}
@media screen and (min-width: 1080px) {
  .philosophy__sub-title {
    font-size: 35px;
  }
}
.philosophy__text {
  padding-inline: 6px;
  margin-top: 58px;
  font-family: "Noto Sans", sans-serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.08em;
  line-height: 237%;
}
@media screen and (min-width: 1080px) {
  .philosophy__text {
    padding-inline: 30px;
    margin-top: 73px;
    margin-left: auto;
    margin-right: -92px;
    font-size: 23px;
    line-height: 348%;
    width: fit-content;
    letter-spacing: -0.01em;
  }
}
.philosophy__cloud {
  position: absolute;
  display: block;
  width: 129px;
  top: 70px;
  right: calc(50% - 160px);
  z-index: -1;
  animation: softPulse 2s infinite;
  transform-origin: center;
}
@media screen and (min-width: 1080px) {
  .philosophy__cloud {
    width: 398px;
    top: 226px;
    right: auto;
    left: -25px;
  }
}
.philosophy__bg-title {
  position: absolute;
  font-family: "Cantarell", sans-serif;
  font-weight: bold;
  font-size: 113px;
  color: #fff;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  letter-spacing: -0.05em;
}
@media screen and (min-width: 1080px) {
  .philosophy__bg-title {
    font-size: 320px;
  }
}

.scroll {
  position: relative;
  overflow: hidden;
  height: 358px;
  background: #EBEBEB;
  box-shadow: 0px 0px 50px rgba(0, 0, 0, 0.1294117647) inset;
}
@media screen and (min-width: 1080px) {
  .scroll {
    height: 431px;
  }
}
.scroll__content {
  position: absolute;
  width: fit-content;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
}
.scroll__item {
  width: 25.87vw;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
}
.scroll__item--pc {
  display: none;
}
@media screen and (min-width: 768px) {
  .scroll__item--pc {
    display: block;
  }
}
@media screen and (min-width: 768px) {
  .scroll__item {
    width: 219px;
    width: 12.88vw;
  }
}
.scroll__item + .scroll__item {
  margin-left: 10px;
}
@media screen and (min-width: 768px) {
  .scroll__item + .scroll__item {
    margin-left: 77px;
  }
}
.scroll__item:nth-of-type(3) {
  margin-left: 27px;
}
@media screen and (min-width: 768px) {
  .scroll__item:nth-of-type(3) {
    margin-left: 77px;
  }
}
.scroll__item:nth-of-type(4) {
  width: 37.33vw;
}
@media screen and (min-width: 768px) {
  .scroll__item:nth-of-type(4) {
    width: 19vw;
  }
}
@media screen and (min-width: 768px) {
  .scroll__item:nth-of-type(4), .scroll__item:nth-of-type(5) {
    margin-left: 24px;
  }
}
.scroll__item img {
  margin-top: 16px;
}
.dna {
  position: relative;
  overflow: visible;
  z-index: 1;
}
.dna #dna-swiper {
  overflow: visible;
}
.dna #dna-swiper::after {
  position: absolute;
  content: "";
  background: url(../img/dna-wave-white.webp) no-repeat center center/contain;
  width: 251%;
  aspect-ratio: 1412/170;
  left: 50%;
  bottom: -5.4%;
  transform: translateX(-49%);
  z-index: 0;
}
@media screen and (min-width: 768px) {
  .dna #dna-swiper::after {
    bottom: -7.5%;
  }
}
@media screen and (min-width: 1080px) {
  .dna #dna-swiper::after {
    background: url(../img/dna-wave-white-pc.webp) no-repeat center center/contain;
    width: 146%;
    aspect-ratio: 2477/122;
    bottom: -5.9%;
  }
}
.dna__item {
  position: relative;
  padding-block: 67px 143px;
  z-index: 2;
}
@media screen and (min-width: 1080px) {
  .dna__item {
    padding-block: 158px 85px;
  }
}
.dna__item--mission {
  background: #F8932D;
}
.dna__item--mission::after {
  position: absolute;
  content: "";
  background: url(../img/dna-wave-mission.webp) no-repeat center center/contain;
  width: 251%;
  aspect-ratio: 1412/170;
  left: 50%;
  bottom: -5.5%;
  transform: translateX(-49%);
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .dna__item--mission::after {
    bottom: -7.5%;
  }
}
@media screen and (min-width: 1080px) {
  .dna__item--mission::after {
    background: url(../img/dna-wave-mission-pc.webp) no-repeat center center/contain;
    width: 146%;
    aspect-ratio: 2477/122;
    bottom: -6%;
  }
}
.dna__item--vision {
  background: #3A77F4;
}
.dna__item--vision::after {
  position: absolute;
  content: "";
  background: url(../img/dna-wave-vision.webp) no-repeat center center/contain;
  width: 251%;
  aspect-ratio: 1412/170;
  left: 50%;
  bottom: -5.5%;
  transform: translateX(-49%);
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .dna__item--vision::after {
    bottom: -7.5%;
  }
}
@media screen and (min-width: 1080px) {
  .dna__item--vision::after {
    background: url(../img/dna-wave-vision-pc.webp) no-repeat center center/contain;
    width: 146%;
    aspect-ratio: 2477/122;
    bottom: -6%;
  }
}
.dna__inner {
  padding-inline: 2px;
}
@media screen and (min-width: 1080px) {
  .dna__inner {
    padding-inline: 0px;
  }
}
@media screen and (min-width: 1080px) {
  .dna .c-wrap {
    padding-inline: 50px;
  }
}
.dna__sub-title {
  font-family: "Noto Sans", sans-serif;
  font-size: 16px;
  font-weight: bold;
  font-feature-settings: "palt";
  color: #fff;
}
@media screen and (min-width: 1080px) {
  .dna__sub-title {
    font-size: 20px;
  }
}
.dna__title {
  font-family: "Cantarell", sans-serif;
  font-size: 47px;
  font-weight: bold;
  letter-spacing: -0.05em;
  color: #fff;
}
@media screen and (min-width: 1080px) {
  .dna__title {
    font-size: 80px;
    line-height: 122%;
  }
}
.dna__content {
  position: relative;
  margin-top: 26px;
  z-index: 0;
}
.dna__desc {
  font-family: "Noto Sans", sans-serif;
  font-size: 16px;
  font-weight: bold;
  font-feature-settings: "palt";
  color: #fff;
  line-height: 175%;
  min-height: 112px;
}
@media screen and (min-width: 1080px) {
  .dna__desc {
    margin-top: 32px;
    font-size: 18px;
    line-height: 229%;
    height: 124px;
    min-height: 100%;
  }
}
.dna__desc--vision {
  letter-spacing: -0.05em;
}
.dna__bg-title {
  position: absolute;
  font-family: "Cantarell", sans-serif;
  font-size: 88px;
  font-weight: bold;
  letter-spacing: -0.05em;
  color: rgba(255, 255, 255, 0.1294117647);
  bottom: -69px;
  left: calc(50% - 74px);
  z-index: -1;
}
@media screen and (min-width: 1080px) {
  .dna__bg-title {
    font-size: 309px;
  }
}
@media screen and (min-width: 1080px) {
  .dna__bg-title--vision {
    left: calc(50% - 166px);
  }
}
.dna #dna-swiper {
  overflow: visible;
}
.dna__card {
  position: relative;
  margin: 37px auto 0;
  padding: 40px 31px 24px;
  background: #fff;
  border-radius: 16px;
  border: 8px solid #F6F6F6;
  height: 352px;
  width: 90%;
  max-width: 600px;
}
@media screen and (min-width: 1080px) {
  .dna__card {
    margin: 62px 0 0;
    padding: 80px 31px 53px;
    border-radius: 0 16px 16px 0;
    border-top: 26px solid #F6F6F6;
    border-right: 26px solid #F6F6F6;
    border-left: none;
    border-bottom: 26px solid #F6F6F6;
    height: 508px;
    width: 80%;
    max-width: 100%;
  }
}
@media screen and (min-width: 1080px) and (min-width: 1280px) {
  .dna__card {
    height: 559px;
  }
}
.dna__card--vision {
  padding: 36px 31px 24px;
}
.dna__card-inner {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  display: flex;
  max-width: 257px;
}
@media screen and (min-width: 1080px) {
  .dna__card-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    max-width: 950px;
  }
}
@media screen and (min-width: 1480px) {
  .dna__card-inner {
    width: 80%;
    max-width: 950px;
  }
}
@media screen and (min-width: 1480px) {
  .dna__card-inner--vision {
    width: 75%;
  }
}
.dna__thumb {
  display: flex;
  flex-direction: column;
  align-items: end;
}
@media screen and (min-width: 1080px) {
  .dna__thumb {
    width: 364.93px;
  }
}
@media screen and (min-width: 1280px) {
  .dna__thumb {
    width: 436px;
  }
}
.dna__thumb--mission {
  margin: 0 auto;
  width: 163px;
}
@media screen and (min-width: 1080px) {
  .dna__thumb--mission {
    margin: 0;
    width: auto;
  }
}
@media screen and (min-width: 1080px) {
  .dna__image {
    width: 365px;
  }
}
@media screen and (min-width: 1280px) {
  .dna__image {
    width: 436px;
  }
}
.dna__image--vision {
  margin: 0 auto;
  padding-right: 11px;
  display: block;
  width: 164px;
}
@media screen and (min-width: 1080px) {
  .dna__image--vision {
    width: 300px;
  }
}
@media screen and (min-width: 1280px) {
  .dna__image--vision {
    width: 358px;
  }
}
.dna__label {
  font-family: "Cantarell", sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.05em;
}
@media screen and (min-width: 1080px) {
  .dna__label {
    font-size: 50px;
  }
}
.dna__label--mission {
  margin-top: -29px;
  margin-right: 12px;
  color: #F8932D;
}
@media screen and (min-width: 1080px) {
  .dna__label--mission {
    margin-top: -80px;
  }
}
.dna__label--vision {
  margin-top: -25px;
  margin-right: 17px;
  color: #3A77F4;
}
@media screen and (min-width: 1080px) {
  .dna__label--vision {
    margin-top: 22px;
    margin-right: 71px;
  }
}
@media screen and (min-width: 1280px) {
  .dna__label--vision {
    margin-right: 116px;
  }
}
.dna__body {
  margin-top: 42px;
  gap: 13px;
}
@media screen and (min-width: 1080px) {
  .dna__body {
    padding-bottom: 30px;
    margin-top: 0;
    display: flex;
    flex-direction: column;
    gap: 50px;
  }
}
@media screen and (min-width: 1080px) {
  .dna__body--vision {
    padding-top: 20px;
    padding-bottom: 9px;
    padding-right: 63px;
  }
}
@media screen and (min-width: 1280px) {
  .dna__body--vision {
    padding-top: 20px;
    padding-bottom: 0px;
    padding-right: 70px;
  }
}
.dna__tag {
  font-family: "Cantarell", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: -0.05em;
}
@media screen and (min-width: 1080px) {
  .dna__tag {
    font-size: 20px;
  }
}
.dna__text {
  font-family: "Noto Sans", sans-serif;
  font-size: 18px;
  font-weight: bold;
  font-feature-settings: "palt";
  white-space: nowrap;
}
@media screen and (min-width: 1080px) {
  .dna__text {
    font-size: 34px;
  }
}
.dna__container {
  padding-inline: 10px;
  position: absolute;
  bottom: 0;
  z-index: 1;
  color: #fff;
  width: 100%;
}
@media screen and (min-width: 1080px) {
  .dna__container {
    bottom: auto;
    right: 0%;
    top: 44%;
    width: fit-content;
  }
}
@media screen and (min-width: 1580px) {
  .dna__container {
    right: 8.5%;
    top: 44%;
  }
}
.dna__container-inner {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
@media screen and (min-width: 1080px) {
  .dna__container-inner {
    width: fit-content;
    align-items: start;
    gap: 125px;
  }
}
.dna__control {
  display: flex;
  align-items: center;
  gap: 24px;
}
@media screen and (min-width: 1080px) {
  .dna__control {
    flex-direction: column;
    width: fit-content;
    height: fit-content;
  }
}
.dna__control-label {
  font-family: "Cantarell", sans-serif;
  font-size: 15px;
  font-weight: bold;
  letter-spacing: -0.05em;
}
@media screen and (min-width: 1080px) {
  .dna__control-label {
    writing-mode: vertical-rl;
  }
}
.dna__control-scroll-content {
  display: flex;
  align-items: center;
  gap: 15px;
}
@media screen and (min-width: 1080px) {
  .dna__control-scroll-content {
    flex-direction: column;
    gap: 50px;
  }
}
.dna__control-num {
  font-family: "Cantarell", sans-serif;
  font-size: 15px;
  font-weight: bold;
}
.dna__control-scrollbar {
  width: 78px;
  height: 2px;
  opacity: 0.6;
  background: rgba(255, 255, 255, 0.3764705882);
  overflow: hidden;
  position: relative;
}
@media screen and (min-width: 1080px) {
  .dna__control-scrollbar {
    transform: rotate(90deg);
  }
}
.dna__control-bar {
  height: 100%;
  width: 0%;
  background: #fff;
  transition: none;
}
.dna__container-text {
  margin-left: auto;
  font-family: "Cantarell", sans-serif;
  font-size: 12px;
  font-weight: bold;
  line-height: 205%;
  letter-spacing: -0.05em;
  white-space: nowrap;
}
@media screen and (min-width: 1080px) {
  .dna__container-text {
    margin: 0 0 0 28px;
  }
}

.business {
  padding-block: 100px 13px;
  background: #383842;
  position: relative;
  z-index: 0;
}
@media screen and (min-width: 1080px) {
  .business {
    padding-block: 225px 0px;
  }
}
@media screen and (min-width: 1480px) {
  .business__inner {
    margin: 0 auto;
    padding-inline: 91px 220px;
    width: 100%;
    max-width: 1700px;
  }
  .business__inner .c-wrap {
    margin: 0;
  }
}
@media screen and (min-width: 1480px) {
  .business__inner {
    display: flex;
    justify-content: space-between;
  }
}
.business__head {
  display: flex;
  flex-direction: column;
}
.business__sub-title {
  font-family: "Noto Sans", sans-serif;
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  letter-spacing: normal;
}
@media screen and (min-width: 1080px) {
  .business__sub-title {
    font-size: 20px;
  }
}
.business__title {
  font-family: "Cantarell", sans-serif;
  font-size: 47px;
  font-weight: bold;
  color: #fff;
  letter-spacing: -0.05em;
  line-height: 140%;
}
@media screen and (min-width: 1080px) {
  .business__title {
    font-size: 80px;
  }
}
.business__buttons {
  position: relative;
  margin-top: 32px;
  display: flex;
  align-items: center;
  gap: 42px;
  width: 100%;
}
@media screen and (min-width: 1080px) {
  .business__buttons {
    margin-top: 47px;
    padding-right: 46px;
    gap: 20px;
    justify-content: center;
  }
}
@media screen and (min-width: 1480px) {
  .business__buttons {
    margin-top: 122px;
    padding-right: 0;
    padding-left: 100px;
    margin-left: auto;
    flex-direction: column;
    align-items: start;
  }
}
.business__button {
  position: relative;
  font-family: "Cantarell", sans-serif;
  font-size: 20px;
  font-weight: bold;
  letter-spacing: -0.05em;
  color: rgba(255, 255, 255, 0.1254901961);
  transition: 0.3s;
}
@media screen and (min-width: 1080px) {
  .business__button {
    font-size: 26px;
  }
}
.business__button.is-active {
  color: #B94B67;
}
.business__button.is-active::after {
  position: absolute;
  content: "";
  background: url(../img/business-button-arrow.svg) no-repeat center center/contain;
  width: 12px;
  height: 11px;
  left: 50%;
  bottom: -20px;
  transform: translateX(-50%);
}
@media screen and (min-width: 1480px) {
  .business__button.is-active::after {
    left: auto;
    right: -30px;
    bottom: 50%;
    transform: translateY(62%) rotate(-90deg);
  }
}
.business__button:hover {
  cursor: pointer;
}
.business__container {
  margin-top: 17px;
  padding-block: 30px 50px;
  overflow-x: auto;
  height: 335px;
}
@media screen and (min-width: 1080px) {
  .business__container {
    margin-top: 113px;
    padding: 0;
    overflow: visible;
    height: 560px;
    display: flex;
    flex-direction: column;
  }
}
@media screen and (min-width: 1480px) {
  .business__container {
    margin-top: 113px;
  }
}
.business__items {
  margin: 0 auto;
  display: flex;
  gap: 36px;
}
@media screen and (min-width: 1080px) {
  .business__items {
    justify-content: center;
  }
}
@media screen and (min-width: 1480px) {
  .business__items {
    justify-content: start;
    padding: 0;
    gap: 0;
  }
}
.business__banner {
  display: none;
}
@media screen and (min-width: 1080px) {
  .business__banner {
    padding: 16px 38px 10px;
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 55px;
    width: fit-content;
    gap: 20px;
  }
}
.business__banner-logo {
  display: block;
  width: 72px;
}
.business__banner-text {
  font-family: "Noto Sans", sans-serif;
  font-size: 14px;
  font-weight: bold;
  color: #383842;
}
.business__creative {
  padding-inline: 64px;
}
.business__creative .business__items {
  gap: 0;
}
@media screen and (min-width: 1080px) {
  .business__creative {
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 78px;
  }
}
.business__creative-item {
  position: relative;
  width: 244px;
  height: 161px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.business__creative-item + .business__creative-item {
  margin-left: -31px;
}
@media screen and (min-width: 1080px) {
  .business__creative-item + .business__creative-item {
    margin-left: 0;
  }
}
@media screen and (min-width: 1080px) {
  .business__creative-item {
    width: 269px;
    height: 205px;
  }
}
.business__creative-item:nth-of-type(1) {
  margin-top: 70px;
}
@media screen and (min-width: 1080px) {
  .business__creative-item:nth-of-type(1) {
    margin-top: 200px;
  }
}
.business__creative-item:nth-of-type(1)::after {
  position: absolute;
  content: "";
  transform: translate(-50%, -60%);
  left: 50%;
  top: 50%;
  background: url(../img/b-service-1.webp) no-repeat center center/cover;
  width: 348px;
  height: 268px;
  z-index: -1;
}
@media screen and (min-width: 1080px) {
  .business__creative-item:nth-of-type(1)::after {
    width: 487px;
    height: 373px;
    transform: translate(-50%, -66%);
  }
}
.business__creative-item:nth-of-type(2)::after {
  position: absolute;
  content: "";
  transform: translate(-50%, -34%);
  left: 50%;
  top: 50%;
  background: url(../img/b-service-2.webp) no-repeat center center/cover;
  width: 348px;
  height: 268px;
  z-index: -1;
}
@media screen and (min-width: 1080px) {
  .business__creative-item:nth-of-type(2)::after {
    width: 487px;
    height: 373px;
  }
}
.business__creative-item:nth-of-type(3) {
  margin-top: 70px;
}
@media screen and (min-width: 1080px) {
  .business__creative-item:nth-of-type(3) {
    margin-top: 200px;
  }
}
.business__creative-item:nth-of-type(3)::after {
  position: absolute;
  content: "";
  transform: translate(-50%, -60%);
  left: 50%;
  top: 50%;
  background: url(../img/b-service-3.webp) no-repeat center center/cover;
  width: 348px;
  height: 268px;
  z-index: -1;
}
@media screen and (min-width: 1080px) {
  .business__creative-item:nth-of-type(3)::after {
    width: 487px;
    height: 373px;
    transform: translate(-50%, -66%);
  }
}
.business__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: start;
  color: #fff;
}
.business__num {
  width: 59px;
  height: 59px;
  border: 5px solid #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-family: "Cantarell", sans-serif;
  font-weight: bold;
}
@media screen and (min-width: 1080px) {
  .business__num {
    width: 77px;
    height: 77px;
    border: 6px solid #fff;
    font-size: 30px;
  }
}
.business__label {
  position: relative;
  margin-top: 11px;
  font-size: 15px;
  font-family: "Cantarell", sans-serif;
  font-weight: bold;
  width: fit-content;
  text-align: center;
}
@media screen and (min-width: 1080px) {
  .business__label {
    font-size: 21px;
  }
}
.business__label::after, .business__label::before {
  position: absolute;
  content: "";
  background: url(../img/business-label.webp) no-repeat center center/cover;
  width: 6px;
  height: 24px;
  left: -10px;
  top: 50%;
  transform: translateY(-50%);
}
.business__label::before {
  transform: translateY(-50%) rotate(180deg);
  left: auto;
  right: -10px;
}
.business__text {
  margin-top: 18px;
  font-size: 20px;
  font-family: "Noto Sans", sans-serif;
  font-weight: 600;
  text-align: center;
  letter-spacing: -0.01em;
  line-height: 137%;
}
@media screen and (min-width: 1080px) {
  .business__text {
    font-size: 22px;
  }
}
.business__brand {
  margin-right: 50px;
  padding-block: 30px;
  padding-inline: 100px;
  gap: 144px;
  width: 635px;
  margin: 0 auto;
}
.business__brand .business__items {
  gap: 144px;
}
@media screen and (min-width: 1080px) {
  .business__brand {
    margin-top: auto;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 137px;
    width: fit-content;
  }
  .business__brand .business__items {
    gap: 190px;
  }
}
@media screen and (min-width: 1480px) {
  .business__brand {
    margin-top: 131px;
    margin-right: 59px;
  }
}
.business__brand-item {
  width: 165px;
  height: 195px;
  position: relative;
  display: flex;
  justify-content: center;
  flex-shrink: 0;
}
@media screen and (min-width: 1080px) {
  .business__brand-item {
    width: 246px;
    height: 213px;
  }
}
.business__brand-item:nth-of-type(1)::after {
  position: absolute;
  content: "";
  transform: translate(-50%, -52%);
  left: 50%;
  top: 50%;
  background: url(../img/b-brand-1.webp) no-repeat center center/cover;
  width: 275px;
  height: 277px;
  z-index: -1;
}
@media screen and (min-width: 1080px) {
  .business__brand-item:nth-of-type(1)::after {
    width: 390px;
    height: 393px;
  }
}
.business__brand-item:nth-of-type(2)::after {
  position: absolute;
  content: "";
  transform: translate(-50%, -52%);
  left: 50%;
  top: 50%;
  background: url(../img/b-brand-2.webp) no-repeat center center/cover;
  width: 275px;
  height: 277px;
  z-index: -1;
}
@media screen and (min-width: 1080px) {
  .business__brand-item:nth-of-type(2)::after {
    width: 390px;
    height: 393px;
  }
}
.business__brand-item .business__label {
  font-size: 18px;
}
@media screen and (min-width: 1080px) {
  .business__brand-item .business__label {
    font-size: 24px;
  }
}
.business__brand-item .business__label p:nth-of-type(2) {
  font-size: 12px;
  font-weight: 600;
}
@media screen and (min-width: 1080px) {
  .business__brand-item .business__label p:nth-of-type(2) {
    font-size: 14px;
  }
}
.business__brand-item .business__label::after, .business__brand-item .business__label::before {
  position: absolute;
  content: "";
  background: url(../img/business-label-lg.webp) no-repeat center center/cover;
  width: 6px;
  height: 43px;
  left: -15px;
  top: 50%;
  transform: translateY(-50%);
}
.business__brand-item .business__label::before {
  transform: translateY(-50%) rotate(180deg);
  left: auto;
  right: -15px;
}
.business__brand-item:nth-of-type(1) .business__text {
  margin-top: 14px;
  line-height: 123%;
}
.business__brand-item:nth-of-type(2) .business__label {
  margin-top: 3px;
}
.business__brand-item:nth-of-type(2) .business__text {
  margin-top: 10px;
  font-size: 14px;
  line-height: 186%;
}
@media screen and (min-width: 1080px) {
  .business__brand-item:nth-of-type(2) .business__text {
    font-size: 16px;
  }
}
.business__parts {
  margin: 26px 25px 0 auto;
  display: block;
  width: 100px;
}
@media screen and (min-width: 1080px) {
  .business__parts {
    margin: 95px 99px 0 auto;
    width: 244px;
  }
}

.works {
  padding-block: 127px 19px;
  position: relative;
  background: #F05539;
}
@media screen and (min-width: 1080px) {
  .works {
    padding-block: 93px 19px;
    z-index: 2;
  }
}
.works::before {
  position: absolute;
  content: "";
  background: url(../img/works-wave-top-sp.webp) no-repeat center center/cover;
  width: 100%;
  aspect-ratio: 375/53;
  top: -9%;
}
@media screen and (min-width: 768px) {
  .works::before {
    top: -14%;
  }
}
@media screen and (min-width: 1080px) {
  .works::before {
    background: url(../img/works-wave-top.webp) repeat-x center center/cover;
    aspect-ratio: 1700/151;
    top: -11%;
    z-index: -1;
  }
}
@media screen and (min-width: 1800px) {
  .works::before {
    top: -14%;
  }
}
.works::after {
  position: absolute;
  content: "";
  background: url(../img/works-wave-bottom.webp) no-repeat center center/cover;
  width: 243%;
  aspect-ratio: 1412/170;
  left: 50%;
  bottom: -8.5%;
  transform: translateX(-50%);
  z-index: -1;
}
@media screen and (min-width: 1080px) {
  .works::after {
    background: url(../img/works-wave-bottom-pc.webp) no-repeat center center/cover;
    aspect-ratio: 3716/180;
    width: 145%;
    bottom: -9%;
  }
}
@media screen and (min-width: 1480px) {
  .works::after {
    bottom: -14%;
  }
}
.works__bg-image {
  display: block;
  position: absolute;
  width: 327px;
  left: 0;
  top: 70px;
}
@media screen and (min-width: 1080px) {
  .works__bg-image {
    width: 701px;
    left: 100px;
    top: 0px;
  }
}
@media screen and (min-width: 1080px) {
  .works__inner {
    margin: 0 auto;
    width: 94%;
    position: relative;
    display: flex;
    flex-direction: column;
  }
}
.works__heading {
  position: absolute;
  left: 21px;
  top: 38px;
}
@media screen and (min-width: 1080px) {
  .works__heading {
    left: 0;
    top: -134px;
  }
}
.works__sub-title {
  font-family: "Noto Sans", sans-serif;
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  letter-spacing: normal;
}
@media screen and (min-width: 1080px) {
  .works__sub-title {
    font-size: 20px;
  }
}
.works__title {
  font-family: "Cantarell", sans-serif;
  font-size: 47px;
  font-weight: bold;
  color: #fff;
  letter-spacing: -0.05em;
  line-height: 140%;
}
@media screen and (min-width: 1080px) {
  .works__title {
    font-size: 80px;
  }
}
.works__swiper-content {
  display: flex;
  flex-direction: column;
  gap: 17px;
}
@media screen and (min-width: 1080px) {
  .works__swiper-content {
    position: relative;
    flex-direction: row;
    align-items: center;
  }
}
.works #works-swiper {
  margin-top: 36px;
  width: 96%;
}
@media screen and (min-width: 1080px) {
  .works #works-swiper {
    width: 65%;
    min-width: 680px;
  }
}
.works__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
@media screen and (min-width: 1080px) {
  .works__item {
    gap: 65px;
  }
}
.works__head {
  padding: 8px 10px;
  color: #F05539;
  background: #fff;
  font-family: "Noto Sans", sans-serif;
  font-size: 16px;
  font-weight: bold;
  width: 100%;
  text-align: center;
  font-feature-settings: "palt";
  width: fit-content;
}
@media screen and (min-width: 1080px) {
  .works__head {
    padding: 6px 36px;
    font-size: 32px;
    line-height: 100%;
  }
}
.works__thumb {
  position: relative;
}
.works__thumb::after {
  position: absolute;
  content: "";
  background: url(../img/works-card-dash.svg) no-repeat center center/contain;
  width: 13px;
  height: 40px;
  top: -35px;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (min-width: 1080px) {
  .works__thumb::after {
    width: 15px;
    height: 57px;
    top: -48px;
    background: url(../img/works-card-dash-pc.svg) no-repeat center center/contain;
  }
}
.works__card {
  position: relative;
  overflow: hidden;
  display: block;
  width: 100%;
  border-radius: 16px;
}
.works__card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.works__control {
  margin-inline: auto;
  position: relative;
  width: 96%;
  display: flex;
  justify-content: space-between;
}
@media screen and (min-width: 1080px) {
  .works__control {
    position: absolute;
    margin: 0;
    flex-direction: column-reverse;
    justify-content: center;
    width: fit-content;
    align-items: end;
    bottom: 49px;
    right: 0%;
    gap: 58px;
  }
}
@media screen and (min-width: 1280px) {
  .works__control {
    right: 6%;
  }
}
.works__buttons {
  margin-top: 10px;
  display: flex;
  gap: 8px;
}
@media screen and (min-width: 1080px) {
  .works__buttons {
    width: fit-content;
  }
}
.works #works-swiper-prev,
.works #works-swiper-next {
  overflow: hidden;
  position: relative;
  margin: 0;
  position: static;
  display: flex;
  align-items: center;
  transition: 0.3s;
}
.works #works-swiper-prev:hover,
.works #works-swiper-next:hover {
  opacity: 0.7;
}
.works #works-swiper-prev::after,
.works #works-swiper-next::after {
  display: none;
}
.works #works-swiper-prev {
  width: 30px;
  height: 30px;
  border: 1px solid #fff;
  border-radius: 50%;
  justify-content: center;
}
.works #works-swiper-prev svg {
  width: 8px;
}
.works #works-swiper-next {
  padding-right: 14px;
  width: 69px;
  height: 30px;
  border: 1px solid #fff;
  background: #fff;
  border-radius: 15px;
  justify-content: end;
}
.works #works-swiper-next svg {
  width: 8px;
}
.works__num {
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}
@media screen and (min-width: 1080px) {
  .works__num {
    width: fit-content;
    gap: 7px;
  }
}
.works__num span {
  width: 46px;
  height: 2px;
  display: block;
  background: #fff;
  border-radius: 4px;
}
@media screen and (min-width: 1080px) {
  .works__num span {
    width: 78px;
    height: 5px;
  }
}
.works__num-head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.works__label {
  font-family: "Cantarell", sans-serif;
  font-size: 10px;
  font-weight: bold;
  writing-mode: vertical-rl;
  line-height: 100%;
  letter-spacing: normal;
  height: fit-content;
  width: fit-content;
}
@media screen and (min-width: 1080px) {
  .works__label {
    writing-mode: horizontal-tb;
  }
}
.works__current {
  font-family: "Cantarell", sans-serif;
  font-size: 36px;
  font-weight: bold;
  line-height: 100%;
}
@media screen and (min-width: 1080px) {
  .works__current {
    font-size: 63px;
  }
}
.works__total-count {
  font-family: "Cantarell", sans-serif;
  font-size: 36px;
  font-weight: bold;
  opacity: 0.2;
  line-height: 100%;
}
@media screen and (min-width: 1080px) {
  .works__total-count {
    font-size: 63px;
  }
}

.client {
  padding-block: 100px 100px;
}
@media screen and (min-width: 1080px) {
  .client {
    padding-block: 229px 211px;
  }
}
.client__sub-title {
  font-family: "Noto Sans", sans-serif;
  font-size: 16px;
  font-weight: bold;
  font-feature-settings: "palt";
  text-align: center;
}
@media screen and (min-width: 1080px) {
  .client__sub-title {
    font-size: 20px;
  }
}
.client__title {
  font-family: "Cantarell", sans-serif;
  font-size: 47px;
  font-weight: bold;
  letter-spacing: -0.05em;
  text-align: center;
}
@media screen and (min-width: 1080px) {
  .client__title {
    font-size: 80px;
  }
}
.client__name {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 1080px) {
  .client__name {
    margin-top: 25px;
    gap: 2px;
  }
}
.client__lists {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
@media screen and (min-width: 1080px) {
  .client__lists {
    gap: 2px 20px;
  }
}
.client__list {
  font-family: "Noto Sans", sans-serif;
  font-size: 15px;
  font-weight: bold;
  font-feature-settings: "palt";
  line-height: 213%;
}
@media screen and (min-width: 1080px) {
  .client__list {
    font-size: 17px;
  }
}
.client__award {
  margin-top: 20px;
  font-family: "Noto Sans", sans-serif;
  font-size: 13px;
  font-weight: 500;
  font-feature-settings: "palt";
  line-height: 200%;
  text-align: center;
}
@media screen and (min-width: 1080px) {
  .client__award {
    margin-top: 26px;
    font-size: 14px;
  }
}

.c-mag {
  padding-block: 15px 50px;
}
@media screen and (min-width: 1080px) {
  .c-mag {
    padding-block: 110px 136px;
    position: relative;
    background: #64D3A8;
  }
  .c-mag::before {
    position: absolute;
    content: "";
    background: url(../img/c-mag-wave-top.webp) no-repeat center center/contain;
    width: 147%;
    aspect-ratio: 3716/203;
    left: 50%;
    transform: translateX(-50%);
    top: -7%;
    z-index: 0;
  }
}
@media screen and (min-width: 1280px) {
  .c-mag::before {
    top: -8%;
  }
}
@media screen and (min-width: 1750px) {
  .c-mag::before {
    top: -11%;
  }
}
.c-mag__label {
  position: absolute;
  font-family: "Cantarell", sans-serif;
  font-size: 16px;
  font-weight: bold;
  top: -43px;
  left: 0;
}
@media screen and (min-width: 1080px) {
  .c-mag__label {
    font-size: 19px;
    writing-mode: vertical-rl;
    letter-spacing: -0.07em;
    top: -32px;
    left: -86px;
  }
}
.c-mag__container {
  position: relative;
  padding: 43px 31px 51px;
  border-radius: 16px;
  border: 8px solid #DD4E72;
  background: #F4F5F7;
}
@media screen and (min-width: 1080px) {
  .c-mag__container {
    padding: 60px 31px 58px;
    margin: 0 auto;
    border: 37px solid #DD4E72;
    width: 88.5%;
  }
}
@media screen and (min-width: 1080px) {
  .c-mag__inner {
    margin: 0 auto;
    width: 470px;
  }
}
@media screen and (min-width: 1280px) {
  .c-mag__inner {
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 94px;
    width: 89%;
  }
}
.c-mag__content {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (min-width: 1280px) {
  .c-mag__content {
    align-items: start;
  }
}
.c-mag__logo {
  display: block;
  width: 152px;
}
@media screen and (min-width: 1080px) {
  .c-mag__logo {
    width: 221px;
  }
}
.c-mag__title {
  margin-top: 28px;
  font-family: "Noto Sans", sans-serif;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  font-feature-settings: "palt";
}
@media screen and (min-width: 1080px) {
  .c-mag__title {
    margin-top: 38px;
    font-size: 38px;
    line-height: 138%;
  }
}
@media screen and (min-width: 1280px) {
  .c-mag__title {
    text-align: left;
  }
}
.c-mag__desc {
  margin-top: 13px;
  font-family: "Noto Sans", sans-serif;
  font-size: 13px;
  font-weight: 500;
  text-align: center;
  font-feature-settings: "palt";
  line-height: 194%;
}
@media screen and (min-width: 1080px) {
  .c-mag__desc {
    margin-top: 35px;
    font-size: 16px;
  }
}
@media screen and (min-width: 1280px) {
  .c-mag__desc {
    text-align: left;
  }
}
.c-mag__button {
  overflow: hidden;
  position: relative;
  margin-top: 26px;
  padding-block: 21px 21px;
  background: #000000;
  border-radius: 32px;
  width: 213px;
  color: #fff;
}
@media screen and (min-width: 1080px) {
  .c-mag__button {
    margin-top: 97px;
    padding-block: 28px 29px;
    width: 294px;
    gap: 32px;
  }
}
.c-mag__button::before {
  position: absolute;
  content: "";
  background: url(../img/Icon-ankar-link.webp) no-repeat center center/contain;
  width: 13px;
  height: 13px;
  top: 50%;
  transform: translateY(-43%);
  left: -15px;
  transition: 0.2s;
  opacity: 0;
}
@media screen and (min-width: 1080px) {
  .c-mag__button::before {
    width: 18px;
    height: 18px;
    left: 20px;
  }
}
.c-mag__button:hover::before {
  opacity: 1;
  left: 41px;
}
@media screen and (min-width: 1080px) {
  .c-mag__button:hover::before {
    left: 50px;
  }
}
.c-mag__button:hover .c-mag__button-content {
  transform: translateX(10%);
}
.c-mag__button:hover .c-mag__button-icon {
  transform: translateX(200%);
  opacity: 0;
}
.c-mag__button-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  transition: 0.2s;
}
@media screen and (min-width: 1080px) {
  .c-mag__button-content {
    gap: 32px;
  }
}
.c-mag__button-text span {
  position: relative;
  left: 0;
  top: 0;
  font-family: "Noto Sans", sans-serif;
  font-size: 15px;
  font-weight: 500;
  text-align: center;
  display: inline-block;
}
@media screen and (min-width: 1080px) {
  .c-mag__button-text span {
    font-size: 19px;
    font-feature-settings: "palt";
  }
}
.c-mag__button-icon {
  display: block;
  width: 13px;
  transition: 0.2s;
}
@media screen and (min-width: 1080px) {
  .c-mag__button-icon {
    width: 18px;
  }
}
.c-mag__image {
  display: none;
}
@media screen and (min-width: 1280px) {
  .c-mag__image {
    display: block;
    flex-shrink: 0;
    width: 23vw;
  }
}
@media screen and (min-width: 1480px) {
  .c-mag__image {
    width: 421px;
  }
}

.recruit {
  position: relative;
  padding-block: 59px 38px;
  background: #F2EFEB;
  z-index: 0;
}
@media screen and (min-width: 1080px) {
  .recruit {
    padding-block: 153px 142px;
  }
}
.recruit::after {
  position: absolute;
  content: "";
  display: block;
  width: 237px;
  height: 210px;
  background: url(../img/recruit-overlay.webp) no-repeat center center/contain;
  z-index: -1;
  top: -11px;
  right: -18px;
}
@media screen and (min-width: 1080px) {
  .recruit::after {
    background: url(../img/recruit-overlay-pc.webp) no-repeat center center/contain;
    width: 444px;
    height: 484px;
    top: -102px;
    right: 44px;
  }
}
.recruit__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.recruit__sub-title {
  font-family: "Noto Sans", sans-serif;
  font-size: 16px;
  font-weight: bold;
  font-feature-settings: "palt";
  text-align: center;
}
@media screen and (min-width: 1080px) {
  .recruit__sub-title {
    font-size: 20px;
  }
}
.recruit__title {
  font-family: "Cantarell", sans-serif;
  font-size: 47px;
  font-weight: bold;
  letter-spacing: -0.05em;
  text-align: center;
}
@media screen and (min-width: 1080px) {
  .recruit__title {
    font-size: 80px;
  }
}
.recruit__desc {
  margin-top: 30px;
  font-family: "Noto Sans", sans-serif;
  font-size: 16px;
  font-weight: 600;
  font-feature-settings: "palt";
  text-align: center;
  line-height: 175%;
}
@media screen and (min-width: 1080px) {
  .recruit__desc {
    margin-top: 6px;
    font-size: 20px;
    line-height: 222%;
  }
}
.recruit__button {
  margin-top: 15px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #CBCBCB;
  font-family: "Noto Sans", sans-serif;
  font-size: 12px;
  font-weight: 700;
  font-feature-settings: "palt";
  text-align: center;
}
@media screen and (min-width: 1080px) {
  .recruit__button {
    margin-top: 19px;
    font-size: 15px;
    width: 69px;
    height: 69px;
  }
}

.t-contact {
  padding-block: 62px 20px;
  background: #F5F9FC;
}
@media screen and (min-width: 1080px) {
  .t-contact {
    padding-block: 101px 20px;
  }
}
.t-contact__sub-title {
  font-family: "Noto Sans", sans-serif;
  font-size: 16px;
  font-weight: bold;
  font-feature-settings: "palt";
}
@media screen and (min-width: 1080px) {
  .t-contact__sub-title {
    font-size: 20px;
  }
}
.t-contact__title {
  font-family: "Cantarell", sans-serif;
  font-size: 47px;
  font-weight: bold;
  letter-spacing: -0.05em;
}
@media screen and (min-width: 1080px) {
  .t-contact__title {
    font-size: 80px;
    line-height: 120%;
  }
}
.t-contact__link {
  overflow: hidden;
  position: relative;
  padding: 28px 24px 35px;
  background: #3A77F4;
  border-radius: 16px;
  display: block;
  color: #fff;
}
@media screen and (min-width: 1080px) {
  .t-contact__link {
    margin: 0 auto;
    padding: 133px 24px 116px;
    width: 94%;
  }
}
.t-contact__link:hover .t-contact__arrow {
  right: 0px;
  opacity: 0;
}
.t-contact__link:hover::before {
  right: 25px;
  opacity: 1;
}
@media screen and (min-width: 1080px) {
  .t-contact__link:hover::before {
    right: 167px;
  }
}
.t-contact__link::before {
  position: absolute;
  content: "";
  background: url(../img/arrow-white.webp) no-repeat center center/contain;
  width: 19px;
  height: 16px;
  bottom: 22px;
  right: 50px;
  opacity: 0;
  transition: 0.2s;
}
@media screen and (min-width: 1080px) {
  .t-contact__link::before {
    width: 41px;
    height: 35px;
    bottom: 59px;
    right: 340px;
  }
}
.t-contact__link::after {
  position: absolute;
  content: "";
  width: 119px;
  height: 119px;
  border-radius: 100%;
  border: 1px solid #fff;
  bottom: -38px;
  right: -28px;
}
@media screen and (min-width: 1080px) {
  .t-contact__link::after {
    width: 467px;
    height: 467px;
    bottom: -199px;
    right: -46px;
  }
}
.t-contact__arrow {
  position: absolute;
  display: block;
  width: 19px;
  bottom: 22px;
  right: 25px;
  transition: 0.2s;
}
@media screen and (min-width: 1080px) {
  .t-contact__arrow {
    width: 41px;
    bottom: 59px;
    right: 167px;
  }
}
@media screen and (min-width: 1080px) {
  .t-contact__content {
    margin: 0 auto;
    width: 83%;
  }
}
.t-contact__desc {
  margin-top: 5px;
  font-family: "Noto Sans", sans-serif;
  font-size: 14px;
  font-weight: 600;
  font-feature-settings: "palt";
  line-height: 175%;
}
@media screen and (min-width: 1080px) {
  .t-contact__desc {
    margin-top: 14px;
    margin-left: 34px;
    font-size: 15px;
  }
}

.footer {
  padding-block: 5px 60px;
  background: #F5F9FC;
}
@media screen and (min-width: 1080px) {
  .footer {
    padding-block: 49px 60px;
  }
}
.footer__links {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .footer__links {
    flex-direction: row;
    justify-content: center;
    gap: 37px;
  }
}
.footer__link {
  padding: 23px 7px;
  font-family: "Cantarell", sans-serif;
  font-size: 16px;
  font-weight: bold;
  line-height: 147%;
  letter-spacing: -0.05em;
  width: 100%;
  display: inline-block;
  border-bottom: 1px solid rgba(112, 112, 112, 0.1254901961);
}
@media screen and (min-width: 768px) {
  .footer__link {
    padding: 23px 0px;
    border: none;
    width: fit-content;
  }
}
.footer__link span {
  font-weight: bold;
  line-height: 147%;
}
.footer__contact {
  position: relative;
}
.footer__contact::before {
  position: absolute;
  content: "";
  background: url(../img/icon-contact.webp) no-repeat center center/contain;
  width: 24px;
  height: 30px;
  top: 50%;
  transform: translateY(-43%);
  left: -30px;
  transition: 0.2s;
  opacity: 0;
}
.footer__contact:hover::before {
  left: 0px;
  opacity: 1;
}
.footer__contact:hover .footer__contact-content {
  transform: translateX(30px);
}
.footer__contact:hover .footer__contact-icon {
  opacity: 0;
}
.footer__contact-content {
  display: flex;
  align-items: center;
  gap: 10px;
  transition: 0.2s;
}
.footer__contact-icon {
  display: block;
  width: 24px;
  opacity: 1;
  transition: 0.2s;
}
.footer__content {
  margin-top: 46px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.footer__logo {
  display: block;
  width: 207px;
}
@media screen and (min-width: 768px) {
  .footer__logo {
    width: 272px;
  }
}
.footer__name {
  margin-top: 32px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.footer__name span {
  font-family: "Noto Sans", sans-serif;
  font-size: 16px;
  font-weight: bold;
  font-feature-settings: "palt";
}
@media screen and (min-width: 768px) {
  .footer__name {
    margin-top: 14px;
    display: flex;
    align-items: center;
    gap: 14px;
  }
}
.footer__term {
  margin-top: 10px;
  display: flex;
  align-items: center;
  gap: 5px;
}
@media screen and (min-width: 768px) {
  .footer__term {
    margin-top: 24px;
  }
  .footer__term--map {
    display: none;
  }
}
.footer__label {
  padding: 2px 10px 2px;
  font-family: "Noto Sans", sans-serif;
  font-size: 13px;
  font-weight: 600;
  border: 1px solid #000;
  border-radius: 15px;
  width: fit-content;
  background: #fff;
}
@media screen and (min-width: 768px) {
  .footer__label {
    font-size: 14px;
  }
}
.footer__address {
  font-family: "Noto Sans", sans-serif;
  font-size: 12px;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .footer__address {
    font-size: 14px;
  }
}
.footer__map-link {
  font-family: "Cantarell", sans-serif;
  font-size: 14px;
  font-weight: 600;
  border-bottom: 1px solid #000;
}
.footer__tel {
  margin-top: 16px;
  font-family: "Cantarell", sans-serif;
  font-size: 13px;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .footer__tel {
    margin-top: 51px;
  }
}
.footer__box {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 80px;
}
@media screen and (min-width: 1080px) {
  .footer__box {
    margin: 30px auto 0;
    flex-direction: row;
    justify-content: space-between;
    width: 87%;
  }
}
.footer__copy {
  font-family: "Cantarell", sans-serif;
  font-size: 21px;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .footer__copy {
    font-size: 20px;
  }
}
.footer__page-top {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
}
.footer__page-top::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  height: 1px;
  background-color: #000;
  width: 100%;
  transform: scale(0, 1);
  transform-origin: right top;
  transition: transform 0.3s;
}
.footer__page-top:hover::after {
  transform: scale(1, 1);
  transform-origin: left top;
}
@media screen and (min-width: 768px) {
  .footer__page-top {
    align-items: end;
  }
}
.footer__page-top span {
  font-family: "Cantarell", sans-serif;
  font-size: 15px;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .footer__page-top span {
    font-size: 20px;
  }
}
.footer__page-top-arrow {
  display: block;
  width: 9px;
}
@media screen and (min-width: 768px) {
  .footer__page-top-arrow {
    margin-bottom: 10px;
    width: 11px;
  }
}
.footer__page-top-arrow svg {
  display: block;
}