@charset "utf-8";
/* =================================================
  Reset / Mixin / Common
================================================= */
*:focus {
  outline: none;
}
/* =================================================
  Variables
================================================= */
/* =================================================
  Root
================================================= */
* {
  scroll-behavior: smooth;
}
:root {
  font-family: "Helvetica Neue", "游ゴシック Medium", "Yu Gothic Medium", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", Arial, "メイリオ", Meiryo, sans-serif !important;
  color: $text-normal;
}
html {
  width: 100%;
  height: 100%;
  background: #1e4b82;
}
body {
  width: 100%;
  height: 100%;
  -webkit-text-size-adjust: 100%;
}
/* =================================================
  Common
================================================= */
h1,
h2,
h3,
h4,
h5,
h6,
button {
  font-weight: 400;
}
picture img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  vertical-align: top;
}
ul li {
  list-style: none;
}
/* =================================================
  Layout
================================================= */
.layout {
  height: 100%;
  overflow: auto;
  background: url("../img/bg.svg") -30vmin center/contain no-repeat;
  background-attachment: fixed;
  opacity: 0;
  animation: fadein 0.5s linear 0s 1 forwards;
}
.nav .button a {
  display: grid;
  grid-template: auto auto/auto;
  grid-gap: 4px;
  text-decoration: none;
}
.nav .button .icon {
  display: none;
  width: 60px;
  height: 60px;
  margin: auto;
}
.nav .button .icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.nav .button .text {
  display: block;
  margin: auto;
  font-size: 0.8rem;
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.container {
  display: grid;
  grid-template: auto/repeat(auto-fill, 300px);
  grid-gap: 3rem;
  margin: auto;
  animation: fadein 0.5s linear 0.5s 1 forwards;
  opacity: 0;
}
.app .icon {
  width: 300px;
  height: 300px;
}
.app .icon a {
  display: grid;
  grid-gap: 0.5rem;
  align-content: center;
  justify-content: center;
  background-color: #fff;
  height: 100%;
  color: #000;
  text-decoration: none;
  border-radius: 10px;
  box-shadow: 0 0 30px rgba(0,0,0,0.5);
  cursor: pointer;
  transition: 0.2s linear;
}
.app .icon a .logo {
  margin: auto;
  width: 240px;
  height: 180px;
}
.app .icon a .logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.app .icon a .logo.off img {
  opacity: 0.2;
}
.app .icon a .name {
  font-size: 1.8rem;
  text-align: center;
  color: #1e4b82;
  line-height: 1.5;
}
.app .icon a .name span {
  display: block;
  font-size: 0.5em;
  line-height: 1.2;
}
.app .icon a:hover {
  transform: scale(1.05);
  box-shadow: 0 0 40px #21c4fd;
}
.app .text {
  color: #fff;
  font-size: 0.8rem;
  line-height: 1.8;
  margin-top: 0.6rem;
}
.app .video {
  aspect-ratio: 16/9;
  background: #000;
  margin-top: 0.6rem;
  border-radius: 8px;
  overflow: hidden;
  display: grid;
  align-items: center;
}
.app .video video {
  grid-row: 1;
  grid-column: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  cursor: pointer;
}
.app.disabled .icon a {
  pointer-events: none;
  box-shadow: 0 0 0 2px #3166a8 inset;
  background-color: #3166a8;
  position: relative;
}
.app.disabled .icon a .name {
  color: #fff;
}
.app.comingsoon {
  position: relative;
}
.app.comingsoon::after {
  content: '';
  display: grid;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background-color: #fff;
  border-radius: 80px;
  color: #fff;
  font-size: 0.9rem;
  text-align: center;
  line-height: 1.2;
  position: absolute;
  top: 0;
  right: 0;
  transform: translate(20px, -20px);
}
.app.comingsoon::after {
  content: '近日公開';
  background-color: #dc143c;
}
.app.coming {
  position: relative;
}
.app.coming::after {
  content: '';
  display: grid;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background-color: #fff;
  border-radius: 80px;
  color: #fff;
  font-size: 0.9rem;
  text-align: center;
  line-height: 1.2;
  position: absolute;
  top: 0;
  right: 0;
  transform: translate(20px, -20px);
}
.app.coming::after {
  content: '新登場';
  background-color: #dc143c;
}
.app.developing {
  position: relative;
}
.app.developing::after {
  content: '';
  display: grid;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background-color: #fff;
  border-radius: 80px;
  color: #fff;
  font-size: 0.9rem;
  text-align: center;
  line-height: 1.2;
  position: absolute;
  top: 0;
  right: 0;
  transform: translate(20px, -20px);
}
.app.developing::after {
  content: '試験中';
  background-color: #4b88e1;
}
.app.running {
  position: relative;
}
.app.running::after {
  content: '';
  display: grid;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background-color: #fff;
  border-radius: 80px;
  color: #fff;
  font-size: 0.9rem;
  text-align: center;
  line-height: 1.2;
  position: absolute;
  top: 0;
  right: 0;
  transform: translate(20px, -20px);
}
.app.running::after {
  content: '運用中';
  background-color: #4b88e1;
}
.app.update {
  position: relative;
}
.app.update::after {
  content: '';
  display: grid;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background-color: #fff;
  border-radius: 80px;
  color: #fff;
  font-size: 0.9rem;
  text-align: center;
  line-height: 1.2;
  position: absolute;
  top: 0;
  right: 0;
  transform: translate(20px, -20px);
}
.app.update::after {
  content: '新機能';
  background-color: #21c4fd;
}
.app.engine {
  position: relative;
}
.app.engine::after {
  content: '';
  display: grid;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background-color: #fff;
  border-radius: 80px;
  color: #fff;
  font-size: 0.9rem;
  text-align: center;
  line-height: 1.2;
  position: absolute;
  top: 0;
  right: 0;
  transform: translate(20px, -20px);
}
.app.engine::after {
  content: 'エンジン\A追加';
  background-color: #21c4fd;
  padding-top: 0.4em;
  white-space: pre-wrap;
}
.banner {
  padding: 10px;
  background: #4b7fbf;
  border-radius: 16px;
  max-width: 1020px;
}
.banner picture {
  display: block;
  border-radius: 10px;
  overflow: hidden;
img
}
#spmojiko {
  display: grid;
  grid-template: auto/auto 1fr;
  align-items: center;
  grid-gap: 2rem;
  margin-top: 0.8rem;
}
#spmojiko .box:first-child .picture {
  transform: rotate(-6deg);
}
#spmojiko .box:last-child {
  display: grid;
  grid-template: auto/max-content auto;
  align-items: center;
  justify-content: flex-start;
  grid-gap: 1rem 1rem;
}
#spmojiko .box:last-child .title {
  grid-column: span 2;
  color: #fff;
  border-bottom: 4px solid #4b88e1;
  width: fit-content;
  font-size: 1.8rem;
  font-weight: 400;
  letter-spacing: 1px;
}
#spmojiko .box:last-child .text {
  color: #fff;
  font-size: 0.9rem;
  line-height: 1.8;
}
#spmojiko .box:last-child .text .link {
  display: inline-block;
  margin: 0.2em;
  color: #fff;
  text-decoration: none;
  border-bottom: 1px dotted currentColor;
  line-height: 1.4;
}
#spmojiko .box:last-child .text .link:hover {
  color: #21c4fd;
}
.video-js {
  width: 100%;
  height: auto;
  background-color: transparent !important;
}
.video-js .vjs-tech {
  position: relative !important;
}
.video-js .vjs-big-play-button {
  display: none !important;
}
@media screen and (max-width: 1023px) {
  :root {
    font-size: 16px;
  }
  .layout-footer {
    margin-top: 3rem;
  }
  .layout-footer .nav {
    display: grid;
    grid-auto-flow: column;
    grid-gap: 1.5rem;
    justify-content: center;
    padding-bottom: 1rem;
  }
  #top.layout {
    height: auto;
  }
  #top.layout .layout-header {
    height: 100vh;
    margin-bottom: 10vh;
    position: relative;
  }
  #top.layout .layout-header::before {
    content: '';
    display: block;
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 100%;
    height: 105vh;
    background-image: url("../img/title-bg.svg");
    background-position: center top;
    background-size: 100% 100%;
  }
  #top.layout .layout-header::after {
    content: '';
    display: block;
    position: absolute;
    z-index: 1;
    left: 1rem;
    bottom: 0.5rem;
    width: 20px;
    height: 120px;
    background-image: url("../img/scroll.svg");
    background-position: center;
    background-size: contain;
    animation: scroll 1s ease infinite alternate;
  }
  #top.layout .layout-header .logo {
    height: 100%;
    margin: auto;
    overflow: hidden;
    position: relative;
  }
  #top.layout .layout-header .logo::before {
    content: '';
    display: block;
    position: absolute;
    z-index: 1;
    top: 14vh;
    right: 52vw;
    width: 32vh;
    height: 15vh;
    background-image: url("../img/title-cloud1.svg");
    background-position: center center;
    background-size: contain;
  }
  #top.layout .layout-header .logo::after {
    content: '';
    display: block;
    position: absolute;
    z-index: 1;
    bottom: 8vh;
    left: 59vw;
    width: 28vh;
    height: 14vh;
    background-image: url("../img/title-cloud2.svg");
    background-position: center center;
    background-size: contain;
  }
  #top.layout .layout-header .logo picture {
    display: block;
    height: 100%;
  }
  #top.layout .layout-header .logo picture img {
    object-fit: contain;
    object-position: top;
  }
  #top.layout .layout-header .nav {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
  }
  #top.layout .layout-header .nav .button .icon {
    display: grid;
    width: 2rem;
    height: 2rem;
  }
  #top.layout .layout-header .nav .button .text {
    font-size: 0.5rem;
    text-decoration: none;
  }
  #top.layout .layout-header .nav .button:nth-of-type(2) {
    display: none;
  }
