@charset "UTF-8";
html {
  font-size: 10px;
}

body {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 2.1rem;
  font-weight: 500;
  background-image: url(../img/bg.png);
  background-repeat: repeat;
  color: #222222;
  position: relative;
  /*htmlでベースを10pxにして、それを元に16px相当を指定*/
}

html,
body,
header,
footer {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

article > p {
  line-height: 2;
}
article > p span {
  display: inline-block;
}

br.mb {
  display: none;
}

.wrapper {
  position: relative;
  padding: 0 2rem;
}

article.contents {
  position: relative;
  max-width: 950px;
  background-color: #fafdfe;
  text-align: center;
  margin: -5.5rem auto -250px auto;
  padding: 73px 3rem 1rem;
  box-sizing: border-box;
  border-radius: 50px;
}

* {
  transition: all 0.4s ease;
}

h2 {
  position: relative;
  display: block;
  width: 100%;
  text-align: center;
  color: #0571b2;
  font-size: 4rem;
  margin: 5rem auto 0;
  font-weight: 500;
}

h2 + p {
  display: block;
  margin: 0 auto;
  width: 100%;
  line-height: 1;
}

h2::after {
  content: "";
  display: block;
  max-width: 719px;
  height: 8px;
  background-image: url(../img/underline.png);
  background-repeat: repeat;
  border-radius: 4px;
  margin: -8px auto 10px;
}

section {
  padding-bottom: 20px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  padding: 4px 0;
  margin: 0 auto 5.8rem;
}
section a {
  margin: 0 2.8%;
}
section p {
  margin: 0.8rem auto;
}
section div.screenshot {
  position: relative;
  height: 211px;
}
section div.screenshot img {
  position: relative;
  z-index: 999;
  border: solid #66abec 4px;
  border-radius: 4px;
  box-sizing: border-box;
  max-width: 100%;
  opacity: 0; /* 初期状態で非表示 */
  transform: translateY(5%); /* 左に隠す */
  transition: opacity 0.8s ease-in-out, transform 0.5s ease-in-out; /* アニメーションの設定 */
}
section div.screenshot img.visible {
  opacity: 1; /* 表示 */
  transform: translateY(0); /* 元の位置に戻す */
}
section div.screenshot::after {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  max-width: 100%;
  height: 100%;
  background-image: url(../img/underline.png);
  background-repeat: repeat;
  border-radius: 4px;
  top: 10px;
  left: 10px;
}
section dl {
  display: block;
  text-align: left;
  max-width: 772px;
  width: 100%;
  line-height: 1.9;
}
section dl dt {
  display: block;
}
section dl dd {
  position: relative;
  display: block;
  margin: 3px 25px 0;
  top: 50%;
  transform: translate(0%, -53%);
  line-height: 1.85;
}
section dl:nth-of-type(odd) dt {
  float: left;
}
section dl:nth-of-type(odd) dd {
  float: left;
  text-align: left;
}
section dl:nth-of-type(even) dt {
  float: right;
}
section dl:nth-of-type(even) dd {
  float: right;
  text-align: right;
}

#logo {
  position: relative;
  margin: 5rem auto 0;
  text-align: center;
  z-index: 999;
}
#logo img {
  max-width: 750px;
  width: 100%;
}

#abst {
  margin-bottom: 3.5rem;
}
#abst h2 {
  display: block;
  position: relative;
  width: 769px;
  height: 217px;
}
#abst h2::after {
  content: none;
  display: none;
}
#abst span {
  display: block;
  position: absolute;
  margin: auto;
}
#abst span:nth-of-type(1) {
  width: 205px;
  height: 102px;
  top: 16px;
  left: 27px;
}
#abst span:nth-of-type(2) {
  width: 269px;
  height: 120px;
  top: 10px;
  right: 0;
  bottom: 0;
  left: 13px;
}
#abst span:nth-of-type(3) {
  width: 246px;
  height: 151px;
  bottom: 0;
  right: -1px;
}
#abst span:nth-of-type(1)::before {
  content: url(../img/text_abst_deco_1.png);
  display: block;
  position: absolute;
  z-index: 1;
  margin: auto;
  width: 260px;
  height: 159px;
  top: -21px;
  left: -26px;
}
#abst span:nth-of-type(2)::before {
  content: url(../img/text_abst_deco_2.png);
  display: block;
  position: absolute;
  z-index: 1;
  line-height: 1;
  margin: auto;
  width: 57px;
  height: 31px;
  top: -21px;
  right: 129px;
  transform: rotate(38deg);
}
#abst span:nth-of-type(3)::before {
  content: url(../img/text_abst_deco_3.png);
  display: block;
  position: absolute;
  z-index: 1;
  margin: auto;
  width: 34px;
  height: 34px;
  top: -8px;
  left: 97px;
}
#abst img {
  display: block;
  position: absolute;
  z-index: 99;
  margin: auto;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
