<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";
/* ----------------------------------------------------------------------------------------
固定css
-------------------------------------------------------------------------------------------- */
a {
 display: block;
}
a.opacity:hover {
 opacity: .6;
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}
/* ----------------------------------------------------------------------------------------
813px以上の固定css(PC)
-------------------------------------------------------------------------------------------- */
@media screen and (min-width: 813px) {
.sp {
  display: none;
 }
 .pc {
  display: block;
 }
.home {
  position: fixed;
  top: 15px;
  left: 15px;
  width: 20%;
  max-width: 110px;
  z-index: 1000;
}
}
/* ----------------------------------------------------------------------------------------
今回追加した813px以上のcss(PC)
-------------------------------------------------------------------------------------------- */
body {
  font-family: "Noto Sans JP", serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  line-height: 100%;
}
main {
  position: relative;
  z-index: 0;
  font-size: 16px;
  background: url("../images/bg_deco.webp") repeat-y center /101% auto , radial-gradient(circle, rgba(243,224,113,1) 0%, rgba(187,167,78,1) 100%);
  background-attachment: fixed;
  color: #1d3a96;
}
h1 {
  width: 100%;
  position: relative;
}
h1 img.logo {
  position: absolute;
  bottom:20px;
  right: 4em;
  width: 30%;
  animation: slideIn 1s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}
@keyframes slideIn {
  0% {
    transform: translateX(180px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
  }
  40%,100% {
    opacity: 1;
  }
}
main h2 {
  font-family: "Limelight", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 60px;
  text-align: center;
  position: relative;
  z-index: 2;
}
main h2 span {
  font-family: "Noto Sans JP", serif;
  font-weight: 500;
  font-size: 16px;
  display: inline-block;
   margin-top: 20px;
}
.bg_blue {
  background-color: #1d3a96;
  color: #fff ;
  padding: 80px 0;
  clip-path: polygon(0 10%, 100% 0%, 100% 90%, 0% 100%);
  position: relative;
}
.bg_blue::after {
  display: inline-block;
  content: "";
  background: url("../images/bg_ompu.webp") no-repeat top left /100% auto;
  width: 100%;
  height: 400px;
  position: absolute;
  top: 50px;
  left: 0;
  z-index: 1;
}
.bg_blue::before {
  display: inline-block;
  content: "";
  background: url("../images/spring.webp") no-repeat center/100% ;
  width: 300px;
  height: 300px;
  position: absolute;
  bottom: -80px;
  left: -50px;
  transform: rotate(-15deg);
}
.bg_blue.clip {
  background-color: #1d3a96;
  color: #fff ;
  padding: 80px 0 0;
  clip-path: polygon(0 4%, 100% 0%, 100% 100%, 0% 100%);
}
.bg_blue.clip::after {
  display: inline-block;
  content: "";
  background: url("../images/bg_ompu.webp") no-repeat top left /100% auto;
  width: 100%;
  height: 400px;
  position: absolute;
  top: 300px;
  left: 0;
  z-index: 1;
}
/*----------------------------
lead
----------------------------*/
.lead_box {
  text-align: center;
  padding: 30px 0 ;
}
.lead_01 {
  max-width: 320px;
  margin: auto;
}
.lead_tx {
  font-size: 24px;
  line-height: 150%;
  font-weight: 700;
  padding: 40px 0;
}
.lead_tx span.blue {
  background-color: #1d3a96;
  color: #fff;
  display: inline;
}
.lead_02 {
  max-width: 800px;
  margin: auto;
}
.lead_03 {
  max-width: 450px;
  margin: auto;
}

/*----------------------------
trailer
----------------------------*/
.flex_box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 70%;
  margin: auto;
  z-index: 2;
  position: relative;
}

