/* ヒーローエリア本体 */
.l-hero-area-01 {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}
.l-hero-area-01 .c-hero-link-01 {
  position: absolute;
  right: 10px;
  bottom: 0;
}
.l-hero-area-01 .c-hero-link-01:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  right: -16px;
  top: 0;
  background: #011A6A;
  -webkit-transform: skewX(-20deg);
  -ms-transform: skewX(-20deg);
  transform: skewX(-20deg);
}
.l-hero-area-01 .c-hero-link-01 .hero-link-text-01 {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 16px 48px 16px 64px;
  min-width: 160px;
  text-decoration: none;
  text-align: right;
  position: relative;
}
.l-hero-area-01 .c-hero-link-01 .hero-link-text-01 .label {
  color: #fff;
  letter-spacing: 2px;
  font-weight: bold;
  font-size: 14px;
}
.l-hero-area-01 .c-hero-link-01 .hero-link-text-01 .arrow {
  position: absolute;
  right: 24px;
  top: calc(50% - 4px);
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}
.l-hero-area-01 .c-hero-link-01 .hero-link-text-01:hover .arrow {
  right: 16px;
}
/* PC用画像 */
.l-hero-bg.hero-pc {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
/* SP用画像（初期は非表示） */
.l-hero-bg.hero-sp {
  display: none;
}
/* ヒーローエリア内コンテンツ配置用（中身は任意） */
.hero-area-content-01 {
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
}
/* スクロールインジケーター（任意） */
.scroll-invitation {
  position: absolute;
  bottom: 48px;
  left: calc(50% - 12px);
  animation: scroll 1.6s infinite;
}
.scroll-invitation:after {
  content: "";
  display: inline-block;
  width: 24px;
  height: 24px;
  border-bottom: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
}

/* スクロールアニメーション */
@keyframes scroll {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  50% {
    transform: translateY(10px);
    opacity: 0.6;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

/* ▼ SP表示向け（幅760px以下） */
@media screen and (max-width: 760px) {
  .l-hero-area-01 {
    height: 60vw; /* SPでは画面幅の60%の高さに */
  }
  .l-hero-area-01 .c-hero-link-01 {
    position: absolute;
    right: 10px;
    bottom: 0;
  }
  .l-hero-area-01 .c-hero-link-01:before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    right: -16px;
    top: 0;
    background: #011A6A;
    -webkit-transform: skewX(-20deg);
    -ms-transform: skewX(-20deg);
    transform: skewX(-20deg);
  }
  .l-hero-area-01 .c-hero-link-01 .hero-link-text-01 {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 12px 32px 12px 40px;
    min-width: 120px;
    text-decoration: none;
    text-align: right;
    position: relative;
  }
  .l-hero-area-01 .c-hero-link-01 .hero-link-text-01 .label {
    color: #fff;
    letter-spacing: 2px;
    font-weight: bold;
    font-size: 14px;
  }
  .l-hero-area-01 .c-hero-link-01 .hero-link-text-01 .arrow {
    position: absolute;
    right: 20px;
    top: calc(50% - 4px);
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
  }
  .l-hero-bg.hero-pc {
    display: none;
  }
  .l-hero-bg.hero-sp {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
  }
  .scroll-invitation {
    display: none; /* モバイルでは非表示にする場合 */
  }
  .jp-form input[type=checkbox] {
    appearance: auto;
  }
  .jp-only {
    display: block !important;
  }
  .category-section-title {
    font-size: 18px;
    position: relative;
    width: calc((100%) - 40px);
    margin: 24px 20px;
    padding-top: 40px;
    border-top: 1px solid #dddddd;
    font-weight: bold;
  }
  .category-section-title span {
    height: 40px;
    font-weight: bold;
    color: #fff;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 8px 12px 8px 16px;
    z-index: 1;
    background: #011a6a;
    position: absolute;
    left: 0;
    top: 0;
  }
  .category-section-title span:before {
    content: "";
    z-index: -1;
    display: block;
    position: absolute;
    width: 100%;
    height: 40px;
    background: #011a6a;
    -webkit-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: skew(-20deg);
    -ms-transform: skew(-20deg);
    transform: skew(-20deg);
    left: 8px;
    top: 0;
  }
}