@charset "UTF-8";
/* COMPASS
 * ----------------------------------------------- */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption, th, td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

q, blockquote {
  quotes: none;
}
q:before, q:after, blockquote:before, blockquote:after {
  content: "";
  content: none;
}

a img {
  border: none;
}

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
  display: block;
}

/* BASE
 * ----------------------------------------------- */
/* MEDIA QUERIES
 * ----------------------------------------------- */
/* ADDITIONAL RESET
 * ----------------------------------------------- */
*,
*:before,
*:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

body * {
  max-height: 99999em;
  word-break: break-word;
}

img {
  display: inline-block;
  vertical-align: middle;
  max-width: 100%;
  height: auto;
}

input,
label,
select,
button {
  line-height: inherit;
}

input,
label,
select,
button,
textarea {
  margin: 0;
  border: 0;
  padding: 0;
  word-break: normal;
  display: inline-block;
  vertical-align: middle;
  white-space: normal;
  background: none;
  -webkit-appearance: none;
  font: inherit;
}

button:focus {
  outline: 0;
}

input:focus,
textarea:focus,
select:focus {
  outline: auto;
}

/* Make webkit render the search input like a normal text field */
input[type=search] {
  -webkit-appearance: textfield;
}

/* Turn off the recent search for webkit. It adds about 15px padding on the left */
::-webkit-search-decoration {
  display: none;
}

/* Turn off scroll bars in IE unless needed */
textarea {
  overflow: auto;
  white-space: pre-line;
  resize: none;
}

/* PRINTING
 * ----------------------------------------------- */
@media print {
  body {
    -webkit-print-color-adjust: exact;
  }

  html,
  body {
    margin: 0;
  }

  @page {
    margin: 0;
  }
  @page :left {
    margin: 0;
  }
  @page :right {
    margin: 0;
  }
  @page :first {
    margin-top: 0;
  }
}
/* GENERAL
 * ----------------------------------------------- */
body {
  color: #000;
  font-family: "Noto Sans JP", YakuHanJP, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "游ゴシック", YuGothic, "Yu Gothic", "メイリオ", Meiryo, Verdana, sans-serif;
  font-weight: 400;
  line-height: 1.4;
  -webkit-text-size-adjust: none;
  -moz-text-size-adjust: none;
  -ms-text-size-adjust: none;
}

.font-serif {
  font-family: "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "Times New Roman", "游明朝", YuMincho, "メイリオ", Meiryo, Georgia, serif;
}

img:-moz-loading {
  visibility: hidden;
}

/* HELPERS
 * ----------------------------------------------- */
a {
  color: #000;
  text-decoration: none;
}

.hidden {
  display: none;
}

.invisible {
  visibility: hidden;
}

.text-left {
  text-align: left;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.text-justify {
  text-align: justify;
}

.text-nowrap {
  white-space: nowrap;
}

.text-lowercase {
  text-transform: lowercase;
}

.text-uppercase {
  text-transform: uppercase;
}

.text-capitalize {
  text-transform: capitalize;
}

.common-button {
  display: block;
  width: 260px;
}

.slick-slider:focus,
.slick-track:focus,
.slick-slide:focus {
  outline: none;
}

.container {
  overflow: hidden;
}

.common-image-absolute {
  position: absolute !important;
  transform: translateZ(-100px);
  z-index: 1 !important;
}

/* RESPONSIVE
 * ----------------------------------------------- */
@media print, (min-width: 768px) {
  body {
    font-size: 14px;
  }

  .container {
    min-width: 1250px;
  }

  .wrapper {
    width: 960px;
    margin-left: auto;
    margin-right: auto;
  }

  .sm {
    display: none !important;
  }

  .trans {
    cursor: pointer;
    filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
    opacity: 1;
    -moz-transition: opacity 0.26s ease;
    -o-transition: opacity 0.26s ease;
    -webkit-transition: opacity 0.26s ease;
    transition: opacity 0.26s ease;
  }
  .trans:hover {
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
    opacity: 0.8;
  }

  .display-flex {
    display: flex;
  }
}
@media only screen and (max-width: 767px) {
  .md {
    display: none !important;
  }

  html {
    font-size: calc(100vw / 7.5);
  }

  body {
    font-size: 0.21rem;
  }

  .container {
    min-width: 320px;
  }

  .wrapper {
    padding-left: 0.12rem;
    padding-right: 0.12rem;
  }

  .common-button {
    width: 3.12rem;
    height: 0.77rem;
  }
}
/* PARTS
 * ----------------------------------------------- */
/* COMMON HEADER
 * ----------------------------------------------- */
.first-header {
  background-color: #fff;
  position: relative;
  z-index: 99999999;
}
.first-header .box-menu-shadow {
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.5);
  padding: 15px 20px 9px;
  text-align: center;
  position: relative;
  z-index: 9;
}
.first-header .menu-button {
  display: inline-block;
  cursor: pointer;
}