.flex_left {
  text-align: center;
}
.youtube {
  aspect-ratio:16/9;
  width: 60%;
  border: 3px solid #fff;
}
.youtube iframe {
  width: 100%;
  height: 100%;
}
/*----------------------------
btn
----------------------------*/
.btn a {
  display: block;
  border: 3px solid #fff;
  border-radius: 100px;
  padding: 20px;
  width: 350px;
  margin: 50px auto 0; 
  font-size: 18px;
  font-weight: 700;
  position: relative;
}
.btn a::after {
  display: inline-block;
  content: "";
  width: 25px;
  height: 25px;
  background: url("../images/playbtn.png") no-repeat center/25px ;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
}
.btn a:hover {
  border: 3px solid #e1cb4b;
  color: #e1cb4b;
}
.btn a:hover::after {
  background: url("../images/playbtn_yellow.png") no-repeat center/25px ;
}
/*----------------------------
scroll
----------------------------*/
.scroll_up {
  opacity: 0;
  transform: scale(0.8)
}
.scroll_up.on {
  opacity: 1.0;
  transform: rotate(-80deg) scale(1);
  transition: all 0.6s cubic-bezier(0.75,-0.44,0.16,1.46);
}
.scroll_on {
  opacity: 0;
  transform: scale(0.8);
}
.scroll_on.on {
  opacity: 1.0;
  transform:  scale(1);
  transition: all 0.6s cubic-bezier(0.75,-0.44,0.16,1.46);
}
.ompu {
  position: absolute;
  width: 120px;
  height: auto;
  top: -30px;
  left: 50px;
  }
.ompu_right {
  position: absolute;
  width: 120px;
  height: auto;
  bottom: -50px;
  right: 100px;
  }
/*----------------------------
story
----------------------------*/
#story {
  margin: 100px 0;
  position: relative;
}

.story_tx {
  line-height: 180%;
  padding-top: 30px;
  width: 70%;
  margin: auto;
}
/*----------------------------
cast
----------------------------*/
.cast_list {
  display: flex;
  width: 100%;
  max-width: 1100px;
  margin: 50px auto ;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  z-index: 2;
}
.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes fadeUpAnime {
  from {
  opacity: 0;
  transform: translateY(50px);
  }
  to {
  opacity: 1;
  transform: translateY(0);
  }
}
.cast_list .list {
  width: 30%;
}
.cast_text {
  text-align: center;
  padding-top: 15px;
}
.cast_name {
  font-size: 20px;
  font-weight: 700;
}
.cast_intro {
  font-size: 15px;
  padding: 15px 0;
  border-bottom: 1px solid #fff;
  line-height: 150%;
}
.real_name {
  color: #ff5e33;
  font-weight: 700;
  padding: 10px 0;
}
.arts {
  background-color: rgba(255,255,255,0.1);
  padding:10px; 
  font-weight: 400;
  font-size: 14px;
}
.copy {
  font-weight: 300;
  font-size: 12px;
  text-align: center;
  padding-bottom: 10px;
}
/*----------------------------
追従
----------------------------*/
#js-lp-cta-fixed {
  display: none;
  overflow: hidden;
}
.lp_cta_fixed {
  padding: .5em;
  text-align: center;
  width: 100%;
  background-color:rgba(21,21,21,0.7);
  position: fixed;
  bottom: 0;
  left: 0;
  font-weight: 700;
  }
.lp_cta_fixed .point_cp {
  text-decoration: underline;
  font-size: 16px;
  padding-bottom: 10px;
  font-weight: 500;
}
.btn_wrap {
  display: flex;
  width: 720px;
  margin: auto;
  justify-content: space-between;
}
.btn.fix a {
   display: block;
   background: #1d3a96;
   color: #fff;
   font-size: 16px;
   font-weight: 600;
   text-align: center;
   width: 350px;
   text-decoration: none;
   border-radius: 100px;
   padding: 15px;
   box-sizing: border-box;
   -webkit-transition: all 300ms ease-in-out;
   transition: all 300ms ease-in-out;
   position: relative;
   line-height: 120%;
   height: 55px;
   margin-top: 0;
}
.btn.fix.lemino a {
  background: linear-gradient(90deg, rgba(255,168,49,1) 0%, rgba(255,40,135,1) 100%);
  padding: 6px;
}
.btn.fix a .s_text {
  font-size: 14px;
}

