@charset "UTF-8";
/* Scss Document */
@keyframes gradient {
  0% {
    background-position: 0% 0%;
  }
  50% {
    background-position: 100% 100%;
  }
  100% {
    background-position: 0% 0%;
  }
}
.pc {
  display: block;
}
@media screen and (max-width: 1024px) {
  .pc {
    display: none;
  }
}

.sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .sp {
    display: block;
  }
}

a:link, a:focus, a:active, a:visited {
  color: inherit;
  text-decoration: none;
  color: #2f2f32;
}

a.link {
  transition: 0.2s;
  text-decoration: underline;
  position: relative;
  color: #29c4c7;
}
a.link:hover {
  text-decoration: none;
}

figure {
  margin: 0;
}

html, body {
  height: 100%;
}

html {
  font-size: 62.5%;
}

body {
  position: relative;
  font-size: clamp(1.4rem, 1.5vw, 1.6rem);
  font-family: "YakuHanJPs", noto-sans-cjk-jp, sans-serif;
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1.7;
  word-wrap: break-word;
  color: #2f2f32;
}
@media screen and (max-width: 1024px) {
  body {
    font-size: clamp(1.3rem, 3.4vw, 1.6rem);
  }
}

.page-home .loading {
  position: fixed;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  z-index: 1000;
  transition: 0.8s, opacity 0.8s;
  right: 0;
  top: 0;
}
.page-home .loading::before {
  display: block;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  right: 0;
  top: 0;
  background: linear-gradient(-26deg, #2dbaf4, #2bd4d4 20%, #8dde8a 38%, #cfe058 50%, #8dde8a 62%, #2bd4d4 80%, #2dbaf4);
  background-size: 500% 500%;
  z-index: -1;
  animation: gradient 36s ease-in-out infinite;
}
.loading-logo {
  position: absolute;
  overflow: hidden;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 20%;
  overflow: hidden;
  line-height: 0;
  text-indent: 100%;
  white-space: nowrap;
  aspect-ratio: 256/52;
}
@media screen and (max-width: 1024px) {
  .loading-logo {
    width: clamp(200px, 46%, 320px);
  }
}
.loading-logo::before {
  display: block;
  content: "";
  position: static;
  width: 100%;
  height: 100%;
  background: url("../img/logo_w.svg") no-repeat center center/contain;
  transform: translateY(100%);
  opacity: 0;
  animation: logo-anime 0.18s 0.65s forwards cubic-bezier(0.11, 0.73, 0.57, 1.01);
}
.page-home.anime-start .loading {
  opacity: 0;
}

@keyframes logo-anime {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.page-sub .loading {
  position: fixed;
  width: 100%;
  height: 100vh;
  background-color: #fff;
  transition: 0.5s;
  opacity: 1;
  z-index: 10000;
}
.page-sub.loaded .loading {
  opacity: 0;
}

.wrap {
  overflow: hidden;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .wrap::after {
    display: block;
    content: "";
    position: fixed;
    width: 100vw;
    height: 100%;
    top: 0;
    right: 0;
    background-color: #2f2f32;
    transition: 0.3s;
    opacity: 0;
    visibility: hidden;
  }
  .drawer-visible .wrap::after {
    opacity: 0.3;
    right: 0;
    visibility: visible;
  }
}

.scroll-1 {
  overflow: hidden;
}
.scroll-1 span {
  transform: translateY(100%);
}
.scroll-1.fade-1 span {
  animation: logo-anime 0.18s 0.4s forwards cubic-bezier(0.11, 0.73, 0.57, 1.01);
}

.scroll-2 {
  overflow: hidden;
}
.scroll-2-inner {
  opacity: 0;
  transition: 0.5s 0.3s cubic-bezier(0.35, 0.5, 0.53, 1);
}
.fade-2 .scroll-2-inner {
  opacity: 1;
}

.scroll-4 {
  scale: 1.4;
  filter: blur(40px);
  transition: 0.35s 0.4s;
}
.scroll-4.fade-4 {
  scale: 1;
  filter: blur(0);
}

@keyframes scroll-anime-2 {
  to {
    opacity: 1;
  }
}
.scroll-common {
  opacity: 0;
  translate: 40px 0;
  transition: 0.35s 0.4s ease-in-out;
}
.scroll-common.fade-common {
  opacity: 1;
  translate: 0 0;
}

.header {
  z-index: 999;
  position: fixed;
}
.header .header-logo {
  position: fixed;
  overflow: hidden;
  line-height: 0;
  text-indent: 100%;
  white-space: nowrap;
  top: 48px;
  left: 2.5%;
  width: clamp(170px, 15vw, 224px);
  aspect-ratio: 256/52;
  transition: 0.15s;
}
@media screen and (max-width: 1024px) {
  .header .header-logo {
    top: 5vw;
    left: 3vw;
    width: clamp(116px, 32vw, 210px);
  }
}
@media screen and (max-width: 768px) {
  .header .header-logo {
    top: 6vw;
  }
}
.header .header-logo a {
  display: block;
  width: 100%;
  height: 100%;
  transition: 0.3s;
  background: url("../img/logo_b.svg") no-repeat center center/contain;
}
.header .header-logo a:hover {
  opacity: 0.6;
}
.scrolled .header .header-logo, .page-sub .header .header-logo {
  width: clamp(140px, 13vw, 180px);
}
@media screen and (max-width: 1024px) {
  .scrolled .header .header-logo, .page-sub .header .header-logo {
    width: clamp(116px, 32vw, 210px);
  }
}
@media screen and (max-width: 1024px) {
  .header .drawer {
    display: flex;
    align-content: flex-start;
    flex-wrap: wrap;
    position: fixed;
    width: 40vw;
    height: 100%;
    top: 0;
    right: -41vw;
    transition: 0.4s;
    padding: 5vh 5vw 25vh 3vw;
    background-color: #fff;
    opacity: 0;
    pointer-events: none;
    overflow-y: auto;
    z-index: 999;
  }
}
@media screen and (max-width: 768px) {
  .header .drawer {
    width: 65vw;
    right: -66vw;
  }
}
.drawer-visible .header .drawer {
  opacity: 1;
  pointer-events: auto;
  right: 0;
  z-index: 9999;
}
.header .g-nav {
  position: fixed;
  overflow: hidden;
  top: 0;
  bottom: 0;
  left: 2.5%;
  margin: auto;
  display: flex;
  align-items: center;
  height: 50vh;
}
@media screen and (max-width: 1024px) {
  .header .g-nav {
    position: relative;
    height: inherit;
    left: inherit;
    top: inherit;
    bottom: inherit;
  }
}
.header .g-nav__list {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0 auto 2vw;
}
.header .g-nav__item {
  position: relative;
  margin-bottom: clamp(28px, 2.7vw, 34px);
}
@media screen and (max-width: 1024px) {
  .header .g-nav__item {
    margin-bottom: 4vh;
  }
}
.header .g-nav__item:last-child {
  margin-bottom: 0;
}
.header .g-nav__item a {
  rotate: 0.03deg;
  display: block;
  position: relative;
  line-height: 1;
  padding-left: 1.6em;
  font-weight: 500;
  font-family: futura-pt, sans-serif;
  font-size: clamp(1.4rem, 1.45vw, 1.7rem);
  color: #2f2f32;
  transition: 0.3s;
}
@media screen and (max-width: 1024px) {
  .header .g-nav__item a {
    font-size: clamp(1.6rem, 4.8vw, 3rem);
    padding-left: clamp(2.4rem, 7vw, 4.5rem);
  }
}
.header .g-nav__item a::before, .header .g-nav__item a::after {
  position: absolute;
  display: block;
  content: "";
  width: clamp(1.4rem, 1.45vw, 1.6rem);
  aspect-ratio: 1/1;
  left: 0;
  top: 0;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% auto;
}
@media screen and (max-width: 1024px) {
  .header .g-nav__item a::before, .header .g-nav__item a::after {
    width: clamp(1.6rem, 4.8vw, 3rem);
  }
}
.header .g-nav__item a::before {
  background-image: url("../img/circle_small.svg");
}
.header .g-nav__item a::after {
  background-image: url("../img/circle_current.svg");
  opacity: 0;
  transition: 0.3s;
}
.header .g-nav__item a:hover {
  color: #999;
}
@media screen and (max-width: 1024px) {
  .header .g-nav__item a:hover {
    color: #2f2f32;
  }
}
.header .g-nav__item a.current::after {
  opacity: 1;
}
.header .drawer-btn {
  pointer-events: none;
}
@media screen and (max-width: 1024px) {
  .header .drawer-btn {
    position: fixed;
    width: clamp(36px, 10vw, 70px);
    aspect-ratio: 1/1;
    right: 2.5vw;
    top: 2.5vw;
    border-radius: 50%;
    z-index: 9999;
    pointer-events: all;
    cursor: pointer;
    background-color: rgba(255, 255, 255, 0.97);
  }
  .header .drawer-btn::before {
    display: block;
    content: "";
    position: absolute;
    width: 106%;
    height: 106%;
    top: -3%;
    left: -3%;
    background: url("../img/circle_large.svg") no-repeat center center;
    background-size: contain;
  }
  .header .drawer-btn span {
    display: block;
    position: absolute;
    top: 41%;
    left: 0;
    right: 0;
    margin: auto;
    width: 46%;
    height: 3px;
    transition: 0.2s;
    border-radius: 9999px;
    background-color: #c4c4c4;
  }
  .header .drawer-btn span:nth-child(2) {
    top: 57%;
  }
}
@media screen and (max-width: 1024px) and (max-width: 768px) {
  .header .drawer-btn span {
    height: 2px;
  }
}
@media screen and (max-width: 1024px) {
  .drawer-visible .header .drawer-btn span:first-child {
    transform: rotate(45deg);
    top: 48%;
  }
  .drawer-visible .header .drawer-btn span:nth-child(2) {
    transform: rotate(-45deg);
    top: 48%;
  }
}

.area-top {
  position: relative;
  height: 100vh;
  margin: 0 auto 100px;
}
@media screen and (max-width: 1024px) {
  .area-top {
    height: inherit;
    margin: 0 auto 24vw;
    padding-top: clamp(50px, 22vw, 240px);
  }
}
.area-top .main-visual {
  position: absolute;
  overflow: hidden;
  margin: 0 auto;
  width: 76%;
  height: 91vh;
  top: 0;
  right: 0;
  overflow: hidden;
  line-height: 0;
  text-indent: 100%;
  white-space: nowrap;
  border-radius: 0 0 0 clamp(32px, 3.2vw, 40px);
}
@media screen and (max-width: 1024px) {
  .area-top .main-visual {
    position: relative;
    top: inherit;
    right: inherit;
    width: 94%;
    height: clamp(280px, 77vw, 600px);
    margin: 0 0 clamp(20px, 8vw, 300px) 6vw;
    border-radius: clamp(13px, 3.5vw, 32px) 0 0 clamp(13px, 3.5vw, 32px);
  }
}
.area-top .main-visual::before, .area-top .main-visual::after {
  display: block;
  content: "";
  position: absolute;
}
.area-top .main-visual::before {
  width: 100%;
  height: 100%;
  left: 0;
  right: 0;
  top: 0;
  margin: auto;
  background: linear-gradient(-26deg, #2dbaf4, #2bd4d4 20%, #8dde8a 38%, #cfe058 50%, #8dde8a 62%, #2bd4d4 80%, #2dbaf4);
  background-size: 500% 500%;
  z-index: -1;
  animation: gradient 36s ease-in-out infinite;
}
.area-top .main-visual::after {
  width: 100%;
  height: max(79%, 400px);
  top: 3%;
  right: 2.5%;
  background: url(../img/illust_1.svg) no-repeat right top;
  background-size: contain;
  opacity: 0;
  transform: scale(1.7);
  transition: 0.7s ease-in-out;
  filter: blur(40px);
}
@media screen and (max-width: 1024px) {
  .area-top .main-visual::after {
    background-position: center top;
    top: 5%;
    right: 0;
    left: 0;
    margin: auto;
    height: 90%;
  }
}
.anime-start-2 .area-top .main-visual::after {
  opacity: 1;
  transform: scale(1);
  filter: blur(0);
}
.area-top .main-copy {
  position: absolute;
  overflow: hidden;
  margin: 0 auto;
  width: 77%;
  height: 91vh;
  top: 0;
  right: 0;
}
@media screen and (max-width: 1024px) {
  .area-top .main-copy {
    position: relative;
    top: inherit;
    right: inherit;
    width: 90%;
    height: inherit;
    margin: 0 4% 0 6%;
  }
}
.area-top .main-copy__txt {
  position: absolute;
  bottom: 9%;
  left: 6%;
  letter-spacing: 0.035em;
  padding-right: 10%;
}
@media screen and (max-width: 1024px) {
  .area-top .main-copy__txt {
    position: relative;
    bottom: inherit;
    left: inherit;
    padding-right: 0;
  }
}
.area-top .main-copy__txt--main {
  margin-bottom: 0.3em;
  line-height: 1.28;
  font-size: clamp(2.4rem, 5vw, 10rem);
  font-weight: 700;
  -webkit-clip-path: inset(0 100% 0 0);
  clip-path: inset(0 100% 0 0);
  transition: clip-path 0.75s linear;
}
.area-top .main-copy__txt--main .txt-small {
  display: inline-block;
  margin-right: -0.25em;
  font-size: clamp(2rem, 4.2vw, 8rem);
}
@media screen and (max-width: 1024px) {
  .area-top .main-copy__txt--main {
    margin-bottom: 0.5em;
    font-size: clamp(3.5rem, 9.3vw, 8rem);
  }
  .area-top .main-copy__txt--main .txt-small {
    font-size: clamp(2.8rem, 7.4vw, 8rem);
  }
}
.anime-start-3 .area-top .main-copy__txt--main {
  -webkit-clip-path: inset(0 0 0 0);
  clip-path: inset(0 0 0 0);
}
.area-top .main-copy__txt--sub {
  line-height: 1.7;
  padding-left: 0.25em;
  font-size: clamp(1.3rem, 1.2vw, 1.65rem);
  opacity: 0;
  transition: 0.5s 0.9s;
}
@media screen and (max-width: 1024px) {
  .area-top .main-copy__txt--sub {
    line-height: 1.8;
    letter-spacing: -0.02em;
    padding-left: 0;
    font-size: clamp(1rem, 2.8vw, 2rem);
  }
}
.anime-start-3 .area-top .main-copy__txt--sub {
  opacity: 1;
}
@media screen and (max-width: 1024px) {
  .area-top .main-copy__txt--sub span {
    display: block;
  }
}

.content {
  position: relative;
  padding: 40px 0 100px;
}
@media screen and (max-width: 1024px) {
  .content {
    padding: 22vw 0 20vw;
  }
}
.page-home .content {
  padding: 0 0 100px;
}
@media screen and (max-width: 1024px) {
  .page-home .content {
    padding: 0 0 11vw;
  }
}

.section-information {
  position: relative;
  padding: 120px 12% 1% 24%;
}
@media screen and (max-width: 1366px) {
  .section-information {
    padding: 120px 8% 1% 24%;
  }
}
@media screen and (max-width: 1024px) {
  .section-information {
    margin-bottom: 10vw;
    padding: 12vw 5vw 1vw 5vw;
  }
}
@media screen and (max-width: 1024px) {
  .page-home .section-information {
    margin-bottom: 0;
    padding: 22vw 5vw 1vw 5vw;
  }
}
.page-sub .section-information {
  min-height: 65vh;
}
.section-information__heading {
  rotate: 0.03deg;
  position: relative;
  line-height: 1.4;
  margin: 0 0 70px;
  font-family: futura-pt, sans-serif;
  font-style: normal;
  font-size: clamp(2.8rem, 2.9vw, 3.2rem);
  font-weight: 800;
  color: #2f2f32;
}
.section-information__heading.heading-jp {
  font-family: inherit;
  font-size: clamp(2.5rem, 2.4vw, 2.9rem);
}
.page-home .section-information__heading {
  margin: 0 0 60px;
}
@media screen and (max-width: 1024px) {
  .section-information__heading {
    margin: 0 0 clamp(36px, 9vw, 70px);
    font-size: clamp(1.9rem, 5vw, 3.2rem);
  }
  .section-information__heading.heading-jp {
    font-size: clamp(1.6rem, 4.3vw, 2.9rem);
  }
  .page-home .section-information__heading {
    margin: 0 0 clamp(30px, 8.2vw, 70px);
  }
}
.section-information__heading span {
  display: block;
}
.page-home .section-information__list {
  margin-bottom: 200px;
}
@media screen and (max-width: 1024px) {
  .page-home .section-information__list {
    width: 100%;
    margin-bottom: 20vw;
  }
}
.page-home .section-information__item {
  rotate: 0.03deg;
  border: 1px solid #E2E2E2;
  border-radius: 10px;
  margin-bottom: 28px;
  line-height: 1.5;
}
@media screen and (max-width: 1024px) {
  .page-home .section-information__item {
    margin-bottom: 4vw;
    border-radius: 8px;
  }
}
.page-home .section-information__link {
  display: block;
  position: relative;
  padding: 25px 60px 25px 30px;
  transition: 0.3s;
  backface-visibility: hidden;
}
.page-home .section-information__link::after {
  position: absolute;
  display: block;
  content: "";
  width: 25px;
  aspect-ratio: 1/1;
  right: 22px;
  top: 0;
  bottom: 0;
  margin: auto;
  background: url("../img/arrow_r_g.svg") no-repeat center center;
  background-size: 100% auto;
  transition: 0.3s;
}
@media screen and (max-width: 1024px) {
  .page-home .section-information__link::after {
    width: clamp(12px, 5vw, 25px);
    right: 2vw;
  }
}
@media screen and (max-width: 1024px) {
  .page-home .section-information__link {
    padding: 3vw 9vw 3.2vw 4vw;
  }
}
.page-home .section-information__link:hover {
  opacity: 0.7;
}
.page-home .section-information__link:hover::after {
  transform: translateX(4px);
}
@media screen and (max-width: 1024px) {
  .page-home .section-information__link:hover::after {
    transform: translateX(0);
  }
}
.page-home .section-information__inner {
  padding: 25px 30px;
  backface-visibility: hidden;
}
@media screen and (max-width: 1024px) {
  .page-home .section-information__inner {
    padding: 3vw 4vw 3.2vw 4vw;
  }
}
.page-home .section-information__date {
  letter-spacing: -0.01em;
  margin-bottom: 0.1em;
  font-size: clamp(1.4rem, 1.4vw, 1.5rem);
  font-weight: 600;
  font-family: futura-pt, sans-serif;
  color: #2ACACE;
}
@media screen and (max-width: 1024px) {
  .page-home .section-information__date {
    font-size: clamp(1.2rem, 3.4vw, 1.5rem);
  }
}
.page-home .section-information__txt {
  line-height: 1.45;
  font-size: clamp(1.3rem, 1.3vw, 1.5rem);
}
@media screen and (max-width: 1024px) {
  .page-home .section-information__txt {
    font-size: clamp(1.2rem, 3.2vw, 1.5rem);
  }
}
.page-sub .section-information__heading {
  position: relative;
  line-height: 1.4;
  margin: 0 0 0.2em;
  font-weight: 800;
  font-size: clamp(2.3rem, 2.4vw, 2.5rem);
}
@media screen and (max-width: 1024px) {
  .page-sub .section-information__heading {
    font-size: clamp(1.6rem, 4.3vw, 2.5rem);
  }
}
.page-sub .section-information__date {
  letter-spacing: -0.01em;
  font-size: clamp(1.6rem, 1.6vw, 1.7rem);
  font-weight: 600;
  font-family: futura-pt, sans-serif;
  color: #2ACACE;
}
@media screen and (max-width: 1024px) {
  .page-sub .section-information__date {
    font-size: clamp(1.4rem, 3.8vw, 1.6rem);
  }
}
.page-sub .section-information__inner {
  margin-top: 1.7em;
  padding: 2em 0 0;
  border-top: 1px solid #dbd8d5;
}

.section-service {
  position: relative;
  padding: 120px 12% 1% 24%;
}
@media screen and (max-width: 1366px) {
  .section-service {
    padding: 120px 8% 1% 24%;
  }
}
@media screen and (max-width: 1024px) {
  .section-service {
    margin-bottom: 10vw;
    padding: 12vw 5vw 1vw 5vw;
  }
}
@media screen and (max-width: 1024px) {
  .page-home .section-service {
    margin-bottom: 0;
    padding: 22vw 5vw 1vw 5vw;
  }
}
.section-service {
  margin-bottom: 100px;
}
@media screen and (max-width: 1024px) {
  .section-service {
    margin-bottom: 32vw !important;
  }
}
.section-service::before {
  display: block;
  position: absolute;
  content: "";
  width: 30%;
  height: calc(100% - 120px);
  top: 120px;
  right: 0;
  border-radius: 32px 0 0 32px;
  background-color: #f5f4f3;
  z-index: -1;
  opacity: 0;
  transition: 0.5s 1s cubic-bezier(0.35, 0.5, 0.53, 1);
}
@media screen and (max-width: 1024px) {
  .section-service::before {
    top: 12vw;
    height: calc(100% - 12vw);
    border-radius: 3.5vw 0 0 3.5vw;
  }
}
.section-service.fade-3::before {
  opacity: 1;
}
.section-service__heading {
  rotate: 0.03deg;
  position: relative;
  line-height: 1.4;
  margin: 0 0 70px;
  font-family: futura-pt, sans-serif;
  font-style: normal;
  font-size: clamp(2.8rem, 2.9vw, 3.2rem);
  font-weight: 800;
  color: #2f2f32;
}
.section-service__heading.heading-jp {
  font-family: inherit;
  font-size: clamp(2.5rem, 2.4vw, 2.9rem);
}
.page-home .section-service__heading {
  margin: 0 0 60px;
}
@media screen and (max-width: 1024px) {
  .section-service__heading {
    margin: 0 0 clamp(36px, 9vw, 70px);
    font-size: clamp(1.9rem, 5vw, 3.2rem);
  }
  .section-service__heading.heading-jp {
    font-size: clamp(1.6rem, 4.3vw, 2.9rem);
  }
  .page-home .section-service__heading {
    margin: 0 0 clamp(30px, 8.2vw, 70px);
  }
}
.section-service__heading span {
  display: block;
}
.section-service__heading--secondary {
  rotate: 0.03deg;
  position: relative;
  line-height: 1.4;
  margin: 0 0 36px;
  color: #2acace;
  font-weight: 700;
  font-size: clamp(5rem, 5vw, 5.4rem);
}
@media screen and (max-width: 1024px) {
  .section-service__heading--secondary {
    margin: 0 0 0.7em;
    font-size: clamp(2.4rem, 6.4vw, 5rem);
  }
}
.section-service__txt--primary {
  rotate: 0.03deg;
  line-height: 1.55;
  margin-bottom: 0.9em;
  font-weight: 700;
  font-size: clamp(2rem, 2.1vw, 2.4rem);
}
@media screen and (max-width: 1024px) {
  .section-service__txt--primary {
    font-size: clamp(1.5rem, 4vw, 2rem);
  }
}
.section-service__block + .section-service__block {
  margin-top: 280px;
}
@media screen and (max-width: 1024px) {
  .section-service__block + .section-service__block {
    margin-top: 40vw;
  }
}
.section-service__txt {
  rotate: 0.03deg;
}
.section-service__list {
  margin: 90px 0 240px;
  padding: 3.2em 3.5em;
  background-color: #2acace;
  border-radius: 14px;
}
@media screen and (max-width: 1024px) {
  .section-service__list {
    width: 100%;
    margin: 13vw 0 30vw;
    padding: 2em 1.5em;
    border-radius: 10px;
  }
}
.section-service__list:last-child {
  margin-bottom: 140px;
}
@media screen and (max-width: 1024px) {
  .section-service__list:last-child {
    margin-bottom: 18vw;
  }
}
.section-service__item {
  rotate: 0.03deg;
  margin-bottom: 2.5em;
  line-height: 1.5;
  color: #fff;
}
.section-service__item:last-child {
  margin-bottom: 0;
}
.section-service__item-txt {
  line-height: 1.5;
}
.section-service__item-title {
  display: block;
  position: relative;
  line-height: 1.3;
  margin-bottom: 0.5em;
  font-weight: 700;
  color: #fff276;
  font-size: 2.2rem;
}
@media screen and (max-width: 1024px) {
  .section-service__item-title {
    font-size: clamp(1.4rem, 4vw, 2.4rem);
  }
}
.section-service__item-desc {
  display: block;
}
.section-service__list-photo {
  max-width: 1180px;
}
@media screen and (max-width: 1024px) {
  .section-service__list-photo {
    margin-left: -5vw;
    margin-right: -5vw;
  }
}
.section-service__item-photo {
  position: relative;
  margin-bottom: clamp(160px, 16vw, 220px);
  padding: 0 15% 0 0;
}
@media screen and (max-width: 1024px) {
  .section-service__item-photo {
    margin-bottom: 22vw;
    padding: 0 11% 0 0;
  }
}
.section-service__item-photo:nth-child(2n) {
  padding: 0 0 0 15%;
}
@media screen and (max-width: 1024px) {
  .section-service__item-photo:nth-child(2n) {
    padding: 0 0 0 11%;
  }
}
.section-service__item-photo:last-child {
  margin-bottom: clamp(100px, 10vw, 160px);
}
@media screen and (max-width: 1024px) {
  .section-service__item-photo:last-child {
    margin-bottom: 16vw;
  }
}
.section-service__item-photo-inner {
  position: relative;
}
.section-service__item-photo-txt {
  position: absolute;
  top: 0;
  right: -18.4em;
  transform-origin: left top;
  transform: rotate(90deg);
  width: 16em;
  height: 1em;
  font-weight: 700;
  font-size: clamp(1.4rem, 1.5vw, 1.7rem);
}
@media screen and (max-width: 1024px) {
  .section-service__item-photo-txt {
    font-size: clamp(1rem, 3vw, 1.5em);
    right: -18.15em;
  }
}
.section-service__item-photo:nth-child(2n) .section-service__item-photo-txt {
  top: 0;
  left: 0;
  right: auto;
  transform: rotate(90deg) translateY(0.8em);
}
@media screen and (max-width: 1024px) {
  .section-service__item-photo:nth-child(2n) .section-service__item-photo-txt {
    margin-left: 0.4em;
  }
}

.section-recruit {
  position: relative;
  padding: 120px 12% 1% 24%;
}
@media screen and (max-width: 1366px) {
  .section-recruit {
    padding: 120px 8% 1% 24%;
  }
}
@media screen and (max-width: 1024px) {
  .section-recruit {
    margin-bottom: 10vw;
    padding: 12vw 5vw 1vw 5vw;
  }
}
@media screen and (max-width: 1024px) {
  .page-home .section-recruit {
    margin-bottom: 0;
    padding: 22vw 5vw 1vw 5vw;
  }
}
.section-recruit {
  min-height: 65vh;
}
.section-recruit__heading {
  rotate: 0.03deg;
  position: relative;
  line-height: 1.4;
  margin: 0 0 70px;
  font-family: futura-pt, sans-serif;
  font-style: normal;
  font-size: clamp(2.8rem, 2.9vw, 3.2rem);
  font-weight: 800;
  color: #2f2f32;
}
.section-recruit__heading.heading-jp {
  font-family: inherit;
  font-size: clamp(2.5rem, 2.4vw, 2.9rem);
}
.page-home .section-recruit__heading {
  margin: 0 0 60px;
}
@media screen and (max-width: 1024px) {
  .section-recruit__heading {
    margin: 0 0 clamp(36px, 9vw, 70px);
    font-size: clamp(1.9rem, 5vw, 3.2rem);
  }
  .section-recruit__heading.heading-jp {
    font-size: clamp(1.6rem, 4.3vw, 2.9rem);
  }
  .page-home .section-recruit__heading {
    margin: 0 0 clamp(30px, 8.2vw, 70px);
  }
}
.section-recruit__heading span {
  display: block;
}
.section-recruit__box {
  position: relative;
  aspect-ratio: 5/3;
  min-height: 560px;
  margin-bottom: 65px;
  padding: 50px 48px;
  background: #F2FCFB;
  background: linear-gradient(150deg, rgb(242, 252, 251) 0%, rgb(228, 248, 249) 60%, rgb(198, 241, 245) 100%);
}
@media screen and (max-width: 1366px) {
  .section-recruit__box {
    padding: 3.2vw 3vw;
    min-height: auto;
  }
}
@media screen and (max-width: 1024px) {
  .section-recruit__box {
    margin: 0 -5vw 8.5vw;
    padding: 5vw;
    aspect-ratio: 15/12;
  }
}
.section-recruit__box::before {
  position: absolute;
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: url("../img/img_recruit.png") no-repeat right bottom;
  background-size: 100% auto;
}
@media screen and (max-width: 1024px) {
  .section-recruit__box::before {
    background-size: 110% auto;
  }
}
.section-recruit__txt {
  rotate: 0.03deg;
  line-height: 1.85;
  margin-bottom: 4em;
  font-weight: 700;
  font-size: clamp(2rem, 1.6vw, 3rem);
}
@media screen and (max-width: 1366px) {
  .section-recruit__txt {
    font-size: clamp(1.6rem, 1.8vw, 2.2rem);
  }
}
@media screen and (max-width: 1024px) {
  .section-recruit__txt {
    font-size: clamp(1.5rem, 4vw, 4rem);
    margin-bottom: 1em;
  }
}
.section-recruit__txt--line {
  position: relative;
  display: inline-block;
}
.section-recruit__txt--line::before {
  position: absolute;
  display: block;
  content: "";
  width: 100%;
  height: 5px;
  left: 0;
  bottom: -1px;
  background: url("../img/line_dots.svg") repeat-x left bottom;
  background-size: auto 5px;
}
.section-recruit__image {
  position: absolute;
  width: 36%;
  aspect-ratio: 464/313;
  top: calc(200px + 2%);
  right: 7%;
  background: url("../img/illust_2.svg") no-repeat right bottom;
  background-size: 100% auto;
  z-index: -1;
}
@media screen and (max-width: 1366px) {
  .section-recruit__image {
    right: 2%;
    top: calc(220px + 5%);
  }
}
@media screen and (max-width: 1024px) {
  .section-recruit__image {
    position: static;
    width: 90%;
    margin: 0 auto 5vw;
    background-position: center center;
  }
}
.section-recruit__btn {
  display: block;
  position: relative;
  width: 380px;
  height: 80px;
  padding: 0 50px 0 32px;
  line-height: 79px;
  border-radius: 9999px;
  background: linear-gradient(156deg, #2dbaf4, #2bd4d4 74%, #62daab);
  color: #fff !important;
  font-weight: 700;
  font-size: 2rem;
  transition: 0.3s;
}
@media screen and (max-width: 1024px) {
  .section-recruit__btn {
    width: clamp(200px, 90%, 540px);
    height: auto;
    line-height: 1;
    margin: 0 auto;
    padding: 4.5vw 10vw 5vw 8vw;
    font-size: clamp(1.2rem, 3.6vw, 2.5rem);
  }
}
.section-recruit__btn::after {
  position: absolute;
  display: block;
  content: "";
  width: 25px;
  aspect-ratio: 1/1;
  right: 22px;
  top: 0;
  bottom: 0;
  margin: auto;
  background: url("../img/arrow_r.svg") no-repeat center center;
  background-size: 100% auto;
  transition: 0.3s;
}
@media screen and (max-width: 1024px) {
  .section-recruit__btn::after {
    width: clamp(12px, 5vw, 30px);
    right: 4.4vw;
  }
}
.section-recruit__btn:hover {
  opacity: 0.8;
}
@media screen and (max-width: 1024px) {
  .section-recruit__btn:hover {
    opacity: 1;
  }
}
.section-recruit__btn:hover::after {
  transform: translateX(4px);
}
@media screen and (max-width: 1024px) {
  .section-recruit__btn:hover::after {
    transform: translateX(0);
  }
}

.section-company {
  position: relative;
  padding: 120px 12% 1% 24%;
}
@media screen and (max-width: 1366px) {
  .section-company {
    padding: 120px 8% 1% 24%;
  }
}
@media screen and (max-width: 1024px) {
  .section-company {
    margin-bottom: 10vw;
    padding: 12vw 5vw 1vw 5vw;
  }
}
@media screen and (max-width: 1024px) {
  .page-home .section-company {
    margin-bottom: 0;
    padding: 22vw 5vw 1vw 5vw;
  }
}
.section-company {
  margin-bottom: 50px;
}
@media screen and (max-width: 1024px) {
  .section-company {
    margin-bottom: 12vw;
  }
}
.section-company__heading {
  rotate: 0.03deg;
  position: relative;
  line-height: 1.4;
  margin: 0 0 70px;
  font-family: futura-pt, sans-serif;
  font-style: normal;
  font-size: clamp(2.8rem, 2.9vw, 3.2rem);
  font-weight: 800;
  color: #2f2f32;
}
.section-company__heading.heading-jp {
  font-family: inherit;
  font-size: clamp(2.5rem, 2.4vw, 2.9rem);
}
.page-home .section-company__heading {
  margin: 0 0 60px;
}
@media screen and (max-width: 1024px) {
  .section-company__heading {
    margin: 0 0 clamp(36px, 9vw, 70px);
    font-size: clamp(1.9rem, 5vw, 3.2rem);
  }
  .section-company__heading.heading-jp {
    font-size: clamp(1.6rem, 4.3vw, 2.9rem);
  }
  .page-home .section-company__heading {
    margin: 0 0 clamp(30px, 8.2vw, 70px);
  }
}
.section-company__heading span {
  display: block;
}
.section-company__heading--map {
  font-size: inherit;
}
.section-company__inner {
  display: flex;
  flex-wrap: wrap;
  border-bottom: 1px solid #dbd8d5;
}
.section-company__inner:last-child {
  border-bottom: none;
}
.section-company__list dt {
  width: 10em;
  padding: 1.5em 0;
  color: #a3a3a3;
  font-weight: 800;
}
@media screen and (max-width: 1024px) {
  .section-company__list dt {
    width: 100%;
    padding: 1.5em 0 0.1em;
  }
}
.section-company__list dd {
  padding: 1.5em 0;
  width: calc(100% - 10em);
}
@media screen and (max-width: 1024px) {
  .section-company__list dd {
    width: 100%;
    padding: 0 0 1.5em;
  }
}
.section-company__list dd .link {
  color: inherit;
}
.section-company__inner:first-child dt, .section-company__inner:first-child dd {
  padding-top: 0;
}
.section-company__txt {
  line-height: 1.4;
}
.section-company__item--sub {
  margin-bottom: 1.2em;
}
.section-company__item--sub:last-child {
  margin-bottom: 0;
}
.section-company__anchor {
  display: inline-block;
  line-height: 1;
  margin: 0 0 0 0.8em;
  padding: 0.1em 0.3em 0.2em;
  border-radius: 3px;
  background-color: #2acace;
  font-size: clamp(1.2rem, 1.2vw, 1.4rem);
  font-weight: 800;
  color: #fff !important;
  transition: 0.3s;
  opacity: 1;
}
.section-company__anchor:hover {
  opacity: 0.6;
}
@media screen and (max-width: 1024px) {
  .section-company__anchor:hover {
    opacity: 1;
  }
}
@media screen and (max-width: 1024px) {
  .section-company__anchor {
    font-size: clamp(1.1rem, 2.9vw, 1.5rem);
  }
}
.section-company__list--map {
  margin-bottom: 1em;
}
.section-company__item--map {
  margin-bottom: 1em;
  padding: 4em 0 0;
}
.section-company__item--map iframe {
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .section-company__item--map iframe {
    height: 36vh;
  }
}

.section-privacy {
  position: relative;
  padding: 120px 12% 1% 24%;
}
@media screen and (max-width: 1366px) {
  .section-privacy {
    padding: 120px 8% 1% 24%;
  }
}
@media screen and (max-width: 1024px) {
  .section-privacy {
    margin-bottom: 10vw;
    padding: 12vw 5vw 1vw 5vw;
  }
}
@media screen and (max-width: 1024px) {
  .page-home .section-privacy {
    margin-bottom: 0;
    padding: 22vw 5vw 1vw 5vw;
  }
}
.section-privacy {
  margin-bottom: 50px;
}
@media screen and (max-width: 1024px) {
  .section-privacy {
    margin-bottom: 12vw;
  }
}
.section-privacy__heading {
  rotate: 0.03deg;
  position: relative;
  line-height: 1.4;
  margin: 0 0 70px;
  font-family: futura-pt, sans-serif;
  font-style: normal;
  font-size: clamp(2.8rem, 2.9vw, 3.2rem);
  font-weight: 800;
  color: #2f2f32;
}
.section-privacy__heading.heading-jp {
  font-family: inherit;
  font-size: clamp(2.5rem, 2.4vw, 2.9rem);
}
.page-home .section-privacy__heading {
  margin: 0 0 60px;
}
@media screen and (max-width: 1024px) {
  .section-privacy__heading {
    margin: 0 0 clamp(36px, 9vw, 70px);
    font-size: clamp(1.9rem, 5vw, 3.2rem);
  }
  .section-privacy__heading.heading-jp {
    font-size: clamp(1.6rem, 4.3vw, 2.9rem);
  }
  .page-home .section-privacy__heading {
    margin: 0 0 clamp(30px, 8.2vw, 70px);
  }
}
.section-privacy__heading span {
  display: block;
}
.section-privacy__heading--sub {
  margin-bottom: 0.5em;
  font-size: clamp(1.6rem, 4vw, 1.8rem);
  font-weight: 800;
}
@media screen and (max-width: 1024px) {
  .section-privacy__heading--sub {
    font-size: clamp(1.5rem, 4vw, 1.8rem);
  }
}
.section-privacy__list {
  margin-top: 2.5em;
}
.section-privacy__item {
  margin-bottom: 2.5em;
}
.section-privacy__item--sub {
  padding-left: 2em;
  text-indent: -1em;
}
.section-privacy__txt {
  margin-bottom: 1.5em;
}
.section-privacy__txt.txt-right {
  text-align: right;
}

.section-inquiry {
  position: relative;
  padding: 120px 12% 1% 24%;
}
@media screen and (max-width: 1366px) {
  .section-inquiry {
    padding: 120px 8% 1% 24%;
  }
}
@media screen and (max-width: 1024px) {
  .section-inquiry {
    margin-bottom: 10vw;
    padding: 12vw 5vw 1vw 5vw;
  }
}
@media screen and (max-width: 1024px) {
  .page-home .section-inquiry {
    margin-bottom: 0;
    padding: 22vw 5vw 1vw 5vw;
  }
}
.section-inquiry {
  margin-bottom: 50px;
}
@media screen and (max-width: 1024px) {
  .section-inquiry {
    margin-bottom: 12vw;
  }
}
.section-inquiry__heading {
  rotate: 0.03deg;
  position: relative;
  line-height: 1.4;
  margin: 0 0 70px;
  font-family: futura-pt, sans-serif;
  font-style: normal;
  font-size: clamp(2.8rem, 2.9vw, 3.2rem);
  font-weight: 800;
  color: #2f2f32;
}
.section-inquiry__heading.heading-jp {
  font-family: inherit;
  font-size: clamp(2.5rem, 2.4vw, 2.9rem);
}
.page-home .section-inquiry__heading {
  margin: 0 0 60px;
}
@media screen and (max-width: 1024px) {
  .section-inquiry__heading {
    margin: 0 0 clamp(36px, 9vw, 70px);
    font-size: clamp(1.9rem, 5vw, 3.2rem);
  }
  .section-inquiry__heading.heading-jp {
    font-size: clamp(1.6rem, 4.3vw, 2.9rem);
  }
  .page-home .section-inquiry__heading {
    margin: 0 0 clamp(30px, 8.2vw, 70px);
  }
}
.section-inquiry__heading span {
  display: block;
}
.section-inquiry__heading--sub {
  font-weight: 800;
  margin-bottom: 0.5em;
}
.section-inquiry__list {
  display: flex;
  flex-wrap: wrap;
  margin: 2em auto;
}
.section-inquiry__list dt {
  width: 15em;
  padding: 0.9em 0;
  color: #a3a3a3;
  font-weight: 800;
}
@media screen and (max-width: 1024px) {
  .section-inquiry__list dt {
    width: 100%;
    padding: 0 0 0.2em;
  }
}
.section-inquiry__list dd {
  padding: 0.6em 0;
  width: calc(100% - 15em);
}
@media screen and (max-width: 1024px) {
  .section-inquiry__list dd {
    width: 100%;
    padding: 0 0 1em;
  }
}
.section-inquiry__list dd.w100 {
  width: 100%;
  margin-top: 1.5em;
}
.section-inquiry__box {
  border: 1px solid #dbd8d5;
  padding: 1.5em;
}
@media screen and (max-width: 1024px) {
  .section-inquiry__box {
    padding: 1.2em;
  }
}
.section-inquiry__txt {
  margin-bottom: 1.5em;
}
.section-inquiry__list dd .section-inquiry__txt {
  margin-bottom: 2.5em;
}
.section-inquiry__box .section-inquiry__txt {
  line-height: 1.55;
  margin-bottom: 0.5em;
  font-size: clamp(1.4rem, 1.4vw, 1.5rem);
}
@media screen and (max-width: 1024px) {
  .section-inquiry__box .section-inquiry__txt {
    font-size: clamp(1.2rem, 3.2vw, 1.5rem);
  }
}
.section-inquiry__box .section-inquiry__link {
  display: inline-block;
  margin-top: 1em;
}
.section-inquiry .txt-red {
  color: #f20040;
}
.section-inquiry__f-txt, .section-inquiry__f-txt-2, .section-inquiry__f-zipcode, .section-inquiry__f-txtarea {
  line-height: 1.4;
  padding: 0.4em 0.4em;
  border: 1px solid #dbd8d5;
  border-radius: 3px;
}
.section-inquiry__f-select, .section-inquiry__f-pref {
  line-height: 1.4;
  padding: 0.3em 0.4em;
  border: 1px solid #dbd8d5;
  border-radius: 3px;
}
.section-inquiry__f-txt, .section-inquiry__f-select {
  width: 300px;
}
@media screen and (max-width: 1024px) {
  .section-inquiry__f-txt, .section-inquiry__f-select {
    width: 100%;
  }
}
.section-inquiry__f-txt-2 {
  width: 450px;
}
@media screen and (max-width: 1024px) {
  .section-inquiry__f-txt-2 {
    width: 100%;
  }
}
.section-inquiry__f-txtarea {
  width: 100%;
}
.section-inquiry__f-zipcode, .section-inquiry__f-pref {
  width: 150px;
}
@media screen and (max-width: 1024px) {
  .section-inquiry__f-zipcode, .section-inquiry__f-pref {
    width: 50%;
  }
}
.section-inquiry__f-check-wrap {
  text-align: center;
}
.section-inquiry__f-check {
  position: relative;
  line-height: 1;
  transform: translateX(-3em);
  margin-top: 1em;
}
@media screen and (max-width: 1024px) {
  .section-inquiry__f-check {
    margin-bottom: 0.5em;
  }
}
.section-inquiry__f-check::after {
  display: inline-block;
  position: static;
  content: "同意する";
  width: 6.3em;
  padding-left: 1.8em;
}
.section-inquiry input[type=checkbox] {
  position: relative;
  width: 1.2em;
  height: 1.2em;
  border-radius: 2px;
  border: 1px solid #dbd8d5;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.section-inquiry input[type=checkbox]:checked {
  background-color: #29c4c7;
  border-color: #29c4c7;
}
.section-inquiry input[type=checkbox]:checked:before {
  position: absolute;
  top: 0.05em;
  left: 0.35em;
  transform: rotate(50deg);
  width: 0.4em;
  height: 0.8em;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  content: "";
}
.section-inquiry__btn-wrap {
  margin-top: 0.5em;
  position: relative;
}
.section-inquiry__btn-reset-wrap {
  margin-top: 1.2em;
  position: relative;
}
.section-inquiry__btn {
  display: block;
  width: 250px;
  height: 54px;
  padding: 0 1em;
  margin: 0 auto;
  line-height: 53px;
  border-radius: 9999px;
  background-color: #878787;
  color: #fff !important;
  border: none;
  font-weight: 700;
  font-size: 1.8rem;
  cursor: pointer;
  transition: opacity 0.3s;
}
@media screen and (max-width: 1024px) {
  .section-inquiry__btn {
    width: clamp(200px, 66%, 300px);
    height: auto;
    line-height: 1;
    padding: clamp(6px, 4vw, 20px) 1em clamp(7px, 4.5vw, 21px);
    font-size: clamp(1.4rem, 3.8vw, 1.9rem);
  }
}
.section-inquiry__btn:hover {
  opacity: 0.8;
}
@media screen and (max-width: 1024px) {
  .section-inquiry__btn:hover {
    opacity: 1;
  }
}
.section-inquiry__btn-reset {
  display: block;
  width: 250px;
  height: 40px;
  padding: 0 1em;
  margin: 0 auto;
  line-height: 39px;
  border-radius: 9999px;
  background-color: #fff;
  color: inherit !important;
  border: 1px solid #878787;
  font-weight: 400;
  font-size: 1.4rem;
  transition: opacity 0.3s;
  cursor: pointer;
}
@media screen and (max-width: 1024px) {
  .section-inquiry__btn-reset {
    width: clamp(200px, 66%, 300px);
    height: auto;
    line-height: 1;
    padding: clamp(3px, 2vw, 10px) 1em clamp(4px, 2.3vw, 11px);
    font-size: clamp(1.2rem, 3.2vw, 1.5rem);
  }
}
.section-inquiry__btn-reset:hover {
  opacity: 0.7;
}
@media screen and (max-width: 1024px) {
  .section-inquiry__btn-reset:hover {
    opacity: 1;
  }
}
.section-inquiry .txt-caution {
  color: #f20040;
  font-size: clamp(1.3rem, 1.3vw, 1.5rem);
}
@media screen and (max-width: 1024px) {
  .section-inquiry .txt-caution {
    font-size: clamp(1.2rem, 3.2vw, 1.5rem);
  }
}
.section-inquiry__block.block-thankyou {
  min-height: 25vh;
}
@media screen and (max-width: 1024px) {
  .section-inquiry__block.block-thankyou {
    min-height: 50vh;
  }
}

.pagetop {
  display: block;
  position: absolute;
  z-index: 2;
  aspect-ratio: 24/95;
  width: 27px;
  bottom: -90px;
  right: 1.2vw;
  cursor: pointer;
  background: url("../img/btn_pagetop.svg") no-repeat center bottom/100% auto;
  overflow: hidden;
  line-height: 0;
  text-indent: 100%;
  white-space: nowrap;
  transition: opacity 0.2s;
}
@media screen and (max-width: 1024px) {
  .pagetop {
    width: clamp(18px, 5.2vw, 32px);
    right: 1.5vw;
    bottom: -8vw;
  }
}
.pagetop::before {
  position: absolute;
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: url("../img/arrow_u.svg") no-repeat center top 7px/100% auto;
  transition: top 0.2s;
}
.pagetop:hover {
  opacity: 0.6;
}
@media screen and (max-width: 1024px) {
  .pagetop:hover {
    opacity: 1;
  }
}
.pagetop:hover::before {
  top: -4px;
}
@media screen and (max-width: 1024px) {
  .pagetop:hover::before {
    top: 0;
  }
}

.footer {
  position: relative;
  padding: 8vw 0 3vw;
  color: #5e5e5e;
}
@media screen and (max-width: 1024px) {
  .footer {
    padding: 0 0 12vw;
  }
}
.footer::before {
  display: block;
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 100%;
  aspect-ratio: 1366/150;
  background: url("../img/logo_footer.svg") no-repeat center bottom;
  background-size: 100% auto;
  z-index: -1;
}
@media screen and (max-width: 1024px) {
  .footer::before {
    background-size: 101% auto;
  }
}
.footer-nav__list {
  display: flex;
  justify-content: center;
  margin: 0 auto 85px;
}
@media screen and (max-width: 1024px) {
  .footer-nav__list {
    margin: 0 auto 8vw;
  }
}
.footer-nav__item {
  margin: 0 1.2em;
}
.footer-nav__link {
  font-size: 1.4rem;
  transition: 0.3s;
  opacity: 1;
}
.footer-nav__link:hover {
  opacity: 0.6;
}
@media screen and (max-width: 1024px) {
  .footer-nav__link:hover {
    opacity: 1;
  }
}
@media screen and (max-width: 1024px) {
  .footer-nav__link {
    font-size: clamp(1.1rem, 3vw, 1.4rem);
  }
}

.copyright {
  rotate: 0.03deg;
  margin: 0 5vw;
  text-align: center;
  font-size: 1.2rem;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .copyright {
    font-size: clamp(1rem, 2.7vw, 1.3rem);
  }
}/*# sourceMappingURL=common.css.map */