/* CSS Document */

.top_hero{
  padding: 35px 0;
}
.hero-content{
  width: 100%;
  position: relative;
  height: 0;
  padding-bottom: 42%;
}

.hero-content .loader{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 6px solid #f3f3f3;
  border-top: 6px solid #00a1d9;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  animation: spin 1s linear infinite;
  z-index: 10;
}
@keyframes spin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
.hero-content.loaded .loader{
  display:none;
}
.hero-content video{
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  object-fit: cover;
  background: #fff;
  filter: grayscale(0);
}
.hero-content .btn-stop{
  position:absolute;
  z-index:2;
  left:0;
  bottom:0;
  width: 60px;
  height: 60px;
  background: url(/assets/img/btn_kv_stop.png) no-repeat;
  background-size: contain;
  margin: 0 0 -30px 7px;
  cursor: pointer;
}
.hero-content .btn-stop img{
  width:100%;
}

.section:nth-of-type(even){
  background: #f7f7f7;
}
.top_statement {
  background: #f7f7f7;
}
.top_statement .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1em;
  padding: 75px 0;
}
.top_statement img {
  margin: -35px 45px 0px 7px;
}
.top_statement p {
  font-size: 1.25em;
  line-height: 1.75;
  margin: 17px 0 7px;
}

.top_app {
}