.header-top-navigation {
  background-color: rgba(255, 255, 255, 0.95);
  display: none;
  position: absolute;
  width: 100%;
  left: 0;
  top: 80px;
}

@media print, (min-width: 768px) {
  header {
    height: px;
  }

  .menu-content {
    display: flex;
    justify-content: center;
    font-weight: 500;
    padding: 23px 20px;
    align-items: center;
  }
  .menu-content li {
    margin: 0 18px;
  }
  .menu-content li img {
    margin-right: 10px;
  }
}
@media only screen and (max-width: 767px) {
  header {
    height: 0.93rem;
  }

  .header-top-navigation {
    top: 0.8rem;
  }

  .first-header .box-menu-shadow {
    padding: 0.15rem 0.2rem 0.09rem;
  }
  .first-header .menu-button {
    width: 0.58rem;
  }
  .first-header .menu-content {
    display: flex;
    flex-wrap: wrap;
    font-size: 0.165rem;
    align-items: center;
    justify-content: center;
    padding: 0.2rem 0.1rem;
  }
  .first-header .menu-content li {
    margin: 0.06rem 0.2rem;
  }
  .first-header .menu-content img {
    height: 0.32rem;
    width: auto;
    margin: 0.1rem 0.1rem 0.1rem 0;
  }
}
.second-header {
  position: relative;
  width: 100%;
  z-index: 99999;
  border-bottom: 5px solid #fff;
  box-shadow: 0 10px 0px 0px rgba(0, 0, 0, 0.5);
}
.second-header.is-fixed {
  top: 0;
  position: fixed;
}

.second-header .beginning_menu .beginning_menu_lists {
  background-color: rgba(3, 37, 195, 0.8);
  display: none;
  position: absolute;
}
.second-header .beginning_menu .beginning_menu_lists a {
  color: #ffffff;
  position: relative;
}
.second-header .beginning_menu .beginning_menu_lists a::before{
  content: ">";
  display: block;
  position: absolute;
  top: 2px;
  left: -15px;
}