/* ----------------------------------------------------------------------------------------
今回追加した812px以下のcss(SP)
-------------------------------------------------------------------------------------------- */
@media screen and (max-width: 812px) {
.wrapper::before {
    content: "";
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100vh;
    background: url("../images/bg_deco_sp.webp") repeat-y center /101% auto , radial-gradient(circle, rgba(243,224,113,1) 0%, rgba(187,167,78,1) 100%);
}
main {
  background: none;
}
h1 img.logo {
  position: absolute;
  top:3em;
  right: 50%;
  transform: translateX(50%);
  width: 280px;
  animation: fadeIn 0.7s cubic-bezier(0.33, 1, 0.68, 1) forwards;
}
@media screen and (min-width: 480px) {
  h1 img.logo {
  position: absolute;
  top:4em;
  right: 50%;
  transform: translateX(50%);
  width: 400px;
  animation: fadeIn 0.7s cubic-bezier(0.33, 1, 0.68, 1) forwards;
}
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
main h2 {
  font-size: 48px;
}
main h2 span {
  font-size: 16px;
  margin-top: 20px;
}
.bg_blue {
  padding: 80px 10px 50px;
  clip-path: polygon(0 5%, 100% 0%, 100% 95%, 0% 100%);
}
.bg_blue::after {
  background: url("../images/bg_ompu.webp") no-repeat top left /102% auto;
}
.bg_blue::before {
  width: 200px;
  height: 200px;
  bottom: -50px;
  left: -50px;
}
.bg_blue.clip {
  padding: 80px 10px 0;
  clip-path: polygon(0 1%, 100% 0%, 100% 100%, 0% 100%);
}
.bg_blue.clip::after {
  top: 50px;
}
/*----------------------------
lead
----------------------------*/
.lead_box {
  padding: 20px 10px ;
}
.lead_01 {
  width: 80%;
}
.lead_tx {
  font-size: 18px;
  padding: 40px 0 20px;
}
.lead_03 {
  margin-top: 20px;
}
/*----------------------------
trailer
----------------------------*/
.flex_box {
  width: 100%;
  flex-direction: column;
}
.youtube {
  width: 100%;
  border: 3px solid #fff;
  margin-top: 30px;
}
/*----------------------------
btn
----------------------------*/
.btn.sp {
  text-align: center;
}
.btn.sp a {
  margin-top: 20px;
  background-color: #1d3a96;
  width: 300px;
}
/*----------------------------
story
----------------------------*/
#story {
  margin: 60px 0;
  padding: 0 15px;
}
.story_tx {
  padding-top: 30px;
  width: 100%;
  text-align: center;
}
.ompu {
  width: 60px;
  top: -30px;
  left: 20px;
  }
.ompu_right {
  width: 60px;
  bottom: -40px;
  right: 20px;
  }
/*----------------------------
cast
----------------------------*/
.cast_list {
  width: 100%;
  margin: 30px auto ;
  flex-direction: column;
  padding: 0 10px;
}
.cast_list .list {
  width: 90%;
  margin: auto;
}
.cast_list .list:nth-of-type(n+2) {
  margin-top: 40px;
}
.copy {
  position: relative;
  z-index: 3;
}
/*----------------------------
追従
----------------------------*/
.lp_cta_fixed .point_cp {
  font-size: 12px;
  padding-bottom: 5px;
}
.btn_wrap {
  display: flex;
  width: 98%;
  margin: auto;
  justify-content: space-between;
}
.btn.fix {
  width: 98%;
}
.btn.fix a {
  margin-top: 0;
  width: 98%;
  height: 40px;
  margin-bottom: 0;
  font-size: 11px;
  padding: 10px 5px;
}
.btn.fix.lemino a {
  padding: 5px 5px;
}
.btn.fix a .s_text {
  font-size: 10px;
}
.btn.fix a::after {
  display: none;
}
}
/* ----------------------------------------------------------------------------------------
812px以下の固定css(SP)
-------------------------------------------------------------------------------------------- */
@media screen and (max-width: 812px) {
 .common_footer_wrapper .footer_inner {
  width: 93%!important;
 }
 /*ユーザーエージェント出し分け用*/
.iphone .android_show, .iphone .pc_show {display:none;}
.android .iphone_show, .android .pc_show {display:none;}
.pc .iphone_show, .pc .android_show {display:none;}
.pc .visible .iphone_show, .pc .visible .android_show {display:block;}
body {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-text-size-adjust: 100%;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  font-family: 'Noto Sans JP', "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic", Helvetica, sans-serif;
  }
 .sp {
  display: block;
 }
 .pc {
  display: none;
 }
 .home {
  position: fixed;
  top: 14px;
  left: 10px;
  width: 20%;
  max-width: 130px;
  z-index: 1000;
 }
}
</pre></body></html>