<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";
/* 変数
-------------------------------------------------- */
/* ----- メディアクエリー ----- */
@import url("https://fonts.googleapis.com/css2?family=Fredoka+One&amp;display=swap");
@media only screen and (max-width: 767px) {
  .pc_only {
    display: none;
  }
}

@media only screen and (min-width: 768px) {
  .sp_only {
    display: none;
  }
}

/* 共通
-------------------------------------------------- */
* {
  letter-spacing: 0.1em;
  line-height: 1.4;
}

p {
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: 0.08em;
  color: #31363a;
}

p a {
  color: #2f81d5;
  text-decoration: underline;
}

img {
  max-width: 100%;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

body {
  background: #f3f7fb;
  min-width: 1024px;
}

@media only screen and (max-width: 767px) {
  body {
    min-width: 0;
  }
}

/* ----- エントリーボタン ----- */
.lp_wrapper .btn_apply {
  position: relative;
  width: 580px;
  height: 104px;
  margin: 24px auto 0;
}

@media only screen and (max-width: 767px) {
  .lp_wrapper .btn_apply {
    width: 100%;
    height: 80px;
  }
}

.lp_wrapper .btn_apply_inner {
  font-weight: bold;
  display: block;
  color: #fff;
  position: relative;
  -webkit-transition: all .3s;
  transition: all .3s;
  border-radius: 52px;
  line-height: 104px;
  -webkit-box-shadow: 0 0 25px 0 rgba(239, 120, 23, 0.3);
          box-shadow: 0 0 25px 0 rgba(239, 120, 23, 0.3);
  font-size: 28px;
  text-align: center;
  border-bottom: 6px solid #cf620a;
  background-color: #ef7817;
  background-image: repeating-linear-gradient(135deg, transparent, transparent 10px, #f07f23 10px, #f07f23 20px);
}

.lp_wrapper .btn_apply_inner:hover {
  -webkit-filter: brightness(1.1);
          filter: brightness(1.1);
}

@media only screen and (max-width: 767px) {
  .lp_wrapper .btn_apply_inner {
    border-radius: 40px;
    font-size: 20px;
    line-height: 1.4;
    border-bottom: 4px solid #cf620a;
    padding: 12px 0;
  }
}

.lp_wrapper .btn_apply:before {
  content: "";
  position: absolute;
  left: -32px;
  top: -16px;
  width: 102px;
  height: 130px;
  -webkit-transition: all .3s;
  transition: all .3s;
  background-image: url(../img/btn_apply_chara.png);
  background-size: cover;
  z-index: 100;
}

@media only screen and (max-width: 767px) {
  .lp_wrapper .btn_apply:before {
    left: -16px;
    top: -8px;
    width: 72px;
    height: 92px;
  }
}

.btn_apply_wrap {
  max-width: 1064px;
  margin: 0 auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0 20px;
}

@media only screen and (max-width: 767px) {
  .btn_apply_wrap {
    width: auto;
    padding: 0 20px;
  }
}

/* 演出
-------------------------------------------------- */
/* ----- MV----- */
.delay_01 {
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}

.delay_02 {
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
}

.delay_03 {
  -webkit-animation-delay: 0.8s;
          animation-delay: 0.8s;
}

.delay_04 {
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}

.scale {
  -webkit-animation-name: scale_anime;
          animation-name: scale_anime;
  -webkit-animation-duration: 0.8s;
          animation-duration: 0.8s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
}

@-webkit-keyframes scale_anime {
  0% {
    -webkit-transform: scale(0.75);
            transform: scale(0.75);
    opacity: 0;
  }
  50% {
    -webkit-transform: scale(1.05, 1);
            transform: scale(1.05, 1);
    opacity: 1;
  }
  80% {
    -webkit-transform: scale(0.9, 0.95);
            transform: scale(0.9, 0.95);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}

@keyframes scale_anime {
  0% {
    -webkit-transform: scale(0.75);
            transform: scale(0.75);
    opacity: 0;
  }
  50% {
    -webkit-transform: scale(1.05, 1);
            transform: scale(1.05, 1);
    opacity: 1;
  }
  80% {
    -webkit-transform: scale(0.9, 0.95);
            transform: scale(0.9, 0.95);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}

/* ----- 見出し----- */
.slide-in {
  overflow: hidden;
  display: inline-block;
}

.slide-in_inner {
  display: inline-block;
  font-weight: 600;
}

.downAnime {
  opacity: 0;
}

.slideAnimeDownUp {
  -webkit-animation-name: slideTextY100;
          animation-name: slideTextY100;
  -webkit-animation-duration: 0.8s;
          animation-duration: 0.8s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes slideTextY100 {
  from {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
    opacity: 0;
  }
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}

@keyframes slideTextY100 {
  from {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
    opacity: 0;
  }
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}

.slideAnimeUpDown {
  -webkit-animation-name: slideTextY-100;
          animation-name: slideTextY-100;
  -webkit-animation-duration: 0.8s;
          animation-duration: 0.8s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes slideTextY-100 {
  from {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
    opacity: 0;
  }
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}

@keyframes slideTextY-100 {
  from {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
    opacity: 0;
  }
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}

/* イントロ
-------------------------------------------------- */
.intro {
  background: url(../img/intro_bg_pc.jpg) no-repeat top center;
  background-color: #fff;
  /* ----- インフォメーション ----- */
  /* ----- インフォメーション個別設定[対象作品] ----- */
  /* ----- キャンペーン紹介 ----- */
  /* ----- アンカーリンク ----- */
}

@media only screen and (min-width: 1940px) {
  .intro {
    background-size: cover;
  }
}

@media only screen and (max-width: 767px) {
  .intro {
    background: url(../img/intro_bg_sp.jpg) no-repeat top center;
    background-size: 100%;
    background-color: #fff;
  }
}

.intro_inner {
  max-width: 1064px;
  margin: 0 auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0 20px;
}

@media only screen and (max-width: 767px) {
  .intro_inner {
    width: auto;
    padding: 0 20px;
  }
}

.intro_mv {
  text-align: center;
  padding: 100px 0 200px;
  position: relative;
}

@media only screen and (max-width: 767px) {
  .intro_mv {
    padding: 140px 0 130px;
  }
}

.intro_illust_01, .intro_illust_02, .intro_illust_03, .intro_illust_04 {
  position: absolute;
}

.intro_illust_01 {
  top: -72px;
  left: -260px;
}

.intro_illust_02 {
  top: 446px;
  right: -72px;
}

.intro_illust_03 {
  top: 590px;
  left: -175px;
}

.intro_illust_04 {
  top: 65px;
  right: -65px;
}

.intro_info_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-top: 36px;
}

@media only screen and (max-width: 767px) {
  .intro_info_item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.intro_info_item .inner_head {
  width: 270px;
}

@media only screen and (max-width: 767px) {
  .intro_info_item .inner_head {
    width: auto;
    text-align: center;
  }
}

.intro_info_item .inner_head_text {
  font-size: 30px;
  color: #2f81d5;
  font-weight: bold;
  margin-top: -6px;
}

@media only screen and (max-width: 767px) {
  .intro_info_item .inner_head_text {
    margin-top: 0;
    font-size: 28px;
  }
}

.intro_info_item .inner_head_icon {
  width: 48px;
  height: 48px;
  margin-right: 16px;
}

@media only screen and (max-width: 767px) {
  .intro_info_item .inner_head_icon {
    display: block;
    margin: 0 auto 6px;
  }
}

.intro_info_item .inner_content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-bottom: 1px dashed #dfe2e9;
  padding-bottom: 36px;
}

@media only screen and (max-width: 767px) {
  .intro_info_item .inner_content {
    padding-top: 8px;
  }
}

.intro_info_item .inner_content .catch {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 4px;
}

@media only screen and (max-width: 767px) {
  .intro_info_item .inner_content .catch {
    font-size: 20px;
  }
}

.intro_info_item .inner_content .strong {
  color: #d8376c;
  font-weight: bold;
}

.intro .item_period .inner_content {
  border-bottom: none;
}

@media only screen and (max-width: 767px) {
  .intro .item_period .inner_content {
    padding-bottom: 0;
  }
}

@media only screen and (max-width: 767px) {
  .intro .item_work .inner_content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 4px;
  }
}

.intro .item_work .inner_content .tag_group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 18px;
  margin-bottom: 16px;
}

@media only screen and (max-width: 767px) {
  .intro .item_work .inner_content .tag_group {
    font-size: 16px;
    margin-bottom: 4px;
  }
}

.intro .item_work .inner_content .tag_group_inner {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.intro .item_work .inner_content .tag dt {
  width: 72px;
  line-height: 32px;
}

.intro .item_work .inner_content .tag dd {
  padding: 4px 10px;
  font-weight: bold;
  color: #fff;
  border-radius: 4px;
  margin-left: 6px;
  display: inline-block;
}

@media only screen and (max-width: 767px) {
  .intro .item_work .inner_content .tag dd {
    margin-left: 4px;
    margin-bottom: 8px;
  }
}

.intro .item_work .inner_content .tag_home dt {
  color: #7dbb56;
}

.intro .item_work .inner_content .tag_home dd {
  background-color: #7dbb56;
}

.intro .item_work .inner_content .tag_maniax dt {
  color: #57ace6;
}

.intro .item_work .inner_content .tag_maniax dd {
  background-color: #57ace6;
}

.intro .item_work .inner_content .cp {
  width: 225px;
  background-color: #d8376c;
  background-image: repeating-linear-gradient(135deg, transparent, transparent 10px, #da4173 10px, #da4173 20px);
  padding: 14px 16px;
  border-radius: 4px;
}

@media only screen and (max-width: 767px) {
  .intro .item_work .inner_content .cp {
    width: 100%;
    text-align: center;
    margin-top: 8px;
  }
}

.intro .item_work .inner_content .cp_catch {
  color: #fdd705;
  font-weight: bold;
  line-height: 1.5;
}

.intro .item_work .inner_content .cp_detail {
  margin-top: 4px;
  color: #fff;
  font-size: 14px;
  line-height: 1.5;
}

.intro_campaign {
  margin-top: 88px;
}

@media only screen and (max-width: 767px) {
  .intro_campaign {
    margin-top: 56px;
  }
}

.intro_campaign_item {
  max-width: 480px;
  -webkit-box-shadow: 0 0 24px 0 rgba(42, 84, 118, 0.1);
          box-shadow: 0 0 24px 0 rgba(42, 84, 118, 0.1);
  border-radius: 10px;
  margin: 0 auto;
}

.intro_campaign_cover {
  border-top-right-radius: 10px;
  border-top-left-radius: 10px;
}

.intro_campaign_inner {
  padding: 20px;
}

.intro_campaign .item_link {
  display: inline-block;
  margin-top: 4px;
  font-weight: bold;
  color: #2f81d5;
  -webkit-transition: all .3s;
  transition: all .3s;
  font-size: 16px;
}

.intro_campaign .item_link:hover {
  -webkit-filter: brightness(1.15);
          filter: brightness(1.15);
}

.intro_campaign .item_link:after {
  content: " ";
  position: relative;
  display: inline-block;
  background-size: contain;
  width: 18px;
  height: 18px;
  top: 4px;
  margin-left: 8px;
  background-image: url(../img/icon_link_circle.svg);
}

.intro_nav {
  margin-top: 88px;
  padding-bottom: 112px;
}

@media only screen and (max-width: 767px) {
  .intro_nav {
    margin-top: 56px;
    padding-bottom: 96px;
  }
}

.intro_nav_catch {
  text-align: center;
  font-size: 30px;
  font-weight: bold;
}

@media only screen and (max-width: 767px) {
  .intro_nav_catch {
    font-size: 22px;
    line-height: 1.5;
  }
}

.intro_nav_catch .maker {
  font-size: 36px;
  font-weight: bold;
  color: #2f81d5;
}

@media only screen and (max-width: 767px) {
  .intro_nav_catch .maker {
    font-size: 24px;
  }
}

.intro_nav_feature {
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media only screen and (max-width: 767px) {
  .intro_nav_feature {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.intro_nav_item {
  width: 49%;
  margin-bottom: 24px;
}

@media only screen and (max-width: 767px) {
  .intro_nav_item {
    width: 100%;
    margin-bottom: 16px;
  }
}

.intro_nav_item a {
  font-weight: bold;
  display: block;
  color: #fff;
  position: relative;
  -webkit-transition: all .3s;
  transition: all .3s;
  height: 80px;
  line-height: 80px;
  padding-left: 28px;
  border-radius: 40px;
  background-color: #2f81d5;
  -webkit-box-shadow: 0 0 20px 0 rgba(47, 129, 213, 0.45);
          box-shadow: 0 0 20px 0 rgba(47, 129, 213, 0.45);
}

@media only screen and (max-width: 767px) {
  .intro_nav_item a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 68px;
    border-radius: 34px;
    font-size: 15px;
    line-height: 1.5;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-left: 20px;
    -webkit-box-shadow: 0 0 10px 0 rgba(47, 129, 213, 0.3);
            box-shadow: 0 0 10px 0 rgba(47, 129, 213, 0.3);
  }
}

.intro_nav_item a:after {
  position: absolute;
  background-image: url(../img/pagenav_icon_arrow.svg);
  content: "";
  width: 80px;
  height: 80px;
  right: 0;
}

@media only screen and (max-width: 767px) {
  .intro_nav_item a:after {
    width: 68px;
    height: 68px;
    background-size: contain;
  }
}

.intro_nav_item a:hover {
  -webkit-filter: brightness(1.15);
          filter: brightness(1.15);
}

.intro_nav_item .nav_number {
  font-family: "Fredoka One", cursive;
  color: #fdd705;
  font-size: 22px;
  margin-right: 8px;
}

@media only screen and (max-width: 767px) {
  .intro_nav_item .nav_number {
    font-size: 18px;
  }
}

.intro_nav_item .nav_text {
  font-weight: bold;
  font-size: 17px;
}

@media only screen and (max-width: 767px) {
  .intro_nav_item .nav_text {
    font-size: 15px;
    margin-right: 72px;
  }
}

@media screen and (max-width: 1064px) {
  .intro_nav_item .nav_text {
    font-size: 16px;
  }
}

/* セクション共通
-------------------------------------------------- */
.feature {
  background-repeat: no-repeat;
  background-position: center top,center 30px;
  padding: 120px 0 96px;
}

@media only screen and (max-width: 767px) {
  .feature {
    padding: 48px 0 64px;
  }
}

.feature_inner {
  max-width: 1064px;
  margin: 0 auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0 20px;
}

@media only screen and (max-width: 767px) {
  .feature_inner {
    width: auto;
    padding: 0 20px;
  }
}

.feature_head {
  font-size: 48px;
  font-weight: bold;
  text-align: center;
  color: #fff;
}

@media only screen and (max-width: 767px) {
  .feature_head {
    font-size: 26px;
    line-height: 1.5;
  }
}

.feature_head .number {
  font-size: 38px;
  color: #2f81d5;
  font-family: "Fredoka One", cursive;
  width: 78px;
  height: 82px;
  background: url(../img/section_icon_head.svg);
  display: block;
  margin: 0 auto;
  padding-top: 16px;
  margin-bottom: 16px;
}

@media only screen and (max-width: 767px) {
  .feature_head .number {
    font-size: 25px;
    width: 55px;
    height: 58px;
    margin-bottom: 12px;
  }
}

.feature_box {
  margin-top: 24px;
  background-color: #fff;
  -webkit-box-shadow: 0 0 16px 0 rgba(61, 76, 88, 0.05);
          box-shadow: 0 0 16px 0 rgba(61, 76, 88, 0.05);
  padding: 40px 64px 48px;
  border-radius: 20px;
}

@media only screen and (max-width: 767px) {
  .feature_box {
    margin-top: 20px;
    padding: 20px;
    border-radius: 10px;
  }
}

.feature_box img {
  margin-top: 16px;
}

/* ----- セクション個別設定 ----- */
.value {
  background-image: url(../img/section_bg_parts_01.png), url(../img/section_bg_pc.png);
  margin-top: -44px;
}

.value .feature_catch {
  font-size: 34px;
  font-weight: bold;
  text-align: center;
}

@media only screen and (max-width: 767px) {
  .value .feature_catch {
    font-size: 22px;
    line-height: 1.4;
  }
}

.value .feature_catch .strong {
  color: #2f81d5;
  font-weight: bold;
}

.value .feature_catch .maker {
  font-weight: bold;
  font-size: 52px;
}

@media only screen and (max-width: 767px) {
  .value .feature_catch .maker {
    font-size: 36px;
  }
}

.price {
  background-image: url(../img/section_bg_parts_02.png), url(../img/section_bg_pc.png);
}

.price .blue {
  color: #2f81d5;
  font-weight: bold;
}

.price .orange {
  color: #ef7817;
  font-weight: bold;
}

.merit {
  background-image: url(../img/section_bg_parts_03.png), url(../img/section_bg_pc.png);
}

.flow {
  background-image: url(../img/section_bg_parts_04.png), url(../img/section_bg_pc.png);
  text-align: center;
  padding-bottom: 40px;
}

@media only screen and (max-width: 767px) {
  .flow {
    padding-bottom: 8px;
  }
}

.flow .feature_catch {
  font-size: 26px;
  font-weight: bold;
}

@media only screen and (max-width: 767px) {
  .flow .feature_catch {
    font-size: 20px;
    line-height: 1.5;
    margin-top: 8px;
  }
}

.flow .feature_detail {
  margin-top: 4px;
}

@media only screen and (max-width: 767px) {
  .flow .feature_detail {
    text-align: left;
  }
}

/* ----- SP用調整 ----- */
@media only screen and (max-width: 767px) {
  .feature {
    background-size: 100%;
    background-image: url(../img/section_bg_sp.png);
  }
}

/* 注意事項
-------------------------------------------------- */
.attention {
  max-width: 1064px;
  margin: 0 auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0 20px;
  background-color: #e7f0f8;
  padding: 40px 40px 40px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 20px;
}

@media only screen and (max-width: 767px) {
  .attention {
    width: auto;
    padding: 0 20px;
  }
}

@media only screen and (max-width: 767px) {
  .attention {
    border-radius: 10px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 32px 20px;
  }
}

.attention_cover {
  margin: 80px auto 0;
}

@media only screen and (max-width: 767px) {
  .attention_cover {
    margin: 48px 20px 0;
  }
}

.attention_head {
  width: 240px;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media only screen and (max-width: 767px) {
  .attention_head {
    width: 100%;
  }
}

.attention_head_icon {
  width: 40px;
  height: 40px;
  display: block;
  margin: 0 auto;
  margin-bottom: 8px;
}

.attention_head_text {
  color: #2f81d5;
  font-weight: bold;
  font-size: 30px;
}

@media only screen and (max-width: 767px) {
  .attention_head_text {
    font-size: 26px;
  }
}

.attention_group {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

@media only screen and (max-width: 767px) {
  .attention_group {
    margin-top: 12px;
  }
}

.attention_item {
  list-style-type: disc;
  margin-bottom: 8px;
}

@media only screen and (max-width: 767px) {
  .attention_item {
    margin-left: 20px;
  }
}

.attention_item:last-child {
  margin-bottom: 0;
}

.lp_footer {
  margin-top: 96px;
}

@media only screen and (max-width: 767px) {
  .lp_footer {
    margin-top: 56px;
  }
}
/*# sourceMappingURL=lp.css.map */</pre></body></html>