@media only screen and (max-width: 767px) {
  body.menu-opened .first-header {
    z-index: 99999;
  }
  body.menu-opened .second-header {
    z-index: 99999999;
  }
}
@media print, (min-width: 768px) {
  .second-header {
    background-image: url(../img/common/backgroun_header.png);
    background-size: cover;
    min-width: 1250px;
  }
  .second-header .logo {
    display: block;
    margin-right: 18px;
  }
  .second-header .wrapper {
    display: flex;
    align-items: center;
  }

  .beginning_menu_pc {
    display: block;
    position: relative;
    top: -0.6px;
  }
  .beginning_menu_sp {
    display: none;
  }
  .second-header .beginning_menu {
    cursor: pointer;
    margin-right: 22px;
    position: relative;
  }
  .second-header .beginning_menu .beginning_menu_lists {
    padding: 15px 0 10px 38px;
    top: 60px;
    left: 0;
    width: 300px;
  }
  .second-header .beginning_menu .beginning_menu_list.list_02 {
    margin-top: 5px;
  }
  .header-navigation ul {
    display: flex;
    justify-content: center;
  }
  .header-navigation ul li {
    padding: 9px 0 7px;
  }
  .header-navigation ul li:nth-of-type(2),
  .header-navigation ul li:nth-of-type(3),
  .header-navigation ul li:nth-of-type(5) {
    margin-left: 4px;
  }
  .header-navigation ul li:nth-of-type(4),
  .header-navigation ul li:nth-of-type(6),
  .header-navigation ul li:nth-of-type(7) {
    margin-left: 2px;
  }

  .header-navigation ul {
    display: flex;
    justify-content: center;
  }
  .header-navigation ul li {
    padding: 9px 0 7px;
  }

  .has-sub-menu {
    position: relative;
  }
  .has-sub-menu:hover .sub-menu {
    display: block;
  }

  .sub-menu {
    display: none;
    position: absolute;
    right: 0;
    top: 75px;
    width: 400px;
    height: 190px;
    background-color: rgba(0, 0, 0, 0.8);
    text-align: center;
    padding: 7px 8px;
  }
  .sub-menu .text {
    margin-top: 10px;
  }

  .list-download-button {
    display: flex;
    margin-top: 10px;
  }
  .list-download-button li {
    margin: 0 9px;
  }
  .list-download-button li a {
    display: block;
    box-shadow: 10px 10px 0px 0px rgba(0, 0, 0, 0.5);
  }
}
@media only screen and (max-width: 767px) {
  .logo {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-image: url(../img/common/sp/backgroun_header.png);
    background-size: cover;
    margin: 0 -0.12rem;
    padding: 0.1rem 0.08rem 0.04rem 0.84rem;
    border-bottom: 0.06rem solid #fff;
  }
  .logo img {
    width: 1.83rem;
  }
  .logo h1 {
    width: 1.83rem;
    position: relative;
    z-index: 9;
  }

  .beginning_menu_pc {
    display: none;
  }
  .beginning_menu_sp {
    display: block;
    left: -0.12rem;
    position: relative;
  }
  .second-header .beginning_menu {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
  }
  .second-header.open-navigation .beginning_menu {
    display: none;
  }
  .second-header .beginning_menu .beginning_menu_img img {
    width: 9.8vw;
  }
  .second-header .beginning_menu .beginning_menu_lists {
    padding: 5vw 0 3vw 7vw;
    top: 9.8vw;
    left: 0;
    width: 77vw;
  }
  .second-header .beginning_menu .beginning_menu_list {
    font-size: 3.46vw;
  }
  .second-header .beginning_menu .beginning_menu_list.list_02 {
    margin-top: 3vw;
  }
  .second-header .beginning_menu_sp .beginning_menu_close {
    background-color: rgba(1, 21, 113, 0.8);
    color: #ffffff;
    display: none;
    padding: 1.2vw 0;
    position: absolute;
    top: 30.4vw;
    left: 0;
    text-align: center;
    width: 77vw;
  }

  .button-menu-sp {
    width: 0.8rem;
    height: 0.6rem;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-content: center;
    background: url(../img/common/sp/icon_button_menu.png) left top;
    background-size: 100% auto;
  }

  .sub-menu {
    display: none;
  }

  .header-navigation {
    text-align: center;
    position: relative;
    z-index: 9;
    display: none;
    padding-bottom: 1.2rem;
  }
  .header-navigation ul {
    height: calc(100vh - 0.86rem);
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 1.2rem;
  }
  .header-navigation li:not(.has-sub-menu) {
    padding: 0 0.38rem;
  }
  .header-navigation li:last-child {
    padding-bottom: 1.7rem;
  }

  .second-header {
    border-bottom: 0.05rem solid #fff;
    box-shadow: 0 0.08rem 0px 0px rgba(0, 0, 0, 0.5);
  }
  .second-header.open-navigation {
    top: 0;
  }
  .second-header.open-navigation.is-fixed {
    position: fixed;
  }
  .second-header.open-navigation .button-menu-sp {
    background: url(../img/common/sp/icon_button_menu.png) left bottom;
    background-size: 100% auto;
  }
  .second-header.open-navigation .wrapper {
    position: relative;
  }
  .second-header.open-navigation .wrapper:before {
    position: absolute;
    left: 0;
    top: 0;
    content: "";
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
  }
}
@media print {
  .second-header {
    display: none !important;
  }
}
/* COMMON FOOTER
 * ----------------------------------------------- */
footer {
  position: relative;
  z-index: 99999;
}
footer::before {
  content: "";
  display: block;
  width: 120%;
  height: 200%;
  background-color: #000;
  transform: rotate(-4deg) translateX(-50%);
  position: absolute;
  left: 50%;
}
footer .inner {
  background-color: #fff;
  font-weight: 500;
  position: relative;
}
footer .copyright {
  color: #002abc;
}

