@charset "UTF-8";
/* ブレイクポイント設定 */
/* 色設定 */
/* 配置(フレックス) */
/* 擬似要素の共通基盤 */
/* transition */
/* レスポンシブ */
.sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .sp {
    display: block;
  }
}

/* 基盤 */
html {
  font-size: 62.5%;
}
@media screen and (max-width: 1280px) {
  html {
    font-size: 0.78125vw;
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: 1.3037809648vw;
  }
}

body {
  color: black;
  background-color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  line-height: 1.2;
  width: 100%;
  text-align: center;
  overflow-wrap: anywhere;
  word-break: normal;
  line-break: strict;
}

a {
  position: relative;
  text-decoration: none;
  color: #fff;
  display: block;
  -webkit-tap-highlight-color: transparent;
}

img {
  max-width: 100%;
  width: 100%;
  height: auto;
  vertical-align: middle;
  -o-object-fit: cover;
     object-fit: cover;
}

/* ヘッダー(タイトル) */
.header {
  height: 12rem;
  color: #fff;
  background: orange;
  font-size: 3rem;
}
@media screen and (max-width: 767px) {
  .header {
    height: 14rem;
    font-size: 2.2rem;
  }
}

.page-title {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

/* 白い光のグラデアニメーション */
.gradient-animation {
  display: flex;
  justify-content: center;
  align-items: center;
  height: calc(100vh - 12rem);
}
@media screen and (max-width: 767px) {
  .gradient-animation {
    height: calc(100vh - 14rem);
  }
}

.gradient-animation__content {
  position: relative;
  width: 58rem;
  height: 10rem;
  background: linear-gradient(90deg, #FE6C03 0%, #F48C41 100%);
  border-radius: 6rem;
  overflow: hidden;
}
.gradient-animation__content a {
  height: 100%;
  transition: 0.3s;
}
.gradient-animation__content a span {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  font-size: 3rem;
  padding-right: 1.2em;
}
.gradient-animation__content a span::before {
  position: absolute;
  content: "";
  display: block;
  top: 40%;
  right: 2.07em;
  transform: translateY(-50%);
  width: 2.1rem;
  height: 2.1rem;
  border-top: solid 4px #FE6C03;
  border-right: solid 4px #FE6C03;
  transform: rotate(45deg);
  opacity: 0;
  transition: 0.3s;
}
.gradient-animation__content a span::after {
  position: absolute;
  content: "";
  display: block;
  top: 50%;
  right: 1.9em;
  transform: translateY(-50%);
  background: url(../images/weui_arrow-filled.webp) no-repeat 50% 50%/contain;
  width: 2.8rem;
  height: 5.6rem;
  transition: 0.3s;
}
.gradient-animation__content:hover {
  background: #fff;
  border: solid 2.38px #FE6C03;
}
.gradient-animation__content:hover a {
  color: #FE6C03;
}
.gradient-animation__content:hover a span::before {
  opacity: 1;
}
.gradient-animation__content:hover a span::after {
  display: none;
}

.c-lightLeft::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0.6) 0%, rgba(255, 255, 255, 0.6) 15%, rgba(255, 255, 255, 0) 25%); /* 光の色と広がり */
  transform: skewX(-30deg) translateX(-100%); /* アニメーション開始時の位置 */
  animation: light-sweep 3s linear infinite; /* アニメーションの適用 */
}

@keyframes light-sweep {
  0% {
    transform: skewX(-30deg) translateX(-100%);
  }
  25% {
    transform: skewX(-30deg) translateX(105%); /* 右端まで移動 */
  }
  100% {
    transform: skewX(-30deg) translateX(105%); /* 移動完了 */
  }
}/*# sourceMappingURL=style.css.map */