@charset "UTF-8";
html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(1.4rem, 1.3rem + 0.5vw, 1.6rem);
  line-height: 1.7;
  letter-spacing: 0.03em;
  font-weight: 500;
}

body {
  animation: fadeIn 0.8s ease forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
h1 {
  font-size: clamp(3.6rem, 2.4rem + 6.4vw, 6.4rem);
}

h2 {
  font-size: clamp(2.4rem, 1.8rem + 2.8vw, 3.6rem);
}

h3 {
  font-size: clamp(2rem, 1.4rem + 2.8vw, 3.2rem);
}

h4 {
  font-size: clamp(1.8rem, 1.5rem + 1.4vw, 2.4rem);
}

h5 {
  font-size: clamp(1.6rem, 1.4rem + 0.9vw, 2rem);
}

a:hover {
  opacity: 0.6;
}

@media (min-width: 769px) {
  .pc-none {
    display: none;
  }
}

@media (max-width: 769px) {
  .sp-none {
    display: none;
  }
}

@media (min-width: 501px) {
  .sp500 {
    display: none;
  }
}

/*title*/
.section-title {
  margin-bottom: 4rem;
  font-weight: bold;
}
.section-sub-title {
  display: flex;
  gap: 1rem;
  font-weight: bold;
}

.section-sub-title p {
  font-weight: bold;
  color: #273071;
}

.section-title h1 {
  color: #273071;
  font-size: clamp(3.6rem, 2.4rem + 6.4vw, 6.4rem);
  font-family: "Figtree", "Noto Sans JP", sans-serif;
  font-weight: bold;
}

/*もっと見る*/
.more-button {
  display: flex;
  width: 23.7rem;
  align-items: center;
  justify-content: space-between;
  padding: 0.4rem;
  background: linear-gradient(100deg, #3E64AF, #2EAADD, #6CCCDD);
  border-radius: 4px;
  text-decoration: none;
}

.more-button:hover {
  opacity: 1;
}

.btn-text {
  position: relative;
  padding-left: 1rem;
}

.btn-text p {
  margin: 0;
  color: #fff;
  white-space: nowrap;
}

.btn-text::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 1rem;
  width: calc(100% - 1rem);
  height: 1.5px;
  background: #fff;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.35s cubic-bezier(0.76, 0, 0.24, 1);
}

.more-button:hover .btn-text::after {
  transform: scaleX(1);
}

.arrow-wrap {
  position: relative;
  width: 5rem;
  height: 5rem;
  overflow: hidden;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.arrow {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  transition: transform 0.35s cubic-bezier(0.76, 0, 0.24, 1);
}

.arrow img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.arrow-out {
  transform: translateX(0);
}

.arrow-in {
  transform: translateX(-100%);
}

.more-button:hover .arrow-out {
  transform: translateX(110%);
}

.more-button:hover .arrow-in {
  transform: translateX(0);
}

.more-button p {
  font-family: "Figtree", "Noto Sans JP", sans-serif;
  font-weight: bold;
  font-size: clamp(1.8rem, 1.5rem + 1.4vw, 2.4rem);
}

/*auto scroll*/
.auto-scroll {
  width: 100%;
  font-size: clamp(4.8rem, 10vw, 9.6rem);
  font-weight: 800;
  font-style: italic;
  font-family: "Figtree", "Noto Sans JP", sans-serif;
  display: flex;
  white-space: nowrap;
  overflow: hidden;
  z-index: 2;
  line-height: 1;
}

.auto-scroll p {
  display: inline-block;
  background: linear-gradient(to right, #005FAF 0%, #2EAADD 50%, #6CCCDD 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: scroll-left 15s linear infinite;
  flex-shrink: 0;
  padding-right: 2rem;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
.auto-scroll.reverse p {
  animation-direction: reverse;
}/*# sourceMappingURL=common.css.map */