@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700;800&display=swap");
html {
  font-size: 62.5%;
  /* 16px * 62.5% = 10px */
  width: 100%;
  box-sizing: border-box;
}

body {
  color: white;
  background-color: #000000;
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Noto Sans", Meiryo, sans-serif;
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 1.5;
  text-align: center;
  width: 100%;
  max-width: 2685px;
  overflow-x: hidden;
}

section {
  width: 100%;
  overflow-x: hidden;
}

.br {
  display: inline-block;
}

.sp {
  display: none;
}

@media (max-width: 599px) {
  .sp {
    display: block;
  }
}
img {
  width: 100%;
}

.button {
  position: relative;
  font-size: 3.4rem;
  font-weight: 800;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 550px;
  padding: 35px 0;
  margin: 0 auto;
  border-radius: 100px;
  color: #FFFFFF;
  text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.3);
  background: linear-gradient(135deg, #9EE3F6, #001EEF);
  transition: 0.25s;
  box-shadow: 0 8px 0 #D2D2D2;
}

.button:hover {
  transform: translateY(8px);
  box-shadow: none;
}

.button span {
  position: absolute;
  top: 50%;
  right: 30px;
  transform: translateY(-50%);
  display: block;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: #FFFFFF;
}

.button span::after {
  content: "";
  display: block;
  -webkit-clip-path: polygon(0 0, 0% 100%, 100% 50%);
          clip-path: polygon(0 0, 0% 100%, 100% 50%);
  width: 14px;
  height: 20px;
  background: #0000FF;
  position: absolute;
  top: 50%;
  right: 14px;
  transform: translateY(-50%);
  z-index: 1;
}

@media (max-width: 1280px) {
  .button {
    width: 300px;
    padding: 20px 0;
    font-size: 2.2rem;
  }
  .button span {
    right: 15px;
    width: 25px;
    height: 25px;
  }
  .button span::after {
    width: 10px;
    height: 15px;
    right: 6px;
  }
}
header {
  z-index: 99990;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
}

.header__top {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #000000;
}
.header__top h1 a {
  display: block;
  width: 100%;
  height: auto;
  background: transparent;
  color: transparent;
  font-weight: 0;
}

.header__top h1 img {
  height: 70px;
  width: auto;
  -o-object-fit: contain;
     object-fit: contain;
  filter: brightness(0) invert(1) drop-shadow(0 0 5px #FFFFFF);
}

.header__top a {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  width: 360px;
  height: 80px;
  background: #000000;
  color: #FFFFFF;
  font-size: 2.5rem;
  font-weight: 800;
}

.header__contact img {
  width: 35px;
}

.nav {
  overflow: hidden;
  padding: 20px 0;
  background: linear-gradient(90deg, rgba(204, 200, 197, 0.85) 0%, rgba(128, 128, 128, 0.85) 25%, rgba(218, 218, 218, 0.85) 50%, rgba(128, 128, 128, 0.85) 75%, rgba(204, 200, 197, 0.85) 100%);
}

.nav ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
}

.nav ul li a {
  width: -moz-fit-content;
  width: fit-content;
  color: #FFFFFF;
  font-weight: 800;
}

.menu {
  display: none;
}

.nav-contact__SP,
.nav-logo__sp {
  display: none;
}

.show {
  background: #000000;
}

@media (max-width: 1280px) {
  .header__top {
    padding: 10px 0;
  }
  .header__top h1 img {
    height: 50px;
  }
  .header__top .header__contact {
    display: none;
  }
  .menu {
    position: relative;
    z-index: 99999;
    display: block;
    width: 50px;
    height: 50px;
    margin-right: 15px;
  }
  .menu span:nth-child(1) {
    position: absolute;
    top: 5px;
    left: 2.5px;
    width: 45px;
    height: 3px;
    background: #FFFFFF;
    border-radius: 10px;
    transition: 0.4s;
  }
  .active span:nth-child(1) {
    background: #1A1A1A;
    transform: rotate(45deg);
    top: 15px;
  }
  .menu span:nth-child(2) {
    position: absolute;
    top: 15px;
    left: 2.5px;
    width: 45px;
    height: 3px;
    background: #FFFFFF;
    border-radius: 10px;
    transition: 0.4s;
  }
  .active span:nth-child(2) {
    opacity: 0;
  }
  .menu span:nth-child(3) {
    position: absolute;
    top: 25px;
    left: 2.5px;
    width: 45px;
    height: 3px;
    background: #FFFFFF;
    border-radius: 10px;
    transition: 0.4s;
  }
  .active span:nth-child(3) {
    background: #1A1A1A;
    transform: rotate(-45deg);
    top: 16px;
  }
  .menu::after {
    content: "MENU";
    position: absolute;
    top: 30px;
    font-size: 1.4rem;
    font-weight: 500;
    left: 0;
    width: 100%;
    text-align: center;
    transition: 0.4s;
    color: #FFFFFF;
  }
  .active::after {
    content: "CLOSE";
    color: #1A1A1A;
  }
  .nav {
    position: fixed;
    z-index: 99990;
    width: 100vw;
    height: 100vh;
    overflow-y: scroll;
    top: 0;
    left: -100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.4s;
  }
  .open {
    left: 0;
  }
  .nav ul {
    flex-direction: column;
  }
  .nav ul li {
    width: -moz-fit-content;
    width: fit-content;
  }
  .nav-logo__sp {
    display: block;
  }
  .nav-logo__sp img {
    width: 80%;
    display: block;
    margin: 0 auto;
  }
  .nav-contact__SP {
    display: flex;
    gap: 10px;
    width: -moz-fit-content;
    width: fit-content;
    padding: 20px 50px;
    background: #FF3700;
    color: #1A1A1A;
  }
  .nav-contact__SP img {
    width: 30px;
  }
  .nav ul li a {
    color: #1A1A1A;
    display: flex;
    gap: 20px;
  }
  .nav ul li:last-child a {
    color: #FFFFFF;
  }
  .nav ul li:last-child a img {
    filter: invert(1);
  }
}
.top {
  height: 190rem;
  position: relative;
  background-image: url(../images/bg_pc_fv3.png);
  background-repeat: no-repeat;
  background-size: cover;
  overflow: visible;
  background-position: 100% -10rem;
}
@media (max-width: 2200px) {
  .top {
    background-position: 93% -25rem;
    background-size: 150% auto;
    height: 160rem;
  }
}
@media (max-width: 1920px) {
  .top {
    background-position: 93% -180px;
    background-size: 157% auto;
    height: 145rem;
  }
}
@media (max-width: 1440px) {
  .top {
    background-position: 100% -180px;
    height: 130rem;
  }
}
@media (max-width: 1377px) {
  .top {
    background-position: 100% -180px;
    height: 120rem;
  }
}
@media (max-width: 1024px) {
  .top {
    height: 110rem;
  }
}
@media (max-width: 768px) {
  .top {
    background-image: url(../images/bg_sp_fv.png);
    background-position: 50% -15rem;
    background-size: 110%;
    height: 107rem;
  }
}
@media (max-width: 599px) {
  .top {
    height: 80rem;
    background-position: 100% 0rem;
    background-size: cover;
  }
}
.top .spacer {
  height: 20rem;
}
@media (max-width: 1440px) {
  .top .spacer {
    height: 15rem;
  }
}
@media (max-width: 768px) {
  .top .spacer {
    height: 7rem;
  }
}
.top .spacer_2 {
  display: none;
}
@media (max-width: 768px) {
  .top .spacer_2 {
    display: block;
    height: 15rem;
  }
}
@media (max-width: 599px) {
  .top .spacer_2 {
    height: 20rem;
  }
}

