@charset "utf-8";
body {
  font-family: "Noto Sans CJK JP", "Noto Sans JP", Lato, "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 400;
  color: #323232;
}
.header {
  width: 100%;
  border-bottom: 1px solid #d2d2d2;
}
.header__inner {
  width: 100%;
  max-width: 1200px;
  height: 98px;
  margin: 0 auto;
  padding: 0 30px;
  display: flex;
  align-items: center;
}
.header__icon {
  width: 50px;
  height: 40px;
}
.header__heading-xl {
  display: flex;
  font-size: 16px;
}
.header__text {
  display: flex;
  align-items: baseline;
  font-weight: 700;
}
.header__title {
  padding: 0 20px 0 15px;
  color: #5650ff;
  font-size: 26px;
  font-weight: bold;
}
.header__logo {
  display: inline;
  width: 194px;
  height: auto;
}
.fv__heading-l {
  margin: 40px 0 30px;
  color: #5650ff;
  font-size: 24px;
  font-weight: bold;
  text-align: center;
}
.fv__lead {
  margin-bottom: 30px;
  font-size: 16px;
  line-height: 1.5;
  text-align: center;
}
.fv__button {
  position: relative;
  width: 450px;
  margin: 0 auto;
}
.fv__link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  width: 100%;
  max-width: 450px;
  height: 100px;
  margin-bottom: 18px;
  color: #fff;
  font-size: 24px;
  font-weight: bold;
  background: linear-gradient(90deg, rgba(254, 116, 255,1) 0%, rgba(131, 68, 196,1) 40%, rgba(88, 47, 247,1) 60%, rgba(51, 203, 251,1) 100%);
  border-radius: 6px;
  cursor: pointer;
  transition: 0.8s;
}
@media (hover: hover) {
  .fv__link:hover {
    opacity: 0.7;
    background-position: 100% 0;
  }
}
.fv__button{
   position: relative;
}
.fv__button::before {
  content: "";
  position: absolute;
  top: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 261px;
  height: 50px;
  background-image: url('/aihelp/asset/image/image_button.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  pointer-events: none;
  z-index: 2;
}
.fv__button img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 261px;
  height: auto;
  transform: translate(-50%, -50%);
  cursor: pointer;
  z-index: 2;
}
.fv__attention {
  margin-bottom: 30px;
  text-align: center;
  font-size: 12px;
  color: #6e6e6e;
}
.support {
  width: 100%;
  padding: 55px 0 70px;
  background-color: #f5f5f5;
}
.support__heading-l {
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
}
.support__link {
  position: relative;
  display: flex;
  align-items: center;
  margin: 0 auto;
  padding-left: 67px;
  width: 400px;
  height: 80px;
  font-size: 18px;
  font-weight: bold;
  color: #323232;
  background-color: #fff;
  border: 2px solid #F08300;
  border-radius: 6px;
  transition: 0.3s;
}
.support__link::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 13px;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background-image: url('/aihelp/asset/image/icon_beginners-mark.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  pointer-events: none;
}
.support__link::after {
  content: "";
  position: absolute;
  bottom: 12px;
  right: 10px;
  width: 18px;
  height: 18px;
  background-image: url('/aihelp/asset/image/icon_blank_gray.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  pointer-events: none;
}
@media (hover: hover) {
  .support__link:hover {
    border: 2px solid #F6B466;
    opacity: 0.7;
  }
}
footer{
  width: 100%;
  height: 50px;
  background-color: #323232;
  display: grid;
  place-content: center;
  color: #fff;
  font-size: 16px;
}