#abst p {
  display: block;
  margin: 3.3rem auto 0;
  line-height: 1.78;
  font-size: 2.6rem;
}

.contents > #abst:first-child h2 {
  margin-top: 0rem;
}

#summary {
  margin: 0 auto 4.8rem;
}
#summary h2 {
  margin: 5rem auto 2.5rem;
}
#summary div.screenshot {
  height: 297px;
}

.contents > #summary:first-child h2 {
  margin: 1rem auto 2.5rem;
}

#talk h2 + p {
  font-size: 2.6rem;
}

#colorpick {
  margin-bottom: 2.5rem;
}
#colorpick dl {
  margin: 4.5rem 0 -0.6rem;
}
#colorpick dl dd {
  margin-top: -4px;
}

#painting {
  margin-bottom: 0.4rem;
}
#painting p {
  position: relative;
  font-size: 2.3rem;
  line-height: 1.7;
  margin-top: 2.2rem;
}
#painting dl {
  margin: 16px auto 0;
  text-align: center;
  width: 100%;
  max-width: 100%;
}
#painting dl dt, #painting dl dd {
  display: inline-block;
  float: none;
  text-align: center;
  margin: 0 1.4rem;
  transform: none;
  top: 0;
}

#memory {
  margin-bottom: 7rem;
}
#memory p {
  margin: 2rem 0 0;
  line-height: 1.9;
}
#memory dl {
  max-width: 100%;
}
#memory dl dt {
  height: 81px;
  line-height: 4;
  text-align: center;
  font-size: 2.2rem;
}
#memory dl:nth-of-type(odd) {
  width: 769px;
  margin: 23px 0 0 46px;
}
#memory dl:nth-of-type(odd) dt {
  width: 456px;
  background: url(../img/base_memory_00.png) no-repeat;
  text-indent: -2rem;
}
#memory dl:nth-of-type(odd) dd {
  margin-left: 14px;
}
#memory dl:nth-of-type(even) {
  width: 844px;
  margin: 8px 27px 0 0;
}
#memory dl:nth-of-type(even) dt {
  width: 517px;
  background: url(../img/base_memory_01.png) no-repeat;
  text-indent: 2rem;
}
#memory dl:nth-of-type(even) dd {
  margin: 9px 0 0 0;
  width: 298px;
  text-align: left;
}

#info {
  transition: none;
  max-width: 825px;
  margin: 0 auto 3rem;
}
#info * {
  transition: none;
}
#info div {
  border: solid #9ee4ff 10px;
  border-radius: 20px;
  padding: 1.3rem 0 1.6rem;
}
#info dl {
  margin: 0;
  font-size: 2.2rem;
  line-height: 1;
}
#info dt {
  display: inline-block;
  width: 140px;
  margin: 0 -2rem 0 0;
  transform: none;
  float: none;
  text-align: left;
  padding: 0 0 0 30px;
  line-height: 1.75;
}
#info dd {
  display: inline-block;
  margin: 0 2rem;
  top: 0;
  transform: none;
  float: none;
  text-align: left;
  min-width: 416px;
  line-height: 1.75;
}

#pageTop {
  position: sticky;
  bottom: 10px;
  left: 100%;
  width: 69px;
  height: 311px;
  transform: translate(-1rem, 170px);
  transition: 0.6s all;
}
#pageTop img {
  width: 100%;
  max-width: 100%;
}