.top__title {
  overflow: hidden;
}
@media (max-width: 768px) {
  .top__title {
    margin-top: 5%;
  }
}

.top__title img {
  margin-left: 5%;
  width: 50%;
  display: block;
}
@media (max-width: 768px) {
  .top__title img {
    margin: 0;
  }
}

.top__title img:nth-of-type(1) {
  animation: 1s slide ease-out both;
  animation-delay: 0.7s;
}
@media (max-width: 768px) {
  .top__title img:nth-of-type(1) {
    width: 100%;
  }
}

.top__title img:nth-of-type(2) {
  animation: 1s slide ease-out both;
  animation-delay: 0.7s;
}
@media (max-width: 768px) {
  .top__title img:nth-of-type(2) {
    width: 50%;
  }
}
@media (max-width: 599px) {
  .top__title img:nth-of-type(2) {
    width: 50%;
  }
}

.top__title img:nth-of-type(3) {
  animation: 1s slide ease-out both;
  animation-delay: 0.9s;
}
@media (max-width: 768px) {
  .top__title img:nth-of-type(3) {
    width: 50%;
  }
}
@media (max-width: 599px) {
  .top__title img:nth-of-type(3) {
    width: 50%;
  }
}

.top__title img:nth-of-type(4) {
  animation: 1s slide ease-out both;
  animation-delay: 1.1s;
}
@media (max-width: 768px) {
  .top__title img:nth-of-type(4) {
    width: 50%;
  }
}
@media (max-width: 599px) {
  .top__title img:nth-of-type(4) {
    width: 50%;
  }
}

.top__title img:nth-of-type(5) {
  animation: 1s slide ease-out both;
  animation-delay: 1.3s;
  width: 85%;
  margin: -5rem auto 0;
}
@media (max-width: 1024px) {
  .top__title img:nth-of-type(5) {
    width: 100%;
    margin: 0 auto;
  }
}