.footer-menu {
  display: flex;
}

@media print, (min-width: 768px) {
  footer::before {
    top: -136px;
  }
  footer .inner {
    padding: 31px 32px;
    justify-content: space-between;
    align-items: center;
  }

  footer .left {
    display: flex;
    justify-content: flex-start;
    align-items: center;
  }

  footer .left .icon_jasrac {
    margin-left: 20px;
    width: 50px;
  }

  .footer-menu {
    font-size: 14px;
  }
  .footer-menu li {
    line-height: 1;
    padding: 0 15px;
    border-left: 1px solid #002abc;
  }
  .footer-menu li:first-child {
    border-left: none;
  }
}
@media only screen and (max-width: 767px) {
  footer::before {
    top: -1.05rem;
  }
  footer .copyright {
    text-align: center;
    margin-top: 0.44rem;
  }
  footer .inner {
    display: flex;
    flex-wrap: wrap;
    padding: 0.74rem 0.32rem 0.38rem;
    font-size: 0.21rem;
  }
  footer .left {
    display: flex;
    justify-content: center;
    align-items: baseline;
    order: 2;
    min-width: 100%;
  }
  footer .left small {
    display: block;
  }
  footer .left .icon_jasrac {
    margin-left: 2vw;
    width: 10vw;
  }
  footer .right {
    order: 1;
    min-width: 100%;
  }

  .footer-menu {
    display: flex;
    font-size: 0.21rem;
    flex-wrap: wrap;
    justify-content: center;
  }
  .footer-menu li {
    line-height: 1;
    padding: 0 0.24rem;
    margin: 0.15rem 0;
    border-right: 0.02rem solid #002abc;
  }
  .footer-menu li:last-child {
    border-right: none;
  }
}
/* MODULES
 * ----------------------------------------------- */
.keyvisual .wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}
.keyvisual .keyvisual-inner,
.keyvisual .wrapper {
  height: 100%;
}

.title-keyvisual img {
  width: 100%;
}

.keyvisual,
.keyvisual-inner {
  position: relative;
  z-index: 1;
}
.keyvisual:after,
.keyvisual-inner:after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  z-index: -1;
}
.keyvisual:after,
.keyvisual-inner:after {
  background: #000;
  transform: skewY(-5.5deg);
}

@media print, (min-width: 768px) {
  .is-sub {
    background: url(../img/common/keyvisual_bg.jpg) top -70px center/auto no-repeat;
  }

  .keyvisual {
    height: 377px;
  }

  .keyvisual-news .title-keyvisual {
    width: 315px;
  }

  .keyvisual-inner:after {
    bottom: -112px;
    height: 200px;
  }
}
@media only screen and (max-width: 767px) {
  .is-sub {
    background: url(../img/common/sp/keyvisual_bg.jpg) top -0.8rem center/100% auto no-repeat;
    background: #000099;
  }

  .keyvisual {
    height: 3.3rem;
  }
  .keyvisual .title-keyvisual {
    position: relative;
    top: -0.25rem;
  }

  .keyvisual-news .title-keyvisual {
    width: 3.15rem;
  }

  .keyvisual-inner:before {
    bottom: -2.18rem;
    height: 4rem;
  }
  .keyvisual-inner:after {
    bottom: -1.12rem;
    height: 2rem;
  }
}
@media print, (min-width: 768px) {
  .document-common {
    padding: 92px 0 160px;
    background: url(../img/common/document_background_01.jpg) top center/cover no-repeat;
  }
}
@media only screen and (max-width: 767px) {
  .document-common {
    padding: 0.68rem 0 1.35rem;
    background: url(../img/common/sp/document_background_01.jpg) top center/cover no-repeat;
  }
  .document-common .wrapper {
    padding: 0;
  }
}

.document-head {
  text-align: center;
}
.document-head img {
  width: auto;
  height: 100%;
}
@media print, (min-width: 768px) {
  .document-head {
    height: 200px;
    margin-bottom: 37px;
  }
}
@media only screen and (max-width: 767px) {
  .document-head {
    height: 2rem;
    margin-bottom: 0.02rem;
  }
}

.document-body {
  position: relative;
}
.document-body .body-wrapper {
  position: relative;
  z-index: 1;
}
@media print, (min-width: 768px) {
  .document-body {
    padding: 94px 55px 108px 75px;
  }
}
@media only screen and (max-width: 767px) {
  .document-body {
    padding: 1.32rem 0.4rem 1.14rem 0.66rem;
  }
}