@-moz-keyframes scroll {
    0% {
      opacity: 1;
      transform: translateY(-20px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
}
@-webkit-keyframes scroll {
    0% {
      opacity: 1;
      transform: translateY(-20px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
}
@-o-keyframes scroll {
    0% {
      opacity: 1;
      transform: translateY(-20px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
}
@keyframes scroll {
    0% {
      opacity: 1;
      transform: translateY(-20px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
}
  #top.layout .layout-main {
    padding: 0 0.5rem 3rem;
  }
  #top .container {
    grid-gap: 4rem 30px;
    justify-content: center;
  }
  #top .section + .section {
    margin-top: 4rem;
  }
  #top .section h2 {
    color: #fff;
    font-size: 1.6rem;
    width: fit-content;
    margin: auto;
    line-height: 1.6;
    border-bottom: 4px solid #21c4fd;
    border-bottom: 4px solid #21c4fd;
  }
  #top .section h3 {
    color: #fff;
    font-size: 1.2rem;
    margin-top: 1.5rem;
    margin-left: 0.5rem;
  }
  #top .section ul {
    margin-top: 0.5rem;
    margin-left: 0.5rem;
  }
  #top .section ul li {
    color: #fff;
    font-size: 0.8rem;
    line-height: 1.6;
  }
  #top .section ul li + li {
    margin-top: 0.2rem;
  }
  #top .section .container {
    margin-top: 2.5rem;
  }
  #privacy.layout {
    display: grid;
    grid-template: auto/minmax(auto, 800px);
    grid-gap: 2rem;
    padding: 0 0.5rem;
    justify-content: center;
    margin: auto;
    color: #fff;
    font-size: 0.8rem;
    height: auto;
  }
  #privacy.layout .layout-header {
    display: grid;
    grid-template: auto auto/auto;
    align-items: center;
  }
  #privacy.layout .layout-header .logo {
    padding: 1rem 0;
  }
  #privacy.layout .layout-header .logo .mark {
    width: 160px;
    height: 160px;
    margin: auto;
  }
  #privacy.layout .layout-header .logo .mark a {
    display: block;
  }
  #privacy.layout .layout-header .logo .mark img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  #privacy.layout .layout-header .logo h1 {
    font-size: 2rem;
    text-align: center;
  }
  #privacy.layout .layout-header .introduction p + p {
    margin-top: 0.5em;
  }
  #privacy.layout .layout-main {
    display: grid;
    grid-gap: 2rem;
  }
  #privacy.layout .layout-main h2 {
    font-size: 1rem;
    line-height: 2;
    text-decoration: underline;
    text-underline-offset: 0.3em;
    text-decoration-thickness: 2px;
  }
  #privacy.layout .section {
    counter-increment: heading;
  }
  #privacy.layout .section * + * {
    margin-top: 0.5rem;
  }
  #privacy.layout .section h3 {
    font-size: 1rem;
    line-height: 1.6;
    font-weight: 400;
    display: grid;
    grid-template: auto/auto 1fr;
    grid-gap: 0.5em;
  }
  #privacy.layout .section h3::before {
    content: counter(heading) '.';
    display: inline-block;
  }
  #privacy.layout .section h3 + .indent {
    margin-top: 0.5rem;
    margin-left: 1.5rem;
  }
  #privacy.layout .section h4 {
    margin-top: 1.5em;
    font-size: 1rem;
    line-height: 1.6;
  }
  #privacy.layout .section h4 + .indent {
    margin-top: 0.5rem;
    margin-left: 1rem;
  }
  #privacy.layout .section p + p {
    margin-top: 1em;
  }
  #privacy.layout .section ol {
    list-style-type: none;
  }
  #privacy.layout .section ol li {
    display: grid;
    grid-template: auto/auto 1fr;
    grid-gap: 0.5em;
    line-height: 1.8;
    counter-increment: item;
  }
  #privacy.layout .section ol li::before {
    content: counter(item);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.2em;
    height: 1.2em;
    background-color: #fff;
    border-radius: 100%;
    color: #000;
    margin-top: 0.3em;
  }
  #privacy.layout .section ul {
    padding-left: 1em;
  }
  #privacy.layout .section ul li {
    list-style-type: disc;
  }
  #privacy.layout .section dl dt + dd {
    margin-top: 0.5rem;
  }
  #privacy.layout .section dl.column {
    display: grid;
    grid-template: auto/auto 1fr;
    grid-gap: 1em;
  }
  #privacy.layout .section dl.column dt,
  #privacy.layout .section dl.column dd {
    margin-top: 0;
  }
}
@media screen and (min-width: 1024px) {
  :root {
    font-size: 20px;
  }
  .layout-footer {
    margin-top: 3rem;
  }
  .layout-footer .nav {
    display: grid;
    grid-auto-flow: column;
    grid-gap: 2rem;
    justify-content: center;
    padding-bottom: 1rem;
  }
  #top.layout {
    display: grid;
    grid-template: auto/auto 1fr;
  }
  #top.layout .layout-header {
    display: grid;
    grid-template: calc(100vh - 125px) 125px/auto;
  }
  #top.layout .layout-header .logo picture {
    display: block;
    height: 100%;
    max-height: 720px;
  }
  #top.layout .layout-header .nav {
    padding-top: 1rem;
  }
  #top.layout .layout-header .nav .button + .button {
    margin-top: 0.5em;
  }
  #top.layout .layout-main {
    overflow: auto;
    padding: 2rem;
  }
  #top.layout .layout-footer {
    display: none;
  }
  #top .section + .section {
    margin-top: 4rem;
  }
  #top .section h2 {
    color: #fff;
    font-size: 1.6rem;
    width: fit-content;
    line-height: 1.6;
    border-bottom: 4px solid #21c4fd;
  }
  #top .section h3 {
    color: #fff;
    font-size: 1.2rem;
    margin-top: 1.5rem;
  }
  #top .section ul {
    margin-top: 0.5rem;
  }
  #top .section ul li {
    color: #fff;
    font-size: 0.8rem;
    line-height: 1.6;
  }
  #top .section ul li + li {
    margin-top: 0.2rem;
  }
  #top .section .container {
    margin-top: 2rem;
  }
  #privacy.layout {
    display: grid;
    grid-template: auto/minmax(auto, 1000px);
    grid-gap: 3rem;
    justify-content: center;
    margin: auto;
    color: #fff;
    font-size: 0.8rem;
    height: auto;
  }
  #privacy.layout .layout-header {
    display: grid;
    grid-template: auto auto/auto;
    align-items: center;
  }
  #privacy.layout .layout-header .logo {
    padding: 2rem 0;
  }
  #privacy.layout .layout-header .logo .mark {
    width: 200px;
    height: 200px;
    margin: auto;
  }
  #privacy.layout .layout-header .logo .mark a {
    display: block;
  }
  #privacy.layout .layout-header .logo .mark img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  #privacy.layout .layout-header .logo h1 {
    font-size: 2.4rem;
    text-align: center;
  }
  #privacy.layout .layout-header .introduction p + p {
    margin-top: 0.5em;
  }
  #privacy.layout .layout-main {
    display: grid;
    grid-gap: 3rem;
  }
  #privacy.layout .layout-main h2 {
    font-size: 1.6rem;
    line-height: 2;
    text-decoration: underline;
    text-underline-offset: 0.3em;
    text-decoration-thickness: 2px;
  }
  #privacy.layout .section {
    counter-increment: heading;
  }
  #privacy.layout .section * + * {
    margin-top: 0.5rem;
  }
  #privacy.layout .section h3 {
    font-size: 1.2rem;
    line-height: 2;
    font-weight: 400;
    display: grid;
    grid-template: auto/auto 1fr;
    grid-gap: 0.5em;
  }
  #privacy.layout .section h3::before {
    content: counter(heading) '.';
    display: inline-block;
  }
  #privacy.layout .section h3 + .indent {
    margin-top: 0.5rem;
    margin-left: 1.8rem;
  }
  #privacy.layout .section h4 {
    margin-top: 1.5em;
    font-size: 1rem;
  }
  #privacy.layout .section h4 + .indent {
    margin-top: 0.5rem;
    margin-left: 1rem;
  }
  #privacy.layout .section p + p {
    margin-top: 1em;
  }
  #privacy.layout .section ol {
    list-style-type: none;
  }
  #privacy.layout .section ol li {
    display: grid;
    grid-template: auto/auto 1fr;
    grid-gap: 0.5em;
    line-height: 1.8;
    counter-increment: item;
  }
  #privacy.layout .section ol li::before {
    content: counter(item);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.2em;
    height: 1.2em;
    background-color: #fff;
    border-radius: 100%;
    color: #000;
    margin-top: 0.3em;
  }
  #privacy.layout .section ul {
    padding-left: 1em;
  }
  #privacy.layout .section ul li {
    list-style-type: disc;
  }
  #privacy.layout .section dl dt + dd {
    margin-top: 0.5rem;
  }
  #privacy.layout .section dl.column {
    display: grid;
    grid-template: auto/auto 1fr;
    grid-gap: 1em;
  }
  #privacy.layout .section dl.column dt,
  #privacy.layout .section dl.column dd {
    margin-top: 0;
  }
}
@-moz-keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-o-keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