.top_app h2 {
  margin-bottom: 80px;
}
.top_app .app-flex {
  display: flex;
  align-items: start;
}
.top_app .app-flex img {
  width: min(360px, 31%);
  margin-right: 60px;
}
.top_app .flex-right {
  width: 100%;
}
.top_app .flex-right h3 {
  display: block;
  background: #00a1d9;
  color: #fff;
  border-radius: 0.2em;
  font-size: 1.5em;
  padding: 0.46em 2em;
  box-sizing: border-box;
  text-align: center;
  margin-right: 1.2em;
  width: 100%;
  font-weight: 400;
  margin: 0;
}
.top_app .flex-right ul {
  padding: 0;
  margin: 59px 0 10px;
}
.top_app .flex-right ul li {
  position: relative;
  width: 100%;
  background: #fff url(/assets/img/icon_app_func01.svg) no-repeat right center;
  background-size: 2.4em !important;
  background-position-x: calc(100% - 1.1em) !important;
  padding: 1em 0 1.2em;
  margin-bottom: 1.2em;
  box-shadow: hsl(0deg 0% 0% / 20%) 0 0 0.4em;
  border-radius: 4px;
  box-sizing: border-box;
  text-align: center;
  font-size: min(29px, 1.625em);
  font-weight: 300;
}
.top_app .flex-right ul li:nth-child(2) {
  background: #fff url(/assets/img/icon_app_func02.svg) no-repeat right center;
  background-position-y: 46%;
}
.top_app .flex-right ul li:nth-child(3) {
  background: #fff url(/assets/img/icon_app_func03.svg) no-repeat right center;
  background-position-y: 51%;
}
.top_app .flex-right ul li span.ribbon {
  position: absolute;
  left: 0.7em;
  top: -0.2em;
  width: 1.3em;
  height: 2.046em;
  line-height: 1.8;
  text-align: center;
  padding-right: 0.3em;
  background: url(/assets/img/ribbon_rank.svg?2) no-repeat;
  font-family: "Quicksand", sans-serif;
  color: #fff;
  font-size: 1.692em;
  display: block;
}
.top_app .flex-right .message {
  background: #898989;
  border-radius: 0.3em;
  color: #fff;
  display: flex;
  margin-top: 3.2em;
  align-items: center;
}
.top_app .flex-right .message h4 {
  padding: 1.05em 0.4em;
  margin: 0;
  text-align: center;
  line-height: 1.5;
  font-weight: 300;
  min-width: 244px;
}
.top_app .flex-right .message p {
  padding: 1.2em 1em 1.2em 34px;
  margin: 0;
  line-height: 1.5;
  font-weight: 300;
  border-left: #f7f7f7 2px solid;
}
.top_app .flex-right .links {
  width: 100%;
  text-align: center;
  margin-top: 84px;
  white-space: nowrap;
}
.top_app .flex-right .links a {
  display: inline-block;
  vertical-align: middle;
}
.top_app .flex-right .links a img {
  height: 70px;
  width: auto;
  margin-right: 26px;
}
.top_app .flex-right .links a img.qr {
  height: 84px;
  margin: 0 -7px 0 23px;
}
@media (max-width: 1024px) {
  .app-flex {
    font-size: 1.56vw;
  }
  .top_app .app-flex img {
    margin-right: 3.5em;
  }
  .top_app .flex-right .links a img {
    height: 4.4em;
    margin-right: 1.5em;
  }
  .top_app .flex-right .links a img.qr {
    height: 5.2em;
    margin: 0 0.5em 0 1.4em;
  }
}
/*----------------
only-sp
----------------*/
@media (max-width: 768px) {
  .top_hero{
    padding: 1.7em 0;
  }
  .hero-content{
    padding-bottom: 42%;
  }
  .hero-content .loader{
    border: 6px solid #f3f3f3;
    border-top: 6px solid #00a1d9;
    width: 50px;
    height: 50px;
  }
  .hero-content .btn-stop{
    width: 2.8em;
    height: 2.8em;
    margin: 0 0 -1.6em 0.2em;
  }
  .top_statement .container {
    gap: 1em;
    padding: 0.8em 0;
    width: 96%;
  }
  .top_statement img {
    margin: -0.9em 0.3em 0 0em;
    width: 6.7em;
  }
  .top_statement p {
    font-size: 1.08em;
    line-height: 1.65;
    margin: 0.6em 0 0.6em;
  }
  
  .top_app {
  }
  .top_app h2 {
    margin-bottom: 2em;
    margin-top: -0.2em;
  }
   .top_app h2 .sp-narrow{
    font-size: 0.74em;
  }
  .top_app .app-flex {
    display: block;
    font-size: 5.85px;
  }
  .top_app .app-flex img {
    width: min(320px, 100%);
    display: block;
    margin: 0 auto;
  }
  .top_app .flex-right h3 {
    border-radius: 0.2em;
    font-size: 3.2em;
    padding: 0.62em 0;
    margin: 3.2em 0 0;
  }
  .top_app .flex-right ul {
    margin: 4em 0  0;
    font-size: 1.35em;
  }
  .top_app .flex-right ul li {
    background-size: 3.6em !important;
    background-position-x: calc(100% - 1.1em) !important;
    padding: 2em 0 2.2em 3.7em;
    margin-bottom: 1.7em;
    text-align: left;
    box-shadow: hsl(0deg 0% 0% / 20%) 0 0 0.4em;
    border-radius: 4px;
    font-size: 1.9em;
    font-feature-settings: "palt";
    letter-spacing: 0.05em;
  }
  .top_app .flex-right ul li:nth-child(2) {
    background-position-y: 46%;
  }
  .top_app .flex-right ul li:nth-child(3) {
    background-position-y: 55%;
  }
  .top_app .flex-right ul li span.ribbon {
    font-size: 1.45em;
    left: 0.6em;
  }
  .top_app .flex-right .message {
    border-radius: 0.3em;
    display: block;
    margin-top: 3.8em;
    font-size: 4.2vw;
  }
  .top_app .flex-right .message h4 {
    padding: 0.85em 0 1em;
    line-height: 1.5;
    min-width: 0;
    font-size: 1.18em;
  }
  .top_app .flex-right .message p {
    padding: 1.6em 1.1em 1.7em;
    line-height: 1.5;
    font-size: 0.88em;
    border-left: none;
    border-top: #f7f7f7 2px solid;
  }
  .top_app .flex-right .links {
    width: 100%;
    margin-top: 10.4em;
  }
  .top_app .flex-right .links a img {
    height: 8.53em;
    margin-right: 1em;
  }
  .top_app .flex-right .links a img.qr {
    height: 84px;
    margin: 0 -7px 0 23px;
  }
}
@media (max-width: 374px) {
  .top_app .app-flex {
    font-size: 1.6vw;
  }
}