@keyframes slide {
  0% {
    transform: translateX(50%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
.intro {
  margin-top: 40rem;
  padding-bottom: 15rem;
}
@media (max-width: 1800px) {
  .intro {
    margin-top: 20rem;
  }
}
@media (max-width: 1440px) {
  .intro {
    margin-top: 5rem;
  }
}
@media (max-width: 1024px) {
  .intro {
    margin-top: 0;
    padding-bottom: 10rem;
  }
}
@media (max-width: 768px) {
  .intro {
    padding-bottom: 5rem;
  }
}

.intro {
  position: relative;
  background-image: url(../images/bg_siouchiku.png);
  background-repeat: no-repeat;
  background-position: 50% 90%;
  background-size: cover;
}
@media (min-width: 2000px) {
  .intro {
    background-position: 0% 0%;
  }
}
.intro h2 {
  margin-top: 16rem;
  font-size: clamp(2.2rem, 1.035rem + 4.9709vw, 7rem);
  font-weight: 900;
  font-family: "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho Pro", serif;
}
@media (max-width: 768px) {
  .intro h2 {
    margin-top: 0rem;
  }
}
@media (max-width: 599px) {
  .intro h2 {
    margin-top: 2rem;
  }
}
.intro p {
  font-size: clamp(2.1rem, 1.5903rem + 2.1748vw, 4.2rem);
  font-weight: 800;
  font-family: "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho Pro", serif;
}
.intro p span {
  color: #ffff00;
}
.intro .pic_woman {
  width: 15vw;
  position: absolute;
  top: 0rem;
  right: 6%;
}
@media (max-width: 768px) {
  .intro .pic_woman {
    top: 16rem;
    width: 13rem;
    right: 0;
  }
}
@media (max-width: 599px) {
  .intro .pic_woman {
    top: 19.5rem;
    width: 10rem;
    right: 0;
  }
}
@media (max-width: 1024px) {
  .intro .intro_icons {
    margin-top: 7rem;
  }
}
@media (max-width: 599px) {
  .intro .intro_icons {
    margin-top: 12rem;
  }
}
.intro ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.intro ul li {
  width: clamp(10rem, 20vw, 40rem);
}

.business .business__contents h2 {
  font-size: clamp(2.2rem, 1.035rem + 4.9709vw, 7rem);
  font-weight: 900;
  width: 100%;
  color: black;
  background-color: white;
}
.business .business__contents span {
  color: red;
}

@keyframes slidein {
  0% {
    left: -100%;
  }
  30% {
    left: 0;
  }
  70% {
    left: 0;
  }
  100% {
    left: 100%;
  }
}
.business .business__contents h2 {
  margin-bottom: 5rem;
}
.business .business__contents .flex {
  display: flex;
  justify-content: center;
}
.business .business__contents .flex ul {
  text-align: start;
  margin-bottom: 5rem;
}
.business .business__contents .flex ul li {
  margin-bottom: 5rem;
  font-size: clamp(2.1rem, 1.5903rem + 2.1748vw, 4.2rem);
  font-weight: 800;
  padding: 20px 30px;
}
@media (max-width: 768px) {
  .business .business__contents .flex ul li {
    text-align: start;
    margin-bottom: 0;
  }
}

.attention {
  background-image: url(../images/bg_face2.png);
  background-repeat: no-repeat;
  background-size: cover;
  padding-block: 10rem 15rem;
  width: 100%;
}
@media (max-width: 768px) {
  .attention {
    background-position: 90%;
    padding-block: 10% 10%;
  }
}
.attention .img_txt {
  width: 100%;
}
.attention .cta {
  margin-top: 0;
}
.attention h2 {
  font-size: clamp(2.2rem, 1.035rem + 4.9709vw, 7rem);
  font-weight: 900;
  width: 100%;
  color: black;
  background-color: white;
}
.attention h2 span {
  color: #00a73c;
  font-size: larger;
}
.attention ul {
  margin-block: 5%;
}
@media (max-width: 768px) {
  .attention ul {
    margin-inline: 2%;
  }
}
.attention ul li {
  text-align: start;
  margin-inline: 20%;
  margin-block: 5rem;
}
@media (max-width: 768px) {
  .attention ul li {
    margin-inline: 0;
  }
}
.attention ul li img {
  position: absolute;
  width: 120vw;
  left: -55%;
  overflow: hidden;
}
@media (max-width: 768px) {
  .attention ul li img {
    position: absolute;
    width: 170vw;
  }
}
.attention ul li h3 {
  font-size: clamp(2.1rem, 1.5903rem + 2.1748vw, 4.2rem);
  font-weight: 800;
  color: #00a73c;
  width: 90%;
  margin: 0 auto;
  padding: 5px 0;
}
.attention ul li p {
  font-size: clamp(1.8rem, 1.5087rem + 1.2427vw, 3rem);
  font-weight: 500;
}
@media (max-width: 768px) {
  .attention ul li p {
    width: 90%;
    margin: 0 auto;
  }
}
.attention .img_txt {
  width: min(1200px, 100%);
  margin: 0 auto;
  margin-bottom: 5rem;
}
@media (max-width: 768px) {
  .attention .img_txt {
    display: none;
  }
}
.attention .img_txt_sp {
  display: none;
}
@media (max-width: 768px) {
  .attention .img_txt_sp {
    display: block;
    margin: 0 auto;
    width: 100%;
    padding-bottom: 5rem;
  }
}

.solution {
  background-image: url(../images/bg_graph.png);
  padding-bottom: 7rem;
  width: 100%;
}
@media (max-width: 768px) {
  .solution {
    background-position: 90%;
  }
}
.solution .cta {
  margin-top: 0;
}
.solution h2 {
  font-size: clamp(2.2rem, 1.035rem + 4.9709vw, 7rem);
  font-weight: 900;
  width: 100%;
  color: black;
  background-color: white;
}
.solution h2 span {
  color: #00a73c;
  font-size: larger;
}
.solution ul {
  margin-block: 6%;
}
@media (max-width: 768px) {
  .solution ul {
    margin-inline: 2%;
  }
}
.solution ul li {
  text-align: start;
  margin-inline: 20%;
  margin-block: 5%;
}
@media (max-width: 768px) {
  .solution ul li {
    margin-inline: 0;
    margin-top: 10%;
  }
}
.solution ul li p {
  font-size: clamp(1.8rem, 1.5087rem + 1.2427vw, 3rem);
  font-weight: 500;
  margin-left: 18%;
  margin-top: -5%;
  margin-bottom: 5rem;
}
.solution ul li .graph {
  display: block;
  width: min(900px, 100%);
  margin: 0 auto;
}

.works {
  background-image: url(../images/bg_graph.png);
  padding-bottom: 7rem;
  width: 100%;
}
.works .cta {
  margin-top: 0;
}
.works h2 {
  font-size: clamp(2.2rem, 1.035rem + 4.9709vw, 7rem);
  font-weight: 900;
  width: 100%;
  color: black;
  background-color: white;
}
.works h2 span {
  color: #00a73c;
  font-size: larger;
}
.works .works_upper {
  width: min(1500px, 100%);
  margin: 0 auto;
}
.works .works_upper ul {
  position: relative;
  margin: 6%;
  padding-block: 6%;
  background-color: rgba(0, 153, 68, 0.5);
}
@media (max-width: 768px) {
  .works .works_upper ul {
    margin-inline: 2%;
  }
}
.works .works_upper ul::after {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.5);
  content: "";
  top: 1em;
  bottom: 1em;
  left: 1em;
  right: 1em;
}
.works .works_upper ul li {
  text-align: start;
  margin-inline: 10%;
}
@media (max-width: 599px) {
  .works .works_upper ul li {
    margin-inline: 6%;
    margin-block: 10%;
  }
}
.works .works_upper ul li h3 {
  position: relative;
  padding-left: 3.5rem;
  font-size: clamp(2.1rem, 1.5903rem + 2.1748vw, 4.2rem);
  font-weight: 800;
  font-family: "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho Pro", serif;
  padding-left: 4.5rem;
  color: #FFF100;
}
@media (max-width: 768px) {
  .works .works_upper ul li h3 {
    padding-left: 3.5rem;
  }
}
.works .works_upper ul li h3::before {
  content: "";
  position: absolute;
  left: 0; /* アイコンの位置を指定 */
  top: 50%;
  transform: translateY(-50%);
  background: url("../images/icon_nb_1.svg") no-repeat center;
  width: 4rem; /* アイコンの幅 */
  height: 4rem; /* アイコンの高さ */
}
@media (max-width: 768px) {
  .works .works_upper ul li h3::before {
    width: 3rem;
    height: 3rem;
  }
}
.works .works_upper ul li:nth-child(1) h3::before {
  background: url("../images/icon_nb_1.svg") no-repeat center;
}
.works .works_upper ul li:nth-child(2) h3::before {
  background: url("../images/icon_nb_2.svg") no-repeat center;
}
.works .works_upper ul li:nth-child(3) h3::before {
  background: url("../images/icon_nb_3.svg") no-repeat center;
}
.works .works_upper ul li:nth-child(4) h3::before {
  background: url("../images/icon_nb_4.svg") no-repeat center;
}
.works .works_upper ul li:nth-child(5) h3::before {
  background: url("../images/icon_nb_5.svg") no-repeat center;
}
.works .works_upper ul li div {
  display: flex;
}
@media (max-width: 599px) {
  .works .works_upper ul li div {
    display: block;
    text-align: center;
  }
}
.works .works_upper ul li img {
  width: min(200px, 100%);
  height: auto;
}
@media (max-width: 768px) {
  .works .works_upper ul li img {
    width: min(150px, 100%);
    height: auto;
  }
}
.works .works_upper ul li p {
  font-size: clamp(1.8rem, 1.5087rem + 1.2427vw, 3rem);
  font-weight: 500;
  text-align: start;
}
.works .works_lower {
  width: 90%;
  margin: 0 auto;
}
.works .works_lower h2 {
  padding-inline: 6%;
  background-color: transparent;
  margin-bottom: 3rem;
}
@media (max-width: 599px) {
  .works .works_lower h2 .pc {
    display: none;
  }
}
.works .works_lower h2 .pc .sp {
  display: none;
}
@media (max-width: 599px) {
  .works .works_lower h2 .pc .sp {
    display: block;
  }
}
.works .works_lower ul {
  width: min(900px, 100%);
  display: flex;
  flex-direction: column;
  gap: 5rem;
  margin: 0 auto;
  background-color: transparent;
  text-align: start;
  margin-bottom: 10rem;
}
.works .works_lower ul li h3 {
  position: relative;
  padding-inline: 2rem;
  font-size: clamp(2rem, 1.7087rem + 1.2427vw, 3.2rem);
  font-weight: 600;
  border-left: 1px solid white;
  border-bottom: 1px solid white;
  overflow: hidden;
}
.works .works_lower ul li h3::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 96.8%;
  height: 1px;
  background: white;
}
@media (max-width: 768px) {
  .works .works_lower ul li h3::before {
    display: none;
  }
}
.works .works_lower ul li h3::after {
  position: absolute;
  content: "";
  right: 0px;
  width: 2px;
  height: 100%;
  background-color: white;
  transform: skewX(30deg);
  transform-origin: bottom left;
}
@media (max-width: 768px) {
  .works .works_lower ul li h3::after {
    display: none;
  }
}
.works .works_lower ul li p {
  font-size: clamp(1.8rem, 1.5087rem + 1.2427vw, 3rem);
  font-weight: 500;
  margin-top: 2rem;
}
.works .works_lower .cta {
  margin-top: 5rem;
}

.achievement {
  background-image: url("../images/bg-leather_pc_23.png");
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
@media (max-width: 768px) {
  .achievement {
    background-image: url("../images/bg-leather_sp_23.png");
    background-repeat: repeat-y;
    background-size: contain;
    padding-bottom: 8%;
  }
}
.achievement div p:first-child {
  font-size: clamp(2.2rem, 1.035rem + 4.9709vw, 7rem);
  font-weight: 900;
  color: #FFD200;
}
.achievement div .h2_wrapper {
  background-image: url("../images/bg_banner_2.png");
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
.achievement div .h2_wrapper h2 {
  position: relative;
  color: white;
  padding: 20px 0;
  text-align: start;
  font-size: clamp(2.2rem, 4.6875vw, 6rem);
  font-weight: 800;
  margin-bottom: 5rem;
  padding-left: 28%;
}
.achievement div .h2_wrapper h2::before {
  content: "";
  position: absolute;
  top: -20%;
  left: 10%;
  width: 30rem;
  height: 30rem;
  background-image: url("../images/badge.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
@media (max-width: 1440px) {
  .achievement div .h2_wrapper h2::before {
    top: -4rem;
    left: 4%;
    width: 27rem;
    height: 27rem;
  }
}
@media (max-width: 1024px) {
  .achievement div .h2_wrapper h2::before {
    top: -3rem;
    left: 0;
    width: 21rem;
    height: 21rem;
  }
}
@media (max-width: 768px) {
  .achievement div .h2_wrapper h2::before {
    top: -2.5rem;
    left: 0;
    width: 18rem;
    height: 18rem;
  }
}
@media (max-width: 599px) {
  .achievement div .h2_wrapper h2::before {
    top: -2rem;
    left: -5%;
    width: 15rem;
    height: 15rem;
  }
}
@media (max-width: 375px) {
  .achievement div .h2_wrapper h2::before {
    top: -0.8rem;
    left: -4%;
    width: 12rem;
    height: 12rem;
  }
}
@media (max-width: 599px) {
  .achievement div .h2_wrapper h2 .sp_none {
    display: none;
  }
}
.achievement .div_wrapper {
  width: min(1200px, 90%);
  margin: 0 auto;
}
.achievement .div_wrapper > div {
  margin-block: 5%;
}
.achievement .div_wrapper h3 {
  font-size: clamp(2.1rem, 1.5903rem + 2.1748vw, 4.2rem);
  font-weight: 800;
  padding: 0.25em 0.5em;
  color: #fff;
  background: transparent;
  border-left: solid 1rem #C3D72C;
  text-align: start;
  margin-block: 1rem;
}
.achievement .div_wrapper p {
  font-size: clamp(1.8rem, 1.5087rem + 1.2427vw, 3rem);
  font-weight: 500;
  text-align: start;
}
.achievement .div_wrapper .div_flex {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  gap: 5%;
}
@media (max-width: 768px) {
  .achievement .div_wrapper .div_flex {
    flex-direction: column;
  }
}
.achievement .div_wrapper .div_flex div {
  width: 60%;
}
@media (max-width: 768px) {
  .achievement .div_wrapper .div_flex div {
    width: 100%;
  }
}
.achievement .div_wrapper .div_flex figure img {
  width: min(500px, 100%);
}
.achievement .div_wrapper .div_flex figure figcaption {
  margin-block: 2% 5%;
}
.achievement .div_wrapper .image-container {
  width: min(800px, 100%);
  padding-block: 15% 5%;
  position: relative;
  display: inline-block; /* 必要に応じてブロック調整 */
  margin: 5rem 0 2rem 0;
}
.achievement .div_wrapper .image-container img {
  display: block;
  width: 100%;
  height: auto;
}
.achievement .div_wrapper .image-container figcaption {
  position: absolute;
  top: 15%; /* 縦方向の中央に配置 */
  left: 50%; /* 横方向の中央に配置 */
  transform: translate(-50%, -50%); /* 完全に中央揃え */
  color: white; /* テキストカラー */
  text-align: center;
  padding: 10px 20px;
  width: 100%;
  font-size: clamp(1.8rem, 1.5087rem + 1.2427vw, 3rem);
  font-weight: 500;
}
.achievement .div_wrapper .image-container figcaption span {
  font-size: clamp(1.6rem, 1.4058rem + 0.8285vw, 2.4rem);
  font-weight: 400;
}

.upper {
  padding-top: 10%;
  background-image: url("../images/bg-leather_pc_upper.png");
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: 80% -20%;
}

.introduction {
  position: relative;
}

.introduction::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #FF3700;
}

.introduction__scroll::after {
  animation: slidein 1s;
  animation-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@keyframes slidein {
  0% {
    left: -100%;
  }
  30% {
    left: 0;
  }
  70% {
    left: 0;
  }
  100% {
    left: 100%;
  }
}
@media (max-width: 699px) {
  .introduction h2 {
    margin-bottom: 50px;
  }
  .introduction .introduction-sp {
    display: block;
    width: 80%;
    max-width: 400px;
  }
  .introduction .introduction-pc {
    display: none;
  }
  .introduction .slider-dots {
    width: 100%;
    gap: 0;
    margin: 0;
    padding: 0;
    text-align: center;
    list-style: none;
  }
  .introduction .slider-dots li {
    display: inline-block;
    width: 20%;
  }
  .introduction button {
    position: relative;
    width: 100%;
    height: 4px;
    border: 0;
    background-color: #ccc;
    font-size: 0;
  }
  .introduction button::after {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    display: block;
    width: 0%;
    height: 100%;
  }
  .introduction .slick-active button:after {
    background-color: #1A1A1A;
    animation: progress 5.5s linear forwards;
  }
  @keyframes progress {
    from {
      width: 0%;
    }
    to {
      width: 100%;
    }
  }
  .introduction .slick-slide img {
    display: block;
    -o-object-fit: cover;
       object-fit: cover;
    aspect-ratio: 3/4;
  }
}
.question {
  background-image: url(../images/question.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  padding: 0 0 180px;
}

.question h2 {
  background: #1A1A1A;
  color: #FFFFFF;
  padding: 20px 0;
  text-align: center;
  font-size: clamp(2.2rem, 4.6875vw, 6rem);
  font-weight: 800;
  margin-bottom: 100px;
}

.question__contents {
  width: 90%;
  max-width: 1000px;
  padding: 50px 0 100px;
  margin: 0 auto;
  background: #FFFFFF;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.question__1 {
  display: block;
  width: 90%;
  margin: 0 auto 50px;
  -o-object-fit: contain;
     object-fit: contain;
}

.question__2 {
  width: 90%;
  margin: 0 auto 50px;
  font-size: 2rem;
  font-weight: 600;
  text-align: left;
}

.question__3 {
  display: block;
  width: 80%;
  margin: 0 auto 50px;
  -o-object-fit: contain;
     object-fit: contain;
}

.question__4 {
  display: block;
  width: 80%;
  margin: 0 auto;
  -o-object-fit: contain;
     object-fit: contain;
}

@media (max-width: 1280px) {
  .question {
    padding-bottom: 75px;
  }
  .question h2 {
    margin-bottom: 50px;
  }
}
@media (max-width: 699px) {
  .question__2 {
    font-size: 1.6rem;
  }
}
.price {
  background-color: #EFEFEF;
}

.price h2 {
  background: #FF3700;
  color: #FFFFFF;
  padding: 20px 0;
  text-align: center;
  font-size: clamp(2.2rem, 4.6875vw, 6rem);
  font-weight: 800;
}

.price__top {
  width: 90%;
  max-width: 1400px;
  padding: 50px 0;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 5vw;
  flex-wrap: wrap;
}

.price__top li {
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  gap: 20px;
}

.price__top li h3 {
  padding: 7.5px 15px;
  background: #FF3700;
  color: #FFFFFF;
  font-size: 2.4rem;
  font-weight: 700;
  height: -moz-fit-content;
  height: fit-content;
}

.price__top li div {
  color: #FF3700;
  text-align: right;
}

.price__top li div p:first-child {
  font-weight: 800;
  font-size: 5rem;
  line-height: 1;
}

.price__top li div p:first-child span {
  font-size: 2.4rem;
  font-weight: 700;
  margin-right: 10px;
  vertical-align: middle;
}

.price__top li div p:first-child small {
  font-size: 2.4rem;
  font-weight: 700;
  vertical-align: middle;
}

.price__top li div p:last-child {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 2;
}

@media (max-width: 1280px) {
  .price__top li h3 {
    font-size: 2rem;
  }
  .price__top li div p:first-child {
    font-size: 2.4rem;
  }
  .price__top li div p:first-child span {
    font-size: 1.6rem;
  }
  .price__top li div p:last-child {
    font-size: 1.6rem;
  }
}
@media (max-width: 699px) {
  .price__top li {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 10px;
  }
  .price__top {
    gap: 40px;
  }
  .price__top li div {
    color: #FF3700;
    text-align: right;
    display: flex;
    gap: 10px;
  }
}
.training {
  background-image: url("../images/bg_graph.png");
  width: 100%;
  padding: 5% 0 180px;
}
.training h2 {
  color: #000000;
  font-size: clamp(2.2rem, 1.035rem + 4.9709vw, 7rem);
  font-weight: 900;
  background-color: #EFEFEF;
  margin-bottom: 1%;
}
.training > p {
  font-size: clamp(2.1rem, 1.5903rem + 2.1748vw, 4.2rem);
  font-weight: 800;
  margin-bottom: 2%;
}

@media (max-width: 1280px) {
  .training {
    padding: 75px 0;
  }
  .training h2 {
    font-size: 3.2rem;
  }
}
.training .schedule {
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 5rem;
  justify-content: center;
}
.training .schedule li {
  position: relative;
  background-color: #EFEFEF;
  display: block;
  width: min(600px, 100%);
  padding-bottom: 10rem;
}
.training .schedule li > p {
  position: relative;
  background-color: #000000;
  text-align: center;
  margin-top: 2rem;
  width: 40%;
  font-size: clamp(2rem, 1.7087rem + 1.2427vw, 3.2rem);
  font-weight: 600;
}
.training .schedule li > p:after {
  position: absolute;
  content: "";
  right: -2px;
  top: -4px;
  width: 0;
  height: 0;
  border: none;
  border-left: solid 30px transparent;
  border-bottom: solid 55px #EFEFEF;
}
.training .schedule li div {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  width: 90%;
  text-align: start;
  margin: 0 auto;
}
.training .schedule li div h3 {
  color: #000000;
  font-size: clamp(2.1rem, 1.5903rem + 2.1748vw, 4.2rem);
  font-weight: 800;
}
.training .schedule li div h3 span {
  font-size: 7rem;
}
.training .schedule li div p {
  color: #000000;
  font-size: clamp(2rem, 1.7087rem + 1.2427vw, 3.2rem);
  font-weight: 600;
}
.training .schedule li div p:last-of-type {
  background-color: #fff;
  font-size: 1.7rem;
  padding: 1rem;
}
.training .schedule li div p:last-of-type span {
  font-size: 1.4rem;
}
.training .schedule li div .date_container {
  display: grid;
  grid-template-columns: 29% 1fr;
  grid-template-rows: 1fr 1fr;
  line-height: 1;
  margin-left: 0;
}
.training .schedule li div .date_container p {
  font-size: clamp(1.6rem, 1.4592rem + 0.6009vw, 2rem);
  font-weight: 400;
  background-color: transparent;
  padding: 0;
  font-weight: 600;
}
.training .schedule li div .date_container p:nth-child(3) {
  grid-column: 2;
}
.training .schedule li .cta {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%);
  margin-top: 2rem;
  margin-bottom: 2rem;
  height: 7rem;
}

.teacher {
  padding-top: 4%;
  background-color: #EFEFEF;
}
.teacher h2 {
  font-size: clamp(2.2rem, 1.035rem + 4.9709vw, 7rem);
  font-weight: 900;
  background-color: #000000;
}
.teacher ul {
  width: 90%;
  margin: 5% auto;
}
.teacher ul li {
  display: flex;
  background-color: #fff;
  padding: 5%;
  border: 1px solid black;
  color: #000000;
  gap: 5%;
}
@media (max-width: 768px) {
  .teacher ul li {
    flex-direction: column-reverse;
  }
}
.teacher ul li .left {
  width: 30%;
}
@media (max-width: 768px) {
  .teacher ul li .left {
    width: 60%;
    margin: 0 auto;
  }
}
.teacher ul li .left figure {
  padding-bottom: 30%;
  position: relative;
}
@media (max-width: 599px) {
  .teacher ul li .left figure {
    padding-bottom: 55%;
  }
}
.teacher ul li .left figure figcaption {
  position: absolute;
  width: 150%;
  left: 50%;
  margin-top: 1rem;
  transform: translateX(-50%);
  font-size: clamp(1.6rem, 1.4058rem + 0.8285vw, 2.4rem);
  font-weight: 400;
}
@media (max-width: 1024px) {
  .teacher ul li .left figure figcaption {
    font-size: 1.6rem;
  }
}
.teacher ul li div:nth-of-type(2) {
  width: 60%;
  display: flex;
  flex-direction: column;
  gap: 2%;
  text-align: start;
}
@media (max-width: 768px) {
  .teacher ul li div:nth-of-type(2) {
    width: 95%;
  }
}
.teacher ul li div:nth-of-type(2) h3 {
  text-align: center;
  font-size: clamp(2.1rem, 1.5903rem + 2.1748vw, 4.2rem);
  font-weight: 800;
  background-color: #EFEFEF;
  border: solid 1px black;
  color: black;
}
.teacher ul li div:nth-of-type(2) h4 {
  text-align: start;
  margin-bottom: 5%;
  font-size: clamp(2.1rem, 1.5903rem + 2.1748vw, 4.2rem);
  font-weight: 800;
}
.teacher ul li div:nth-of-type(2) p {
  text-align: right;
  font-size: clamp(1.6rem, 1.4058rem + 0.8285vw, 2.4rem);
  font-weight: 400;
}
.teacher ul li div:nth-of-type(2) h5 {
  font-size: clamp(1.6rem, 1.4058rem + 0.8285vw, 2.4rem);
  font-weight: 400;
  text-align: center;
  display: inline-block;
  padding: 0.5rem 5rem;
  color: white;
  background-color: #000000;
  border-radius: 5px;
  width: min(200px, 50%);
}
@media (max-width: 768px) {
  .teacher ul li div:nth-of-type(2) h5 {
    margin-block: 0.5rem;
    padding: 0;
  }
}
.teacher ul li div:nth-of-type(2) ul {
  margin: 0;
  width: 100%;
}
.teacher ul li div:nth-of-type(2) ul li {
  font-size: clamp(1.8rem, 1.5087rem + 1.2427vw, 3rem);
  font-weight: 500;
  border: none;
  text-align: start;
  padding: 0;
}
@media (max-width: 768px) {
  .teacher ul li div:nth-of-type(2) ul {
    margin-bottom: 2rem;
  }
}
.teacher ul li:last-of-type {
  display: block;
}
.teacher ul li:last-of-type h3 {
  text-align: center;
  font-size: clamp(2.1rem, 1.5903rem + 2.1748vw, 4.2rem);
  font-weight: 800;
  background-color: #EFEFEF;
  border: solid 1px black;
  color: black;
  width: min(600px, 90%);
  margin: 0 auto;
}
.teacher ul li:last-of-type h4 {
  text-align: center;
  font-size: clamp(2.1rem, 1.5903rem + 2.1748vw, 4.2rem);
  font-weight: 800;
  margin-block: 2rem;
}
.teacher ul li:last-of-type p {
  text-align: center;
  font-size: clamp(1.6rem, 1.4058rem + 0.8285vw, 2.4rem);
  font-weight: 400;
}

.tel {
  position: relative;
  padding: 150px 0 180px;
  background-image: url(../images/img_tel.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  color: #FFFFFF;
}
.tel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* 黒色のオーバーレイ */
  z-index: 1; /* 背景画像の上 */
}

.tel strong {
  position: relative;
  z-index: 2;
  display: block;
  width: 90%;
  margin: 0 auto 100px;
  text-align: center;
  font-size: clamp(2.2rem, 4.6875vw, 6rem);
  font-weight: 800;
}

.tel div {
  position: relative;
  z-index: 2;
  width: 90%;
  max-width: 1400px;
  padding-bottom: 50px;
  margin: 0 auto;
  border: solid 2px #FFFFFF;
}

.tel div h2 {
  font-size: 3.6rem;
  font-weight: 800;
  padding: 10px 0;
  margin-bottom: 30px;
  background: #FFFFFF;
  color: #1A1A1A;
}

.tel div a {
  font-size: 5rem;
  font-weight: 800;
}

.tel div p {
  font-size: 3rem;
  font-weight: 500;
}

@media (max-width: 1280px) {
  .tel {
    padding: 75px 0;
  }
  .tel strong {
    font-size: 2rem;
    margin-bottom: 50px;
  }
  .tel div h2 {
    font-size: 1.8rem;
  }
  .tel div a {
    font-size: 2.4rem;
  }
  .tel div p {
    font-size: 1.6rem;
  }
}
.price__text {
  width: 90%;
  max-width: 1400px;
  margin: 0 auto 50px;
  font-size: 1.8rem;
  line-height: 1.5;
  font-weight: 600;
  text-align: left;
  color: #000000;
}

@media (max-width: 1280px) {
  .price__text {
    font-size: 1.6rem;
  }
}
.application {
  background: url("../images/bg_graph.png");
  padding-bottom: 9rem;
}

.application h2 {
  background: #fff;
  color: black;
  padding: 20px 0;
  text-align: center;
  font-size: clamp(2.2rem, 4.6875vw, 6rem);
  font-weight: 800;
  margin-block: 8rem 5rem;
}
.application h2:nth-of-type(2) {
  background-color: transparent;
  color: #fff;
  font-size: clamp(2.2rem, 1.7631rem + 1.8641vw, 4rem);
  margin-block: 5rem;
}

.application__top {
  width: 90%;
  max-width: 1400px;
  padding-bottom: 30px;
  margin: 0 auto 30px;
  background: #FFFFFF;
}

.application__top h3 {
  font-size: 3.6rem;
  font-weight: 800;
  padding: 10px 0;
  margin-bottom: 30px;
  background: #FF3700;
  color: #FFFFFF;
}

.application__top strong {
  display: block;
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #FF3700;
}

.application__top p {
  font-size: 2.4rem;
  font-weight: 700;
  color: black;
}

.application__text {
  width: 90%;
  max-width: 1400px;
  margin: 0 auto 30px;
  font-size: 2.4rem;
  text-align: left;
  line-height: 1.75;
}

.application__text span {
  display: block;
  font-weight: 700;
}

.application__bottom {
  width: 90%;
  max-width: 1400px;
  margin: 30px auto 0;
  font-size: 2.4rem;
  text-align: left;
  line-height: 1.75;
}

.application__bottom span {
  display: block;
  font-weight: 700;
}

.application .schedule {
  width: 90%;
}

@media (max-width: 1280px) {
  .application {
    padding-bottom: 75px;
  }
  .application__top h3 {
    font-size: 2rem;
  }
  .application__top strong {
    font-size: 1.8rem;
  }
  .application__top p {
    font-size: 1.8rem;
  }
  .application__text {
    font-size: 1.6rem;
  }
  .application__bottom {
    font-size: 1.6rem;
  }
}
@media (max-width: 699px) {
  .application__top strong {
    width: 95%;
    margin: 0 auto 20px;
  }
  .application__top p {
    width: 95%;
    margin: 0 auto;
    text-align: left;
  }
}
.application .schedule {
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 5rem;
  justify-content: center;
}
.application .schedule li {
  position: relative;
  background-color: #EFEFEF;
  display: block;
  width: min(600px, 100%);
  padding-bottom: 10rem;
}
.application .schedule li > p {
  position: relative;
  background-color: #000000;
  text-align: center;
  margin-top: 2rem;
  width: 40%;
  font-size: clamp(2rem, 1.7087rem + 1.2427vw, 3.2rem);
  font-weight: 600;
}
.application .schedule li > p:after {
  position: absolute;
  content: "";
  right: -2px;
  top: -4px;
  width: 0;
  height: 0;
  border: none;
  border-left: solid 30px transparent;
  border-bottom: solid 55px #EFEFEF;
}
.application .schedule li > div {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  width: 90%;
  text-align: start;
  margin: 0 auto;
}
.application .schedule li > div h3 {
  color: #000000;
  font-size: clamp(2.1rem, 1.5903rem + 2.1748vw, 4.2rem);
  font-weight: 800;
}
.application .schedule li > div h3 span {
  font-size: 7rem;
}
.application .schedule li > div p {
  color: #000000;
  font-size: clamp(2rem, 1.7087rem + 1.2427vw, 3.2rem);
  font-weight: 600;
}
.application .schedule li > div p:last-of-type {
  background-color: #fff;
  font-size: 1.7rem;
  padding: 1rem;
}
.application .schedule li > div p:last-of-type span {
  font-size: 1.4rem;
}
.application .schedule li > div .date_container {
  display: grid;
  grid-template-columns: 1fr 70%;
  grid-template-rows: 1fr 1fr;
  line-height: 1;
}
.application .schedule li > div .date_container p {
  font-size: clamp(1.6rem, 1.4592rem + 0.6009vw, 2rem);
  font-weight: 400;
  background-color: transparent;
  padding: 0;
  font-weight: 600;
  margin-bottom: 0.4em;
}
.application .schedule li > div .date_container p:nth-child(3) {
  grid-column: 2;
}
.application .schedule li .cta {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%);
  margin-top: 2rem;
  margin-bottom: 2rem;
  height: 7rem;
}

.login {
  padding: 9rem 0 9rem;
}

.login h2 {
  max-width: 1400px;
  background: #FF3700;
  color: #FFFFFF;
  padding: 7.5px 10px;
  margin: 0 auto 30px;
  font-size: 3.6rem;
  font-weight: 700;
}

.login p {
  width: 90%;
  margin: 0 auto 100px;
  text-align: center;
  font-size: 2.4rem;
  line-height: 1.75;
}

.login a {
  width: -moz-fit-content;
  width: fit-content;
  padding: 25px 40px;
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  border: solid 2px #fff;
  font-size: 2.4rem;
  font-weight: 700;
  border-radius: 20px;
  transition: 0.25s;
}

.login a:hover {
  background: #1A1A1A;
  color: #FFFFFF;
}

.login img {
  width: 25px;
  transition: 0.25s;
}

.login a:hover img {
  filter: invert(1);
}

@media (max-width: 1280px) {
  .login {
    padding: 75px 0;
  }
  .login h2 {
    font-size: 2.2rem;
    padding: 20px 0;
  }
  .login p {
    font-size: 1.6rem;
    margin-bottom: 50px;
  }
  .login a {
    font-size: 1.8rem;
  }
}
@media (max-width: 699px) {
  .login p {
    text-align: left;
  }
}
.link {
  background: url(../images/footer_img_2.png);
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  padding: 150px 0 180px;
}

.link ul {
  width: 90%;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.link ul li {
  width: 47.5%;
}

.link ul li a {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  position: relative;
  padding: 30px 50px;
  border: solid #0071B2 4px;
  background: #FFFFFF;
  font-size: 3rem;
  font-weight: 700;
  color: #0071B2;
  transition: 0.25s;
}

.link ul li a:hover {
  background: #0071B2;
  color: #FFFFFF;
}

.link ul li a .arrow {
  position: absolute;
  top: 50%;
  right: 25px;
  transform: translateY(-50%);
  height: 30px;
  width: -moz-fit-content;
  width: fit-content;
  transition: 0.25s;
}

.link ul li a:hover .arrow {
  filter: brightness(0) invert(1);
}

.link ul li a .icon {
  height: 40px;
  width: -moz-fit-content;
  width: fit-content;
  transition: 0.25s;
}

.link ul li a:hover .icon {
  filter: brightness(0) invert(1);
}

@media (max-width: 1280px) {
  .link ul li a {
    font-size: 1.7rem;
  }
  .link ul li a .icon {
    height: 30px;
  }
  .link ul li a .arrow {
    height: 25px;
  }
  .link {
    padding: 75px 0;
  }
}
@media (max-width: 699px) {
  .link ul {
    flex-direction: column;
    gap: 30px;
  }
  .link ul li {
    width: 100%;
  }
}
footer {
  padding: 100px 0 50px;
  background: #1A1A1A;
  color: #FFFFFF;
}
footer .back_to_top {
  text-align: right;
  margin-right: 2rem;
}
footer .back_to_top a {
  color: red;
}
@media (max-width: 768px) {
  footer .back_to_top {
    margin-bottom: 2rem;
  }
}

footer .number {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 100px;
}

footer h2 {
  width: 75%;
  max-width: 400px;
  margin: 0 auto 30px;
}

footer h2 img {
  filter: invert(1);
}

@media (max-width: 1280px) {
  footer .number {
    font-size: 1.6rem;
  }
  .copy {
    font-size: 1.1rem;
  }
}
.scroll {
  opacity: 0;
  transform: translateX(50px);
  transition: 0.75s;
}

.scroll__slide {
  opacity: 1;
  transform: translateX(0);
}

.scrollup {
  opacity: 0;
  transform: translateY(50px);
  transition: 1s;
}

.scroll__slideup {
  opacity: 1;
  transform: translateY(0);
}

.scrollscale {
  transform: scale(0);
  transform-origin: center;
}

.scroll__slidescale {
  animation: slidescale 0.75s linear both;
}

@keyframes slidescale {
  0% {
    transform: scaleX(0) scaleY(0);
  }
  20% {
    transform: scaleX(1.1) scaleY(1.1);
  }
  30% {
    transform: scaleX(1.1) scaleY(1.1);
  }
  40% {
    transform: scaleX(1.1) scaleY(0.9);
  }
  50% {
    transform: scaleX(0.95) scaleY(1.05);
  }
  57% {
    transform: scaleX(1.05) scaleY(0.95);
  }
  64% {
    transform: scaleX(0.975) scaleY(1.025);
  }
  69% {
    transform: scaleX(1.025) scaleY(0.975);
  }
  75% {
    transform: scaleX(1) scaleY(1);
  }
  100% {
    transform: scaleX(1) scaleY(1);
  }
}
.cta {
  text-decoration: none;
  background-color: #15b392;
  display: grid;
  place-content: center;
  width: min(500px, 90%);
  height: 10rem;
  margin: 0 auto;
  margin-top: 5rem;
  margin-bottom: 10rem;
  border-radius: 10px;
  font-size: clamp(2rem, 1.2488rem + 3.2049vw, 3.3rem);
  font-weight: 900;
  position: relative;
  overflow: hidden;
  background-image: linear-gradient(transparent 0%, rgba(0, 0, 0, 0.3) 50%, transparent 50%, rgba(255, 255, 255, 0.1) 100%);
  border: 3px solid #15b392;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}
@media (max-width: 1024px) {
  .cta {
    height: 7rem;
    margin-bottom: 0;
  }
}
.cta::before {
  content: "";
  position: absolute;
  top: -100px;
  left: -300px;
  width: 300px;
  height: 100px;
  background: rgb(255, 255, 255);
  transform: rotate(-70deg);
  opacity: 0.5;
  z-index: 0;
  transition: all 0.3s ease-out;
}
.cta:hover {
  transform: translate3d(0, 2px, 0);
}
.cta:hover::before {
  transition: all 0.3s ease-out;
  top: 100%;
  left: 100%;
}

.schedule_base {
  margin-bottom: 1.5em;
}/*# sourceMappingURL=style.css.map */