.document-story .story-title {
  font-weight: 500;
}
.document-story .story-detail {
  word-break: break-all;
}
@media print, (min-width: 768px) {
  .document-story {
    font-size: 13px;
    line-height: 1.85;
  }
  .document-story:not(:last-child) {
    margin-bottom: 28px;
  }
  .document-story .story-title {
    font-size: 16px;
    line-height: 1.5;
  }
}
@media only screen and (max-width: 767px) {
  .document-story {
    font-size: 0.21rem;
    line-height: 1.43;
  }
  .document-story:not(:last-child) {
    margin-bottom: 0.3rem;
  }
}

.background-common-document {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
  pointer-events: none;
}
.background-common-document .background-canvas, .background-common-document .placeholder-layer {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.background-common-document .background-placeholder {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
  opacity: 0;
}
.background-common-document .background-placeholder span {
  position: absolute;
}
.background-common-document .background-canvas {
  z-index: 0;
}
@media print, (min-width: 768px) {
  .background-common-document .placeholder-layer span {
    width: 10px;
    height: 10px;
    margin: -5px;
    position: absolute;
  }
  .background-common-document .placeholder-layer:nth-child(1) span:nth-child(1) {
    top: 66px;
    left: 37px;
  }
  .background-common-document .placeholder-layer:nth-child(1) span:nth-child(2) {
    top: 9px;
    right: 33px;
  }
  .background-common-document .placeholder-layer:nth-child(1) span:nth-child(3) {
    right: 22px;
    bottom: 60px;
  }
  .background-common-document .placeholder-layer:nth-child(1) span:nth-child(4) {
    bottom: 39px;
    left: 39px;
  }
  .background-common-document .placeholder-layer:nth-child(2) span:nth-child(1) {
    top: 31px;
    left: 14px;
  }
  .background-common-document .placeholder-layer:nth-child(2) span:nth-child(2) {
    top: 26px;
    right: 9px;
  }
  .background-common-document .placeholder-layer:nth-child(2) span:nth-child(3) {
    right: 37px;
    bottom: 17px;
  }
  .background-common-document .placeholder-layer:nth-child(2) span:nth-child(4) {
    bottom: 64px;
    left: 41px;
  }
}
@media only screen and (max-width: 767px) {
  .background-common-document .placeholder-layer span {
    width: 0.1rem;
    height: 0.1rem;
    margin: -0.05rem;
  }
  .background-common-document .placeholder-layer:nth-child(1) span:nth-child(1) {
    top: 1rem;
    left: 0.32rem;
  }
  .background-common-document .placeholder-layer:nth-child(1) span:nth-child(2) {
    top: 0.44rem;
    right: 0.28rem;
  }
  .background-common-document .placeholder-layer:nth-child(1) span:nth-child(3) {
    right: 0.22rem;
    bottom: 0.58rem;
  }
  .background-common-document .placeholder-layer:nth-child(1) span:nth-child(4) {
    bottom: 0.36rem;
    left: 0.34rem;
  }
  .background-common-document .placeholder-layer:nth-child(2) span:nth-child(1) {
    top: 33px;
    left: 6px;
  }
  .background-common-document .placeholder-layer:nth-child(2) span:nth-child(2) {
    top: 30px;
    right: 5px;
  }
  .background-common-document .placeholder-layer:nth-child(2) span:nth-child(3) {
    right: 16px;
    bottom: 7px;
  }
  .background-common-document .placeholder-layer:nth-child(2) span:nth-child(4) {
    bottom: 32px;
    left: 18px;
  }
}

.wow {
  visibility: hidden;
}

@media print {
  .wow {
    visibility: visible;
  }
}
/* COMMON ANIMATION
 * ----------------------------------------------- */
.animated {
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

@-webkit-keyframes fade-in-up {
  0% {
    opacity: 0;
    -webkit-transform: translateY(50px);
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes fade-in-up {
  0% {
    opacity: 0;
    -webkit-transform: translateY(50px);
    -ms-transform: translateY(50px);
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}
.fade-in-up {
  -webkit-animation-name: fade-in-up;
  animation-name: fade-in-up;
}

@-webkit-keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.fade-in {
  -webkit-animation-name: fade-in;
  animation-name: fade-in;
}

@-webkit-keyframes fade-in-left {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-50px, 0, 0);
    transform: translate3d(-50px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fade-in-left {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-50px, 0, 0);
    transform: translate3d(-50px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.fade-in-left {
  -webkit-animation-name: fade-in-left;
  animation-name: fade-in-left;
}

@-webkit-keyframes fade-in-right {
  from {
    opacity: 0;
    -webkit-transform: translate3d(50px, 0, 0);
    transform: translate3d(50px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fade-in-right {
  from {
    opacity: 0;
    -webkit-transform: translate3d(50px, 0, 0);
    transform: translate3d(50px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.fade-in-right {
  -webkit-animation-name: fade-in-right;
  animation-name: fade-in-right;
}

@-webkit-keyframes fade-in-down {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-50px);
    transform: translateY(-50px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes fade-in-down {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-50px);
    -ms-transform: translateY(-50px);
    transform: translateY(-50px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}
.fade-in-down {
  -webkit-animation-name: fade-in-down;
  animation-name: fade-in-down;
}

.skv-animate {
  visibility: hidden;
}

.skv-passed {
  visibility: visible !important;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

/* Attention seekers */
@-webkit-keyframes bounce {
  from,
20%,
53%,
to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  40%,
43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0) scaleY(1.1);
    transform: translate3d(0, -30px, 0) scaleY(1.1);
  }
  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0) scaleY(1.05);
    transform: translate3d(0, -15px, 0) scaleY(1.05);
  }
  80% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0) scaleY(0.95);
    transform: translate3d(0, 0, 0) scaleY(0.95);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0) scaleY(1.02);
    transform: translate3d(0, -4px, 0) scaleY(1.02);
  }
}
@keyframes bounce {
  from,
20%,
53%,
to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  40%,
43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0) scaleY(1.1);
    transform: translate3d(0, -30px, 0) scaleY(1.1);
  }
  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0) scaleY(1.05);
    transform: translate3d(0, -15px, 0) scaleY(1.05);
  }
  80% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0) scaleY(0.95);
    transform: translate3d(0, 0, 0) scaleY(0.95);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0) scaleY(1.02);
    transform: translate3d(0, -4px, 0) scaleY(1.02);
  }
}
.bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
}