#pageTop:hover {
  transform: translate(-1rem, 145px);
}

#pageTop.hide {
  bottom: -300px;
}

section.DL-link {
  margin: 0 auto;
}

.message {
  display: block;
  margin: 0.5rem auto 1rem;
  padding: 0 0 0 1rem;
  max-width: 90%;
}

.deco {
  position: absolute;
  display: block;
  z-index: 999;
}

.deco.character00 {
  right: -137px;
  bottom: -56px;
}

.deco.brush {
  top: -16px;
  left: 73px;
}

.deco.bucket {
  top: -8px;
  right: 41px;
}

.deco.star {
  top: -20px;
  left: 305px;
}

.deco.heart {
  top: 66px;
  left: 345px;
}

.deco.ink {
  top: -64px;
  left: -167px;
}

.deco.camera {
  top: -36px;
  left: 30px;
}

.deco.rocket {
  top: 16px;
  right: 45px;
}

.deco.kirakira {
  top: 30px;
  left: 29px;
}

/* フッター */
.foot {
  position: relative;
  text-align: center;
  margin: 0 auto;
  padding: 10px 0;
  background-color: rgb(255, 255, 255);
  border-top: 1px solid #fff;
  font-family: "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "游ゴシック Medium", "游ゴシック", "Yu Gothic Medium", YuGothic, "メイリオ", Meiryo, sans-serif;
}
.foot__corp-icon {
  display: inline-block;
  margin: 0 auto 15px;
}
.foot__corp-icon_img {
  width: 220px;
}
.foot__nav-list {
  display: flex;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0;
}
.foot__nav-list_item {
  margin: 0 1vw;
}
.foot__nav-list_item_link {
  color: #21898f;
  font-size: 1.8rem;
  font-weight: bold;
  text-decoration: none;
}
.foot__nav-list_item_link:hover {
  color: #35d1da;
  text-decoration: underline;
}
.foot__copyright {
  color: #21898f;
  text-align: center;
  margin-top: 10px;
}

@media screen and (max-width: 1000px) {
  /* 1200px以下に適用されるCSS（タブレット用） */
  br.mb1200 {
    display: inline;
  }
  h2 {
    font-size: 3rem;
  }
  h2, p, h2 + p {
    line-height: 1.2;
  }
  h2::after {
    margin: 0px auto 10px;
  }
  #pageTop {
    bottom: -300px;
    opacity: 0;
    transition: 1s;
    pointer-events: none;
  }
  section.DL-link img {
    max-width: 90%;
  }
  .message {
    padding-bottom: 2rem;
  }
  .deco {
    opacity: 0;
    transition: 1s;
    width: 0;
    height: 0;
  }
  .screenshot {
    height: auto;
  }
  article.contents section,
  #colorpick {
    margin-bottom: 0;
  }
  article.contents section dl, article.contents section dt, article.contents section dd,
  #colorpick dl,
  #colorpick dt,
  #colorpick dd {
    float: none;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: block;
    margin: 0 auto 1rem;
    max-width: 100%;
    text-align: center;
    transform: none;
    line-height: 1.2;
  }
  article.contents section dl .screenshot, article.contents section dt .screenshot, article.contents section dd .screenshot,
  #colorpick dl .screenshot,
  #colorpick dt .screenshot,
  #colorpick dd .screenshot {
    display: inline-block;
    padding: 0;
    height: auto;
  }
  section div.screenshot::after {
    display: none;
  }
  article.contents section#summary {
    margin: 0 auto 2rem;
  }
  article.contents section#summary .screenshot {
    height: auto;
  }
  #abst p {
    font-size: 2.2rem;
  }
  #painting p {
    line-height: 1.2;
  }
  article.contents section#memory {
    width: 100%;
    max-width: 100%;
  }
  article.contents section#memory p {
    line-height: 1.2;
  }
  article.contents section#memory dl, article.contents section#memory dt, article.contents section#memory dd, article.contents section#memory div {
    text-align: center;
    width: 100%;
    max-width: 100%;
    display: block;
    margin: 0;
    padding: 0;
  }
  article.contents section#memory dt {
    background: url(../img/base_memory_02.png) no-repeat;
    background-size: 100% 100%;
    padding: 2.2rem 2rem 2rem;
    margin: 0 auto;
    line-height: 1.2;
    text-indent: 0;
    width: 90%;
    max-width: 400px;
    height: auto;
  }
  article.contents section#memory dd {
    min-width: 0;
    text-indent: 0;
    line-height: 1;
  }
  .foot__nav-list {
    width: 100%;
    display: block;
  }
  #comingsoon div.wrapper {
    bottom: 299px;
  }
}
br.mb860 {
  display: none;
}