/* PAGE
 * ----------------------------------------------- */
.button-lp {
  display: block;
}
.button-lp img {
  width: 100%;
}
@media print, (min-width: 768px) {
  .button-lp {
    width: 740px;
    margin: 0 auto;
  }
}
@media only screen and (max-width: 767px) {
  .button-lp {
    margin: 0 -0.07rem;
  }
}

.keyvisual-lp {
  background: linear-gradient(90deg, #624ed7 0%, #e92bff 100%);
  position: relative;
}
.keyvisual-lp::after {
  content: "";
  width: 100%;
  height: 100%;
/*  background: url(../img/lp/background_img_01.png) center center;*/
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  background: url(../img/mcreator/bg_pc.png) center center repeat;
/*  mix-blend-mode: soft-light;*/
}
@media only screen and (max-width: 767px) {
  .keyvisual-lp::after {
    background: url(../img/mcreator/bg_sp.png) center center repeat;
  }
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .keyvisual-lp::after {
    opacity: 0.4;
  }
}
.keyvisual-lp .wrapper {
  position: relative;
  z-index: 1;
}
.keyvisual-lp .block-banner img {
  width: 100%;
}
@media print, (min-width: 768px) {
  .keyvisual-lp {
    padding: 38px 0 84px;
  }
  .keyvisual-lp .lp-block:not(:last-child) {
    margin-bottom: 61px;
  }
  .keyvisual-lp .block-banner {
    margin-bottom: 7px;
  }
  .keyvisual-lp .button-lp:not(:last-child) {
    margin-bottom: 7px;
  }
}
@media only screen and (max-width: 767px) {
  .keyvisual-lp {
    padding: 0.15rem 0 0.66rem;
  }
  .keyvisual-lp .lp-block:not(:last-child) {
    margin-bottom: 0.61rem;
  }
  .keyvisual-lp .block-banner {
    margin: 0 -0.02rem 0.07rem;
  }
  .keyvisual-lp .button-lp:not(:last-child) {
    margin-bottom: 0.07rem;
  }
}

.about-content-page {
  background: url(../img/lp/lp_background.jpg) center top no-repeat;
  background-size: cover;
  min-height: 500px;
}

.list-download-app {
  display: flex;
  margin: 35px 0 0 -3px;
  justify-content: center;
  position: relative;
  z-index: 9;
}
.list-download-app li {
  margin: 0 10px;
}
.list-download-app li a {
  display: block;
  box-shadow: 10px 10px 0 0 rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  overflow: hidden;
}

@media only screen and (max-width: 767px) {
  .about-content-page {
    background: url(../img/lp/sp/lp_background.jpg) center top no-repeat;
    background-size: cover;
    min-height: 0;
  }

  .list-download-app {
    margin: 0.3rem 0 0;
  }
  .list-download-app li {
    margin: 0 0.1rem;
  }
  .list-download-app li a {
    box-shadow: 0.1rem 0.1rem 0 0 rgba(0, 0, 0, 0.5);
    border-radius: 0.13rem;
  }
  .list-download-app li img {
    height: 0.7rem;
    max-width: none;
    width: auto;
  }
}
.section-download-application {
  color: #fff;
}
.section-download-application .inner {
  margin: 0 auto;
}
.section-download-application .block-download-application {
  position: relative;
  background: url(../img/lp/falme_background.png) center center no-repeat;
  background-size: 100% 100%;
}
.section-download-application .block-download-application:before {
  position: absolute;
  content: "";
}
.section-download-application .download-application-description {
  position: relative;
  z-index: 9;
}
.section-download-application .download-application-description .download-application-img {
  position: absolute;
  content: "";
}
.section-download-application .download-application-detail {
  position: relative;
  word-break: break-all;
}

@media print, (min-width: 768px) {
  .section-download-application {
    padding: 74px 0 170px;
    line-height: 1.55556;
    font-size: 18px;
  }
  .section-download-application .inner {
    width: 641px;
  }
  .section-download-application .block-download-application {
    width: 590px;
    min-height: 356px;
    padding-top: 54px;
    margin-left: 77px;
  }
  .section-download-application .block-download-application:before {
    width: 779px;
    height: 333px;
    left: -118px;
    top: 27px;
    background: url(../img/lp/falme_img_star.png) center center no-repeat;
    background-size: cover;
  }
  .section-download-application .download-application-description {
    padding-left: 158px;
  }
  .section-download-application .download-application-description .download-application-img {
    left: -60px;
    top: -30px;
    width: 195px;
    height: 195px;
  }
  .section-download-application .download-application-detail {
    padding-top: 0;
    position: relative;
    left: 20px;
    word-break: break-all;
  }
  .section-download-application .download-application-title {
    margin-top: 25px;
  }
}
@media only screen and (max-width: 767px) {
  .section-download-application {
    padding: 0.74rem 0 1.4rem;
    line-height: 1.4285;
    font-size: 0.21rem;
  }
  .section-download-application .inner {
    padding-left: 0.1rem;
    padding-right: 0.1rem;
  }
  .section-download-application .block-download-application {
    width: 5.9rem;
    min-height: 3.56rem;
    padding-top: 0.54rem;
    margin-left: 1.18rem;
  }
  .section-download-application .block-download-application:before {
    width: 7.37rem;
    height: 3.33rem;
    left: -1.18rem;
    top: 0.27rem;
    background: url(../img/lp/sp/falme_img_star.png) center center no-repeat;
    background-size: cover;
  }
  .section-download-application .download-application-description {
    padding-left: 1.58rem;
  }
  .section-download-application .download-application-description .download-application-img {
    left: -0.6rem;
    top: -0.3rem;
    width: 1.95rem;
    height: 1.95rem;
  }
  .section-download-application .download-application-detail {
    padding-top: 0;
    word-break: break-all;
  }
  .section-download-application .download-application-title {
    margin-top: 0.3rem;
  }
}

main::before {
/*  background: transparent !important;*/
  z-index: 1 !important;
  pointer-events: none;
}

.breadcrumb.type-sp{
  bottom: -39px !important;
  left: 0px !important;
  z-index: 2000!important;
}

/*# sourceMappingURL=lp.css.map */