@media screen and (max-width: 860px) {
  br.mb860 {
    display: inline;
  }
  #abst h2 {
    display: inline-block;
    max-width: 100%;
    height: auto;
    word-break: break-all;
  }
  #abst span:nth-of-type(1),
  #abst span:nth-of-type(2),
  #abst span:nth-of-type(3) {
    display: block;
    position: relative;
    margin: 0 auto;
    line-height: 1;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    max-width: 100%;
  }
  #abst span:nth-of-type(1) {
    float: left;
    margin-left: 50px;
  }
  #abst span:nth-of-type(2) {
    float: none;
    margin-top: 150px;
  }
  #abst span:nth-of-type(3) {
    float: right;
    margin-right: 50px;
  }
}
br.mb760 {
  display: none;
}

@media screen and (max-width: 760px) {
  br.mb760 {
    display: inline;
  }
  article.contents section#info {
    width: 100%;
    max-width: 100%;
  }
  article.contents section#info dl, article.contents section#info dt, article.contents section#info div {
    text-align: left;
    width: 100%;
    max-width: 100%;
    margin: 0;
  }
  article.contents section#info dt {
    padding-left: 1rem;
    font-weight: bold;
  }
  article.contents section#info dd {
    text-align: left;
    margin-bottom: 1rem;
    max-width: 100%;
    min-width: 0;
    text-indent: 0;
    line-height: 1;
  }
}
span.mb637 {
  display: inline;
}

br.mb637 {
  display: none;
}

@media screen and (max-width: 637px) {
  span.mb637 {
    display: none;
  }
  br.mb637 {
    display: inline;
  }
  p {
    line-height: 1.2;
  }
  article.contents {
    padding: 73px 1rem 1rem;
  }
  #abst p {
    margin: 0 auto;
    line-height: 1.2;
  }
  #abst span:nth-of-type(1),
  #abst span:nth-of-type(2),
  #abst span:nth-of-type(3) {
    float: none;
    margin: 0 auto;
    transform: scale(0.8);
  }
  #abst span:nth-of-type(1) {
    margin-bottom: 23px;
  }
  #abst span:nth-of-type(2) {
    margin-bottom: 7px;
  }
  #abst span:nth-of-type(3) {
    top: -26px;
  }
}
@media screen and (max-width: 490px) {
  br.mb490 {
    display: inline;
  }
}
#comingsoon .wrapper {
  padding: 0;
  position: fixed;
  bottom: 205px;
  left: 0;
  right: 0;
  top: 0;
}
#comingsoon h1 {
  display: block;
  text-align: center;
  position: absolute;
  margin: 0 auto;
  left: 0;
  right: 0;
  top: 50%;
  transform: translate(0, -2em);
}
#comingsoon h2 {
  font-size: 4rem;
}
#comingsoon h2::after {
  max-width: 90%;
}
#comingsoon .contents {
  margin: 0 auto;
  padding: 0;
  min-height: 385px;
  position: absolute;
  width: 950px;
  max-width: 90%;
  left: 0;
  right: 0;
  top: 50%;
  transform: translate(0, -50%);
}
#comingsoon .deco.palette {
  display: block;
  opacity: 1;
  width: auto;
  height: auto;
  left: 0;
  right: 0;
  top: 50%;
  margin: 0 auto;
  transform: translate(0, -6px);
}
#comingsoon footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
}

@media screen and (max-height: 900px) {
  body {
    min-height: 900px;
  }
  #comingsoon .wrapper,
  #comingsoon footer {
    position: absolute;
  }
}/*# sourceMappingURL=common.css.map */