@charset "UTF-8";

* {
  margin: 0;
  padding: 0;
  color: #fff;
  box-sizing:border-box;
  touch-action: manipulation;
}

html {
  overflow-x: hidden;
  touch-action: manipulation;
}

/* ローディング画面 */
#loading {
  /* 画面一杯にローディング画面を広げる */
  height: 100%;
  width: 100%;
  background: #00aaff;
  position: fixed;
  top: 0px;
  left: 0px;
  z-index: 2000;
  /* flexboxを使ってローディングアイコンを画面の中央に寄せる */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

/* ローディングアイコン */
.fa-redo-alt {
  font-size: 100px;
  color: #fff;
}

p,
ul li,
h1 {
  font-family: 'Lobster', cursive;
  font-size: 1.7rem;
}


#wrap {
  width: 1100px;
  margin: 0 auto;
  top: 0;
}

#side {
  position: absolute;
  min-height: 100vh;
  width: 50px;
  margin: 0;
}

#nav {
  top: 1.5rem;
  position: fixed;
  width: 50px;
  background: #009fee;
  z-index: 1;
}

#nav li {
  list-style-type: none;
  text-align: center;
}

#nav li a {
  font-size: 1.4rem;
  padding: 0;
  display: block;
  border: 1px solid #ccc;
  text-decoration: none;
}

#nav li:hover {
  background: #6cf;
}

/*スマホのナビ非表示、背景色*/
@media (max-width: 700px) {
  #nav {
    display: none;
  }

  article:nth-child(odd) {
   background-color: #00aaff;
 }

 article:nth-child(even) {
     background-color: #3b82c4;
 }
 article:nth-of-type(1) {
     background-color: #3b82c4;
 }

 /* article:nth-of-type(11) {
     background-color: #fff;
 } */
 article:nth-of-type(13) {
     background-color: #de4d4d;
 }
 /* article:nth-of-type(22) {
     background-color: #fff;
 } */
}
/* スマホ閉じ */



/* タイトル画面 */
.titleScreen {
  top: 0;
  width: 1020px;
  min-height: 100vh;
  text-align: center;
  /* background: #3b82c4; */
  margin: 0 auto;
  font-family: 'Lobster', cursive;
}

.titleScreen h1 {
  width: 1020px;
  font-size: 70px;
  font-weight: bold;
  text-align: center;
  top: 4rem;
  color: #00aaff;
  margin: 0 auto;
  position: absolute;
}

.titleScreen p {
  width: 1020px;
  font-size: 40px;
  font-style: bold;
  text-align: center;
  top: 9rem;
  color: #f9e900;
  margin: 0 auto;
  position: absolute;
}

.mobileMsg {
  position: absolute;
  text-align: left;
  top: 11rem;
  color: #00aaff;
  font-size: 2.1rem;
}

/* ３D文字 */
/* .threeD, .titleScreen h1 {
  text-shadow: 0 1px 1px #bbb,
    0 2px 0 #999,
    0 3px 0 #888,
    0 4px 0 #777,
    0 5px 0 #666,
    0 6px 0 #555,
    0 7px 0 #444,
    0 8px 0 #333,
    0 9px 7px #302314;
} */
/* ナビゲーションメニュー */
.fa-bars {
  color: #f67690;
  font-size: 3rem;
}

.btn-menu {
  position: absolute;
  /* top: 22px; */
  top: 0;
  right: 200px;
  padding: .5rem 1rem;
  z-index: 4;
}

.main-nav {
  background: var(--grey);
  width: 0;
  position: absolute;
  z-index: 2;
  top: 0;
  right: 205px;
  overflow: hidden;
  min-height: 100vh;
  transition: .5s;
}

.main-nav li {
  text-align: center;
  margin: 2rem 0;
  padding: .8rem 0;
}

.main-nav a {
  display: block;
}

.main-nav.open-menu {
  width: 35%;
}

/*ナビメニュー のイメージ画像 */
.main-nav img {
  height: 8rem;
  width: 8rem;
}

/* メニュー以外の画面（クリックしたら閉じる） */
.outBg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  cursor: pointer;
}

/* ナビメニュースマホ */
@media (max-width: 700px) {
  .btn-menu {
    position: absolute;
    top: 0;
    right: -34rem;
    padding: .5rem .5rem;
    z-index: 4;
  }

  .fa-bars {
    color: #f67690;
    font-size: 3rem;
  }

  .main-nav {
    background: var(--grey);
    width: 0;
    position: absolute;
    z-index: 2;
    top: 0;
    right: -40rem;
    overflow: hidden;
    min-height: 100vh;
    transition: .5s;
  }

  .main-nav li {
    text-align: center;
    padding: 2rem 0 1rem 0;
    margin: 1.3rem 0;
    font-size: 2.5rem;
  }

  .main-nav a {
    display: block;
  }

  .main-nav.open-menu {
    width: 40rem;
  }

  /*ナビメニュー のイメージ画像 */
  .main-nav img {
    height: 7rem;
    width: 7rem;
  }
}

/*スマホ閉じ*/
.startButtonWrap {
  top: 17rem;
  position: relative;
}

.startButton {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  -webkit- transform: translateY(-50%) translateX(-50%);
  border-radius: 5%;
  font-size: 22pt;
  text-align: center;
  /* cursor: pointer; */
  padding: 14px 46px;
  background: #00aaff;
  color: #ffffff;
  line-height: 1;
  transition: .3s;
  box-shadow: 6px 6px 3px #666666;
  border: 2px solid #00aaff
}

.startButton:hover {
  box-shadow: none;
  color: #00aaff;
  background: #ffffff;
}

/* タイトル画面キーボード */
.keyboardWrap {
  position: relative;
  top: 30rem;
}

.keyboardBox {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  -webkit- transform: translateY(-50%) translateX(-50%);
  text-align: center;
  width: 640px;
  height: 250px;
  padding: 1em;
  margin: 0 auto;
  font-weight: bold;
  background: #dddddd;
  border: solid 3px #000;
  border-radius: 10px;
}

/* タイトル画面キーボード */
.keyboard {
  height: 41px;
  min-width: 20px;
  padding: 0 10px;
  margin: 5px 10px;
  background: #EDEDED;
  border-radius: 10px;
  box-shadow: 0px 1px 3px 1px rgba(0, 0, 0, 0.5);
  color: #808080;
  font: bold 18px arial;
  text-align: center;
  line-height: 2.5;
  display: inline-block;
}

/* スマホ用キーボード */
@media (max-width: 700px) {

  /* .mbKeyboard {
    touch-action: manipulation;
  } */
  .fa-redo-alt {
    font-size: 2.7rem;
    color: #808080;
  }

  .fa-thumbs-up {
    font-size: 6rem;
    color: #00aaff;
  }

  .keyboardWrapMb {
    position: relative;
    bottom: 0;
  }

  .keyboardBoxMb {
    position: absolute;
    position: fixed;
    text-align: center;
    width: 1020px;
    max-height: 45%;
    padding: 1em;
    bottom: 0;
    margin: 0 auto;
    font-weight: bold;
    background: #dddddd;
    border: solid 3px #000;
    border-radius: 10px;
    touch-action: manipulation;
    display: inline-block;
    z-index: 100;
  }

  /* スマホ用キーボード Mb*/
  .keyboardMb {
    height: 120px;
    min-width: 75px;
    padding: 0 0 0 0;
    margin: .7rem .5rem .7rem .5rem;
    background: #EDEDED;
    border-radius: 10px;
    box-shadow: 0px 1px 3px 1px rgba(0, 0, 0, 0.5);
    color: #808080;
    font: bold 42px arial;
    text-align: center;
    line-height: 3;
    display: inline-block;
    touch-action: manipulation;
    z-index: 100;
  }
}

/*スマホ用キーボード閉じ*/
/* 手のいいねボタン押したら色変わる */
.thumbsUpColor {
  background: #000;
}

/* keyPress-A box1 */
.box1 {
  width: 1020px;
  padding: 20px;
  font-weight: bold;
  /* background: #f9e900; */
  min-height: 100vh;
  margin: 0 auto;
  text-align: center;
}
.box1 video {
  width: 960px;
  height: 90vh;
  outline: none;
  margin-top: -2.7rem;
}

.displayHide {
  display: none;
}

.title {
  font-family: 'Lobster', cursive;
  font-size: 5rem;
}

.titleArea {
  padding-top: 12rem;
  height: 500px;
  text-align: center;
}



/* keyPress-B box2 */
.areaB {
  display: grid;
  display: none;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 170px;
}

.active1 {
  background-color: red;
  color: white;
}

/* Bボタンホバー 元 */
.buttonB {
  display: inline-block;
  /* width: 200px; */
  height: 100px;
  text-align: center;
  text-decoration: none;
  line-height: 1.9;
  outline: none;
  margin-top: 0;
}

.buttonB::before,
.buttonB::after {
  position: absolute;
  z-index: -1;
  display: block;
  content: '';
}

.buttonB,
.buttonB::before,
.buttonB::after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all .3s;
  transition: all .3s;
}

/* Bボタンホバー */
.buttonB {
  border: 1px solid #0093dd;
  background-color: #00aaff;
  background-image: -webkit-linear-gradient(top, #22b5ff, #0093dd);
  background-image: linear-gradient(to bottom, #22b5ff, #0093dd);
  border-radius: 4px;
  color: #fff;
  line-height: 1.9;
  -webkit-transition: none;
  transition: none;
  text-shadow: 0 1px 1px rgba(0, 0, 0, .3);
}

.buttonB:hover {
  border: 1px solid #1090c3;
  background-color: #3bf;
  background-image: -webkit-linear-gradient(top, #55c6ff, #11b0ff);
  background-image: linear-gradient(to bottom, #55c6ff, #11b0ff);
}

.buttonB:active {
  background: #55c6ff;
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, .2);
  color: #3bf;
  text-shadow: 0 1px 1px rgba(255, 255, 255, .5);
}

/* BBボタンホバー 元 */
.buttonBB {
  display: inline-block;
  /* width: 200px; */
  height: 100px;
  text-align: center;
  text-decoration: none;
  line-height: 1.9;
  outline: none;
  margin-top: 0;
}

.buttonBB::before,
.buttonBB::after {
  position: absolute;
  z-index: -1;
  display: block;
  content: '';
}

.buttonBB,
.buttonBB::before,
.buttonBB::after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all .3s;
  transition: all .3s;
}

/* BBボタンホバー */
.buttonBB {
  border: 1px solid #0093dd;
  background-color: #00aaff;
  background-image: -webkit-linear-gradient(top, #22b5ff, #0093dd);
  background-image: linear-gradient(to bottom, #22b5ff, #0093dd);
  border-radius: 4px;
  color: #fff;
  line-height: 1.9;
  -webkit-transition: none;
  transition: none;
  text-shadow: 0 1px 1px rgba(0, 0, 0, .3);
}

.buttonBB:hover {
  border: 1px solid #1090c3;
  background-color: #3bf;
  background-image: -webkit-linear-gradient(top, #55c6ff, #11b0ff);
  background-image: linear-gradient(to bottom, #55c6ff, #11b0ff);
}

.buttonBB:active {
  background: #55c6ff;
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, .2);
  color: #3bf;
  text-shadow: 0 1px 1px rgba(255, 255, 255, .5);
}

/* BBBボタンホバー 元 */
.buttonBBB {
  display: inline-block;
  /* width: 200px; */
  height: 100px;
  text-align: center;
  text-decoration: none;
  line-height: 1.9;
  outline: none;
  margin-top: 0;
}

.buttonBBB::before,
.buttonBBB::after {
  position: absolute;
  z-index: -1;
  display: block;
  content: '';
}

.buttonBBB,
.buttonBBB::before,
.buttonBBB::after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all .3s;
  transition: all .3s;
}

/* BBBボタンホバー */
.buttonBBB {
  border: 1px solid #0093dd;
  background-color: #00aaff;
  background-image: -webkit-linear-gradient(top, #22b5ff, #0093dd);
  background-image: linear-gradient(to bottom, #22b5ff, #0093dd);
  border-radius: 4px;
  color: #fff;
  line-height: 1.9;
  -webkit-transition: none;
  transition: none;
  text-shadow: 0 1px 1px rgba(0, 0, 0, .3);
}

.buttonBBB:hover {
  border: 1px solid #1090c3;
  background-color: #3bf;
  background-image: -webkit-linear-gradient(top, #55c6ff, #11b0ff);
  background-image: linear-gradient(to bottom, #55c6ff, #11b0ff);
}

.buttonBBB:active {
  background: #55c6ff;
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, .2);
  color: #3bf;
  text-shadow: 0 1px 1px rgba(255, 255, 255, .5);
}

.box2 {
  width: 1020px;
  /* max-width: 100%; */
  padding: 20px;
  /* background: #3b82c4; */
  height: 170px;
  margin: 0 auto;
  text-align: center;
}

.bgColorB {
  background: #f9e900;
}

.bgColorBB {
  background: #f67690;
}

.bgColorBBB {
  background: #00aaff;
}

/* keyPress-C box3 */
.areaC {
  display: grid;
  display: none;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 170px;
}

/* ボタンホバーC 元*/
.buttonC {
  display: inline-block;
  /* width: 200px; */
  height: 100px;
  text-align: center;
  text-decoration: none;
  line-height: 3.5;
  outline: none;
  margin-top: 0;
}

.buttonC::before,
.buttonC::after {
  position: absolute;
  z-index: -1;
  display: block;
  content: '';
}

.buttonC,
.buttonC::before,
.buttonC::after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all .3s;
  transition: all .3s;
}

/* ボタンホバー　C */
.buttonC {
  position: relative;
  background-color: #f5a500;
  border-radius: 4px;
  color: #fff;
  line-height: 3.5;
  -webkit-transition: none;
  transition: none;
  box-shadow: 0 3px 0 #d38e00;
  text-shadow: 0 1px 1px rgba(0, 0, 0, .4);
}

.buttonC:hover {
  top: -4px;
  box-shadow: 0 7px 0 #d38e00;
}

.buttonC:active {
  top: 3px;
  box-shadow: none;
}

/* ボタンホバー CC 元*/
.buttonCC {
  display: inline-block;
  /* width: 200px; */
  height: 100px;
  text-align: center;
  text-decoration: none;
  line-height: 3.5;
  outline: none;
  margin-top: 0;
}

.buttonCC::before,
.buttonCC::after {
  position: absolute;
  z-index: -1;
  display: block;
  content: '';
}

.buttonCC,
.buttonCC::before,
.buttonCC::after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all .3s;
  transition: all .3s;
}

/* ボタンホバー　CC */
.buttonCC {
  position: relative;
  background-color: #f5a500;
  border-radius: 4px;
  color: #fff;
  line-height: 3.5;
  -webkit-transition: none;
  transition: none;
  box-shadow: 0 3px 0 #d38e00;
  text-shadow: 0 1px 1px rgba(0, 0, 0, .4);
}

.buttonCC:hover {
  top: -4px;
  box-shadow: 0 7px 0 #d38e00;
}

.buttonCC:active {
  top: 3px;
  box-shadow: none;
}

/* ボタンホバー CCC 元*/
.buttonCCC {
  display: inline-block;
  /* width: 200px; */
  height: 100px;
  text-align: center;
  text-decoration: none;
  line-height: 3.5;
  outline: none;
  margin-top: 0;
}

.buttonCCC::before,
.buttonCCC::after {
  position: absolute;
  z-index: -1;
  display: block;
  content: '';
}

.buttonCCC,
.buttonCCC::before,
.buttonCCC::after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all .3s;
  transition: all .3s;
}

/* ボタンホバー　CC */
.buttonCCC {
  position: relative;
  background-color: #f5a500;
  border-radius: 4px;
  color: #fff;
  line-height: 3.5;
  -webkit-transition: none;
  transition: none;
  box-shadow: 0 3px 0 #d38e00;
  text-shadow: 0 1px 1px rgba(0, 0, 0, .4);
}

.buttonCCC:hover {
  top: -4px;
  box-shadow: 0 7px 0 #d38e00;
}

.buttonCCC:active {
  top: 3px;
  box-shadow: none;
}

.box3 {
  width: 1020px;
  padding: 20px;
  /* background: #f9e900; */
  height: 170px;
  margin: 0 auto;
  text-align: center;
}

.txtC p {
  position: absolute;
  margin: -15rem 0 0 4rem;
  font-size: 4rem;
  text-align: center;
  color: #f9e900;
}

.txtCC p {
  position: absolute;
  margin: -15rem 0 0 23rem;
  font-size: 4rem;
  text-align: center;
  color: #f9e900;
}

.txtCCC p {
  position: absolute;
  margin: -15rem 0 0 44rem;
  font-size: 4rem;
  text-align: center;
  color: #f9e900;
}

/* areaC 文字スクロール */
.newsBanner {
  display: block;
  height: 10rem;
  width: 100%;
  overflow: hidden;
  margin-top: -15rem;
}

.newsBanner p {
  font-size: 8rem;
}

/* バナー内コンテンツ */
.newsBanner__content {
  display: inline-block;
  color: #fff;
  line-height: 1;
  padding-left: 100%;
  white-space: nowrap;
  animation: animateBanner 1.3s linear 1;
}

/* バナー内の要素をすべて選択 */
.newsBanner__content>* {
  display: inline-block;
}

/* 横にスクロールさせるアニメーション */
@keyframes animateBanner {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-100%);
  }
}

/* keyPress-D box4 */
.areaD {
  display: grid;
  display: none;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 170px;
}

/* ボタンDの元 */
.buttonD {
  display: inline-block;
  /* width: 200px; */
  height: 100px;
  text-align: center;
  text-decoration: none;
  line-height: 1.9;
  outline: none;
  margin-top: 0;
}

.buttonD::before,
.buttonD::after {
  position: absolute;
  z-index: -1;
  display: block;
  content: '';
}

.buttonD,
.buttonD::before,
.buttonD::after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all .3s;
  transition: all .3s;
}

/* Dボタンホバー */
.buttonD {
  position: relative;
  background-color: #f9e900;
  border-radius: 4px;
  color: #fff;
  line-height: 1.9;
  -webkit-transition: none;
  transition: none;
  box-shadow: 0 7px 0 #d7c900;
  text-shadow: 0 1px 1px rgba(0, 0, 0, .3);
}

.buttonD:hover {
  background-color: #fff01c;
  box-shadow: 0 7px 0 #e8d900;
}

.buttonD:active {
  top: 3px;
  box-shadow: none;
}

/* ボタンDDの元 */
.buttonDD {
  display: inline-block;
  /* width: 200px; */
  height: 100px;
  text-align: center;
  text-decoration: none;
  line-height: 1.9;
  outline: none;
  margin-top: 0;
}

.buttonDD::before,
.buttonDD::after {
  position: absolute;
  z-index: -1;
  display: block;
  content: '';
}

.buttonDD,
.buttonDD::before,
.buttonDD::after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all .3s;
  transition: all .3s;
}

/* DDボタンホバー */
.buttonDD {
  position: relative;
  background-color: #f9e900;
  border-radius: 4px;
  color: #fff;
  line-height: 1.9;
  -webkit-transition: none;
  transition: none;
  box-shadow: 0 7px 0 #d7c900;
  text-shadow: 0 1px 1px rgba(0, 0, 0, .3);
}

.buttonDD:hover {
  background-color: #fff01c;
  box-shadow: 0 7px 0 #e8d900;
}

.buttonDD:active {
  top: 3px;
  box-shadow: none;
}

/* ボタンDDDの元 */
.buttonDDD {
  display: inline-block;
  /* width: 200px; */
  height: 100px;
  text-align: center;
  text-decoration: none;
  line-height: 1.9;
  outline: none;
  margin-top: 0;
}

.buttonDDD::before,
.buttonDDD::after {
  position: absolute;
  z-index: -1;
  display: block;
  content: '';
}

.buttonDDD,
.buttonDDD::before,
.buttonDDD::after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all .3s;
  transition: all .3s;
}

/* DDDボタンホバー */
.buttonDDD {
  position: relative;
  background-color: #f9e900;
  border-radius: 4px;
  color: #fff;
  line-height: 1.9;
  -webkit-transition: none;
  transition: none;
  box-shadow: 0 7px 0 #d7c900;
  text-shadow: 0 1px 1px rgba(0, 0, 0, .3);
}

.buttonDDD:hover {
  background-color: #fff01c;
  box-shadow: 0 7px 0 #e8d900;
}

.buttonDDD:active {
  top: 3px;
  box-shadow: none;
}

.box4 {
  width: 1020px;
  /* max-width: 100%; */
  padding: 20px;
  /* background: #f67690; */
  height: 170px;
  margin: 0 auto;
  text-align: center;
}

.box4 p {
  color: #f9e900;
}

.areaD p {
  color: #fff;
}

.animate__bounceInDown {
  font-size: 15rem;
  font-family: 'Sacramento', cursive;
  /*'Lobster', cursive*/
  font-weight: bold;
  color: #3b82c4;
  z-index: 4;
  margin: -12rem;
}

.animate__fadeInTopLeft {
  font-size: 15rem;
  font-family: 'Sacramento', cursive;
  /*'Lobster', cursive*/
  font-weight: bold;
  color: #3b82c4;
  z-index: 4;
  margin: -12rem;
}

.animate__bounceInUp {
  font-size: 15rem;
  font-family: 'Sacramento', cursive;
  /*'Lobster', cursive*/
  font-weight: bold;
  color: #3b82c4;
  z-index: 4;
  margin: -12rem;
}

/* keyPress-E box5 */
.box5 {
  width: 1020px;
  /* max-width: 100%; */
  padding: 20px;
  /* background: #92cb97; */
  min-height: 100vh;
  margin: 0 auto;
  text-align: center;
}

.titleAreaE {
  padding-top: 12rem;
  height: 500px;
  text-align: center;
}

.areaE {
  /* background: url(../images/nankyoku.jpg);
  background-size: cover; */
  background: linear-gradient(#3b82c4, #fff, #fff, #fff, #00aaff, #00aaff, #3b82c4, #3b82c4);
  position: relative;
  /* margin: 0 auto; */
  width: 960px;
  min-height: 90vh;
}

.count {
  position: absolute;
  top: 120px;
  left: 420px;
  margin: 0 auto;
  font-family: 'Sacramento', cursive;
  font-size: 120px;
  font-weight: bold;
  color: #00aaff;
  text-align: center;
}

.penginarea {
  position: absolute;
  bottom: 150px;
  left: 1rem;
  /* animation-duration: 0.8s;
  animation-name: jump;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in; */
}

.key_F {
  cursor: pointer;
}

@keyframes jump {
  from {
    bottom: 0;
  }

  45% {
    bottom: 10px;
  }

  55% {
    bottom: 30px;
  }

  to {
    bottom: 0;
  }
}

@-webkit-keyframes rotation {
  0% {
    transform: rotateY(0deg);
  }

  100% {
    transform: rotateY(360deg);
  }
}

@keyframes moving {
  100% {
    transform: translateX(-3000px);
  }
}

.moving {
  animation: moving 10s linear infinite;
}

/* KeyPress-H  box6*/
.box6 {
  width: 1020px;
  /* max-width: 100%; */
  padding: 20px;
  /* background: #00aaff; */
  height: 230px;
  margin: 0 auto;
  text-align: center;
}

.titleAreaH {
  padding-top: 2rem;
  height: 200px;
  text-align: center;
}

.snsLinks {
  display: flex;
  padding: 2.5% 0;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: center;
}

.snsLinks>* {
  padding-top: 18px;
  width: 105px;
  height: 105px;
  background: skyblue;
  font-size: 64px;
  border-radius: 50%;
  text-align: center;
}

.snsLinks,
.snsLinks>* {
  /* border: 2px solid #aaa; */
  -webkit-animation: flip-scale-2-hor-top 0.5s linear both;
  animation: flip-scale-2-hor-top 0.5s linear both;
}

/* KeyPress-I  box7*/
.box7 {
  width: 1020px;
  padding: 20px;
  /* background: #3b82c4; */
  height: 230px;
  margin: 0 auto;
  text-align: center;
}

.titleAreaI {
  padding-top: 2rem;
  height: 200px;
  text-align: center;
}

.fa-home {
  color: #0bd;
  font-size: 4rem;
}

@-webkit-keyframes flip-scale-2-hor-top {
  0% {
    -webkit-transform: translateY(0) rotateX(0) scale(1);
    transform: translateY(0) rotateX(0) scale(1);
    -webkit-transform-origin: 50% 0%;
    transform-origin: 50% 0%;
  }

  50% {
    -webkit-transform: translateY(-50%) rotateX(-90deg) scale(2);
    transform: translateY(-50%) rotateX(-90deg) scale(2);
    -webkit-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
  }

  100% {
    -webkit-transform: translateY(-100%) rotateX(-180deg) scale(1);
    transform: translateY(-100%) rotateX(-180deg) scale(1);
    -webkit-transform-origin: 50% 100%;
    transform-origin: 50% 100%;
  }
}

@keyframes flip-scale-2-hor-top {
  0% {
    -webkit-transform: translateY(0) rotateX(0) scale(1);
    transform: translateY(0) rotateX(0) scale(1);
    -webkit-transform-origin: 50% 0%;
    transform-origin: 50% 0%;
  }

  50% {
    -webkit-transform: translateY(-50%) rotateX(-90deg) scale(2);
    transform: translateY(-50%) rotateX(-90deg) scale(2);
    -webkit-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
  }

  100% {
    -webkit-transform: translateY(-100%) rotateX(-180deg) scale(1);
    transform: translateY(-100%) rotateX(-180deg) scale(1);
    -webkit-transform-origin: 50% 100%;
    transform-origin: 50% 100%;
  }
}

.fa-rss {
  color: #fa2;
  font-size: 4rem;
}

.fa-mobile-alt {
  color: #999;
  font-size: 6rem;
}

.fa-youtube {
  color: #f00;
  font-size: 4rem;
  -webkit-animation: flip-scale-2-hor-top 0.5s linear both;
  animation: flip-scale-2-hor-top 0.5s linear both;
}

.fa-leaf {
  color: #8c2;
  font-size: 3rem;
}

/* keyPress-K  Accordion Slide*/
.fa-anchor {
  color: #00aaff;
  font-size: 4rem;
}

.fa-android {
  color: #f9e900;
  font-size: 4rem;
}

.fa-amilia {
  color: #f5a500;
  font-size: 4rem;
}

.fa-angellist {
  color: #92cb97;
  font-size: 4rem;
}

.fa-algolia {
  color: #3b82c4;
  font-size: 4rem;
}

.fa-app-store {
  color: #f67690;
  font-size: 4rem;
}

.fa-apper {
  color: #fff;
  font-size: 4rem;
}

.fa-apple-alt {
  color: #fff;
  font-size: 4rem;
}

.fa-archway {
  color: #00aaff;
  font-size: 4rem;
}

.fa-archive {
  color: #f9e900;
  font-size: 4rem;
}

.fa-adversal {
  color: #f5a500;
  font-size: 4rem;
}

.fa-500px {
  color: #92cd97;
  font-size: 4rem;
}

.fa-asterisk {
  color: #3b82c4;
  font-size: 4rem;
}

.fa-artstation {
  color: #f67690;
  font-size: 4rem;
}

.fa-at {
  color: #fff;
  font-size: 4rem;
}

.fa-atom {
  color: #00aaff;
  font-size: 4rem;
}

.fa-atlas {
  color: #f9e900;
  font-size: 4rem;
}

.fa-audible {
  color: #f5a500;
  font-size: 4rem;
}

.fa-avianex {
  color: #92cd97;
  font-size: 4rem;
}

.fa-backspace {
  color: #3b82c4;
  font-size: 4rem;
}

.fa-band-aid {
  color: #f67690;
  font-size: 4rem;
}

.iconsI {
  display: flex;
  padding: 2.5% 0;
  flex-direction: row;
  justify-content: space-evenly;
  );
}

/* .icosI>* { */
/* width: 8%; */
/* background: red; */
/* font-size: 64px; */
/* text-align: center; */
/* } */
.icosI,
.icosI>* {
  border: 2px solid #aaa;
}

/* KeyPress-J  box8 */
.box8 {
  width: 1020px;
  padding: 20px;
  /* background: #f9e900; */
  min-height: 100vh;
  margin: 0 auto;
  text-align: center;
  box-sizing: border-box;
}


.titleAreaJ {
  padding-top: 12rem;
  height: 500px;
  text-align: center;
  box-sizing: border-box;
}

.areaJ {
  justify-content: space-between;
  margin: .5rem 0;
  padding: .5rem 7rem;
  background: #00aaff;
  margin: 0 auto;
  width: 860px;
  min-height: 100vh;
  border-radius: 100px;
  box-sizing: border-box;
}

/* モーダルウィンドウ */
.popup {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: .5s;
}

.popup.is-show {
  opacity: 1;
  visibility: visible;
}

.popupInner {
  position: absolute;
  left: 50%;
  top: 40%;
  transform: translate(-50%, -50%);
  width: 80%;
  max-width: 600px;
  max-height: 100%;
  padding: 0 .2rem 0 .2rem;
  background-color: #00aaff;
  border-radius: 10px;
  z-index: 2;
}

.popupInner img {
  width: 100%;
}

/* モーダルウインドウ背景固定 */
body.fixed {
  position: fixed;
  width: 100vw;
  height: 100vh;
  left: 0;
  /* overflow-y: hidden;
  overflow: clip;
  overflow: hidden; */
}

/* modal スマホ */
@media (max-width: 700px) {
  /* .box8 {
    width: 940px;
    padding: 20px;
    background: #f9e900;
    min-height: 100vh;
    margin: 0 auto;
    text-align: center;
    box-sizing: border-box;
  }

  .areaJ {
    justify-content: space-between;
    margin: 2rem 0 2rem 0;
    padding: 1rem 11rem 1rem 11rem;
    background: #432c02;
    margin: 0 auto;
    width: 860px;
    min-height: 100vh;
    border-radius: 100px;
    overflow: hidden;
    box-sizing: border-box;
  } */
  /* .popupInner {
    width: 95%;
  } */
}

/* modal スマホ閉じ */
.page-title,
.modalP,
.postDesc,
.areaJ {
  word-wrap: break-word;
}

/* 前に戻るボタン */
.backJWrap {
  position: relative;
}

.backJ {
  position: absolute;
  bottom: -6rem;
  left: -1rem;
  z-index: 20;
  color: #fff;
  padding: 10px 20px;
  background: #3aacad;
  box-shadow: 0 0 0 5px #3aacad;
  /*#eda1a1*/
  border: 2px dashed #00a096;
  /*#e38787*/
  border-radius: 5px;
  text-decoration: none;
  display: block;
  font-size: 1.2rem;
  line-height: 1.2;
}

.modalP {
  font-size: 1rem;
  color: #3b82c4;
}

/* 投稿ボタン押したら表示される(あなたの投稿） */
span.tuikaH1 {
  opacity: .8;
  border-bottom: 1px solid #f6f0cc;
  color: #fff;
}

.borderbottomJ {
  border-bottom: .3px solid #fff;
  opacity: .1;
  padding: .5rem 0;
  margin-bottom: .5rem;
}

/* スマホのつぶやくボタンを無効化 (disabled)*/
/* .disabled {
    pointer-events: none;
} */
.close-btn {
  position: absolute;
  right: 0;
  top: 0;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  cursor: pointer;
}

.close-btn i {
  font-size: 20px;
  color: #333;
}

.black-background {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, .5);
  z-index: 1;
  cursor: pointer;
}

/* 投稿ボタン */
#btn1 {
  z-index: 20;
  color: #fff;
  padding: 10px 20px;
  background: #3aacad;
  box-shadow: 0 0 0 5px #3aacad;
  /*#eda1a1*/
  border: 2px dashed #00a096;
  /*#e38787*/
  border-radius: 5px;
  text-decoration: none;
  display: block;
  font-size: 1.2rem;
  line-height: 1.2;
  margin: 4rem 1.3rem 1rem auto;
}

.textareaField {
  font-size: 1.4rem;
  max-height: 700px;
  width: 500px;
  padding: 10rem .2rem .2rem .2rem;
  line-height: 1.7rem;
  text-align: left;
  margin-top: 0;
  ime-mode: active;
}

/* ブログ */
.page-title {
  font-size: 2.5rem;
  font-family: 'Amatic SC', cursive;
  margin: 1rem 0;
  padding-top: 0.5rem;
  color: #949087;
  /*#949087*/
}

.page-desc {
  font-size: 1rem;
  margin-bottom: 25px;
}

.page-title,
.page-desc {
  text-align: center;
}

.post-img {
  max-width: 220px;
  height: 180px;
  margin: 0.5rem;
  object-fit: cover;
  border-radius: 40% 70% 50% 30%/50%;
  shape-outside: ellipse();
  float: left;
  position: relative;
}

.post-thumb {
  margin: 0 3rem 1rem 0;
  /* shape-outside: ellipse();
    float: left; */
}

.post-desc {
  /* margin-left: 45px; */
}

article p {
  line-height: 1.6;
  color: #949087;
  /*#949087*/
}

.post-title {
  padding-bottom: 15px;
  background-image: linear-gradient(45deg, #fff 30%, #432c02 30%, #432c02 50%, #fff 50%, #fff 80%, #432c02 80%, #432c02 100%);
  background-size: 6px 6px;
  margin-bottom: 1rem;
}

.post-thumb {
  margin: 0 0 1rem 0;
  position: relative;
}

.post-date {
  font-size: 1rem;
  letter-spacing: .1rem;
  font-family: 'Amatic SC', cursive;
  background: #3aacad;
  border-radius: 30% 60% 50% 70%/50%;
  color: #fff;
  text-align: center;
  position: absolute;
  left: 0;
  top: -10px;
  width: 80px;
  height: 80px;
  z-index: 1;
}

.post-date span {
  border-bottom: 2px rgba(255, 255, 255, .5) dotted;
  padding-bottom: 2px;
  display: block;
  width: 60%;
  margin: 4px auto 0;
  font-size: 1rem;
}

/* つぶやくボタン */
.btn {
  z-index: 20;
  display: block;
  /* margin: 1rem 0 0 auto; ←スマホで不具合*/
  margin: 1rem 0 0 29rem;
}

.btn a {
  color: #fff;
  padding: 10px 20px;
  background: #3aacad;
  /*#eda1a1*/
  box-shadow: 0 0 0 5px #3aacad;
  /*#eda1a1*/
  border: 2px dashed #00a096;
  /*#e38787*/
  border-radius: 5px;
  text-decoration: none;
  display: inline-block;
  font-size: 1.5rem;
  line-height: 1.6;
}

.btn a:hover {
  color: #fff;
  background: #00a096;
  /*#e38787*/
  box-shadow: 0 0 0 5px #00a096;
  /*#e38787*/
  border: 2px dashed #3aacad;
  /*#eda1a1*/
}

/* KeyPress-K  box9*/
.box9 {
  width: 1020px;
  padding: 20px;
  /* background: #de4d4d; */
  min-height: 100vh;
  margin: 0 auto;
  text-align: center;
}

.box9 p {
  color: #fff;
}

.titleAreaK {
  padding-top: 12rem;
  height: 500px;
  text-align: center;
}

.cp_accordionslide02 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  visibility: hidden;
  width: 100%;
  height: 70vh;
  margin-top: 4rem;
  margin-left: .6rem;
}

.cp_accordionslide02 .slideitem {
  position: relative;
  visibility: visible;
  overflow: hidden;
  width: 20%;
  height: 100%;
  cursor: pointer;
  -webkit-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.cp_accordionslide02 .slideitem:nth-child(1) {
  background: linear-gradient(#3b82c4, #fff, #fff, #fff, #00aaff, #00aaff, #3b82c4, #3b82c4);
}

.fa-battery-full {
  color: #92cb97;
  font-size: 4rem;
}

.cp_accordionslide02 .slideitem:nth-child(2) {
  background: linear-gradient(#f5a500, #f5a500, #f9e900, #f9e900, #fff, #fff, #fff, #f5a500);
}

.fa-bars {
  color: #f67690;
  font-size: 4rem;
}

.cp_accordionslide02 .slideitem:nth-child(3) {
  background: linear-gradient(#de4d4d, #fff, #fff, #fff, #f67690, #f67690, #de4d4d, #de4d4d);
}

.fa-award {
  color: #92cb97;
  font-size: 3rem;
}

.cp_accordionslide02 .slideitem:nth-child(4) {
  background: linear-gradient(#92cb97, #92cb97, #92cd97, #92cb97, #fff, #fff, #fff, #92cb97);
}

.fa-backward {
  color: #f9e900;
  font-size: 4rem;
}

.cp_accordionslide02 .slideitem:nth-child(5) {
  background: linear-gradient(#00aaff, #fff, #fff, #fff, #3b82c4, #3b82c4, #00aaff, #00aaff);
}

.fa-bell {
  color: #00aaff;
  font-size: 4rem;
}

.cp_accordionslide02 .slideitem:after {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  content: '';
  opacity: 0;
}

.cp_accordionslide02:hover .slideitem:hover {
  width: 60%;
}

.cp_accordionslide02 .slideitem .slidecont {
  position: absolute;
  z-index: 4;
  bottom: 60px;
  left: 30px;
  visibility: hidden;
  max-width: 400px;
  padding: 20px;
  color: #ffffff;
  border-radius: 5px;
  background-color: rgba(230, 74, 25, 0.8);
}

.cp_accordionslide02 .slideitem .slidecont h2 {
  font-size: 1.4em;
}

.cp_accordionslide02:hover .slideitem:hover .slidecont {
  bottom: 30px;
  visibility: visible;
  -webkit-transition: all 0.1s linear 0.1s;
  transition: all 0.1s linear 0.1s;
  opacity: 1;
}

@media only screen and (max-width:768px) {
  .cp_accordionslide02 {
    height: 60vh;
    touch-action: manipulation;
    margin-left: .1rem;
  }

  .cp_accordionslide02 .slideitem .slidecont h2 {
    font-size: 0.9em;
  }

  .cp_accordionslide02 .slideitem .slidecont p {
    font-size: 0.7em;
  }

  .cp_accordionslide02 .slideitem .slidecont {
    right: 10px;
    left: 10px;
  }
}

/* KeyPress-L box10*/
.box10 {
  width: 1020px;
  padding: 20px;
  /* background: #f67690; */
  min-height: 100vh;
  margin: 0 auto;
  text-align: center;
}

.titleAreaL {
  padding-top: 12rem;
  height: 500px;
  text-align: center;
}

.bdtitle {
  font-family: 'Amatic SC', cursive;
  font-size: 1.7rem;
  color: #f9e900;
  margin: 2rem 0 1rem 0
}

.bWwrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
  margin: 1rem 0;
}

/* border-widthプロパティ */
.bWwrapper .px1 {
  border-width: 1px;
  padding: .5rem;
  margin: .3rem;
}

.bWwrapper .thick {
  border-width: thick;
  border-style: solid;
  padding: .5rem;
  margin: .3rem;
}

.bWwrapper .four {
  border-width: 1px 4px 8px 12px;
  border-style: solid;
  margin: .3rem;
  /* padding: 1rem; */
}

/* border-styleプロパティ 9つ*/
.bWwrapper .solid {
  border-width: 4px;
  border-style: solid;
  padding: .5rem;
}

.bWwrapper .double {
  border-width: 4px;
  border-style: double;
  padding: .5rem;
  margin: .3rem;
}

.bWwrapper .dashed {
  border-width: 4px;
  border-style: dashed;
  padding: .5rem;
  margin: .3rem;
}

.bWwrapper .dotted {
  border-width: 4px;
  border-style: dotted;
  padding: .5rem;
  margin: .3rem;
}

.bWwrapper .groove {
  border-width: 4px;
  border-style: groove;
  padding: .5rem;
  margin: .3rem;
}

.bWwrapper .ridge {
  border-width: 4px;
  border-style: ridge;
  padding: .5rem;
  margin: .3rem;
}

.bWwrapper .inset {
  border-width: 4px;
  border-style: inset;
  padding: .5rem;
  margin: .3rem;
}

.bWwrapper .outset {
  border-width: 4px;
  border-style: outset;
  padding: .5rem;
  margin: .3rem;
}

.bWwrapper .four1 {
  border-width: 4px;
  border-style: double dotted solid ridge;
  padding: .5rem;
  margin: .3rem;
}

/* KeyPress-M box11*/
.box11 {
  width: 1020px;
  padding: 20px;
  /* background: #3b82c4; */
  min-height: 100vh;
  margin: 0 auto;
  text-align: center;
}

.titleAreaM {
  padding-top: 12rem;
  height: 500px;
  text-align: center;
}

.box11 .bdtitle {
  padding: 0;
  font-size: 2rem;
}

/* border-colorプロパティ */
.bWwrapper .bColor {
  border-width: 4px;
  border-color: #0bd;
  padding: .5rem;
  margin: .5rem;
}

.bWwrapper .tomato {
  border-width: 4px;
  border-color: tomato;
  padding: .5rem;
  margin: .5rem;
}

.bWwrapper .four2 {
  border-width: 4px;
  border-color: tan #0bd tomato #000;
  padding: .5rem;
  margin: .5rem;
}

/* borderプロパティ */
.bWwrapper .bBottom {
  border-bottom: 2px solid #0bd;
  padding: .5rem;
  margin: .5rem;
}

.bWwrapper .border {
  border: 5px dotted tomato;
  padding: .5rem;
  margin: .5rem;
}

/* borderプロパティ */
.bBwrapper {
  text-align: center;
  margin: 1rem;
}

.bBwrapper .bBottom1 {
  border-top: 2px solid gray;
  border-bottom: 15px solid #f9e900;
  padding: 1rem 0;
  margin: 0 auto;
  text-align: center;
}


/* KeyPress-N box12 border-radius*/
.box12 {
  width: 1020px;
  padding: 20px;
  /* background: #00aaff; */
  min-height: 100vh;
  margin: 0 auto;
  text-align: center;
}

.titleAreaN {
  padding-top: 12rem;
  height: 500px;
  text-align: center;
}

.box12 .bdtitle {
  padding-top: 2rem;
  margin-bottom: 2rem;
}

.bRwrapper {
  width: 500px;
  height: 300px;
  border-width: 4px;
  border-color: #3b82c4;
  border-radius: 20px 40px 60px 80px / 10px 30px 50px 100px;
  padding: 1rem;
  display: inline-block;
}

.bRwrapper p {
  display: inline-block;
}

.bRwrapper .bR1 {
  float: left;
}

.bRwrapper .bR2 {
  float: right;
}

.bRwrapper .bR3 {
  float: right;
  padding-top: 3rem;
}

.bRwrapper .bR4 {
  float: left;
  padding-top: 3rem;
}

.bRadius {
  padding-top: 3rem;
}

.bBottom2 {
  border-bottom: 25px solid #3b82c4;
  margin: 4rem 1rem 1rem 2rem;
}

/* KeyPress-O box13 audio*/
.box13 {
  /* background-image: url(../images/dj.webp);
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: 1020px; */
  /* background: #3b82c4; */
  width: 1020px;
  /* max-width: 100%; */
  padding-top: 2rem;
  min-height: 100vh;
  margin: 0 auto;
  text-align: center;
  border-top: 3rem solid #f9e900;
  border-bottom: 3rem solid #f67690;
}

.titleAreaO {
  padding-top: 8rem;
  height: 500px;
  text-align: center;
}

.icons_O .fa-play {
  font-size: 4rem;
  color: #f67690;
  font-weight: 900;
}

.icons_OO .fa-music {
  font-size: 6rem;
  color: #f67690;
  /* background: linear-gradient(#f67690, #f67690, #00aaff, #3b82c4, #3b82c4); */
  font-weight: 900;
}

.icons_OO {
  margin: -3.2rem 0 0 0;
}

/* areaO  box13スマホ */
@media (max-width: 700px) {
  .box13 {
    padding-top: 5rem;
  }

  .titleAreaO {
    padding-top: 10rem;
  }
}

/* areaO  box13スマホ 閉じ */
.box13 .word {
  color: #f9e900;
}

.box13 .word1 {
  color: #f67690;
}

.box13 .word2 {
  color: #f67690;
}

.box13 .word3 {
  color: #f9e900;
}

.areaO {
  padding-top: 11%;
  width: 940px;
}

#upload {
  float: left;
  padding-left: 70px;
  padding-top: 4.8%;
  margin-bottom: 1%;
  display: flex;
}

#audio {
  margin-top: 6%;
  margin-right: 50px;
  margin-bottom: 1%;
  display: flex;
}

/*KeyPress-O インプット枠の装飾 */
.formArea input {
  vertical-align: middle;
}

.areaO form {
  float: left;
  margin-top: 2%;
  margin-left: 60px;
  display: flex;
  flex-wrap: wrap;
}

.areaO label {
  font-size: 37px;
  color: #333333;
  font-weight: bold;
}

.inText {
  box-sizing: border-box;
  margin: 0;
  vertical-align: top;
  width: 100%;
  /* 一旦100%幅     */
  max-width: 250px;
  /* 入力域の最大幅 */
  height: 110px;
  /* 入力域の高さ   */
  background: rgba(255, 255, 255, .5);
  /* 入力域の背景色 */
  border: 2px solid #f67690;
  /* 入力域の枠線   */
  border-radius: 5px;
  /* 入力域の角丸   */
  padding: 0 18px;
  /* 入力文字の余白 */
  font-size: 70px;
  /* 入力文字サイズ */
  color: #333333;
  /* 入力文字の色   */
  font-weight: bold;
  /* 入力文字の太字 */
  letter-spacing: .1em;
  /* 入力文字の間隔 */
}

/* --- 入力フィールドにフォーカス来たら ----------------*/
.inText:focus {
  border-color: #f9e900;
  background: rgba(255, 255, 255, .5);
  /* (255, 255, 26, 0.20)背景色 */
  box-shadow: 4px 4px 2px #999;
  /* 影付け     */
  outline: 0;
}

/* --- 入力説明の文字(標準) -----------------------------*/
.inText:placeholder-shown {
  color: #808080;
  /* 文字色     */
  font-size: 27px;
  /* 56少し小さく */
}

/* --- 入力説明の文字(Chrome,Safari,Android,iOS等) ---- -*/
.inText::-webkit-input-placeholder {
  color: #808080;
  /* 文字色     */
  font-size: 27px;
  /* 56少し小さく */
}

/* --- 入力説明の文字(IE用) -----------------------------*/
.inText:-ms-input-placeholder {
  color: #808080;
  /* 文字色     */
  font-size: 27px;
  /* 少し小さく */
}

/* --- IEの入力エリア右側×消し -------------------------*/
.inText::-ms-clear {
  display: none;
  /* ×を消す   */
}

/* KeyPress-P box14*/
.box14 {
  width: 1020px;
  padding: 20px;
  /* background: #f9e900; */
  min-height: 100vh;
  margin: 0 auto;
  text-align: center;
}

.areaP {
  width: 640px;
  margin: auto;
}

.titleAreaP {
  padding-top: 8rem;
  height: 500px;
}

.titleAreaP a {
  color: #f67690;
  padding: .2rem .2rem;
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0) 50%, rgb(49, 170, 226) 50%);
  background-position: 0 0;
  background-size: 200% auto;
  transition: .3s;
}

.titleAreaP a:hover {
  background-position: -100% 0;
  color: #fff;
}

/* KeyPress-Q box15*/
.box15 {
  width: 1020px;
  padding: 20px;
  /* background: #00aaff; */
  min-height: 100vh;
  margin: 0 auto;
  text-align: center;
}

.titleAreaQ {
  padding-top: 13rem;
  height: 500px;
}

/* グラフの文字 */
.ct-label {
  font-size: 1rem;
  fill: #fff;
}

/* 円グラフ */
.ct-series-a .ct-slice-pie {
  fill: #f9e900;
}

.ct-series-b .ct-slice-pie {
  fill: #f5a500;
}

.ct-series-c .ct-slice-pie {
  fill: #92cd97;
}

.ct-series-d .ct-slice-pie {
  fill: #bbb;
}

/* Contents デスクトップだけ横並び*/
@media (min-width: 600px) {
  .content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 4rem 1rem;
  }

  .flex-reverse {
    flex-direction: row-reverse;
  }

  .home-text {
    width: 30vw;
    margin-bottom: 0;
  }

  .home-chart {
    width: 34vw;
    padding: 0 0 0 2rem;
  }

  .box16 .home-text {
    width: 32vw;
    margin-bottom: 0;
    padding: 0 1rem 1rem 0;
    text-align: left;
  }

  .box16 .home-chart {
    width: 46vw;
    padding: 0 0 0 2rem;
  }

  .ct-bar {
    stroke-width: 16%;
  }
}

/* Contents デスクトップだけ横並び閉じ*/
.textTitle {
  font-family: 'Lobster', cursive;
}

.home-text p {
  padding: .1rem 0 .1rem 1rem;
  text-align: left;
}

.box15 .textTitle {
  padding: 0 1rem 1rem 2rem;
  font-size: 2rem;
  text-align: left;
  /* border-bottom: 4px solid #ddd; */
  /* display: inline-block; */
  position: relative;
  margin-bottom: 2rem;
}

.box15 .textTitle::before {
  content: '';
  position: absolute;
  left: 40%;
  bottom: -10px;
  /*線の上下位置*/
  display: inline-block;
  width: 300px;
  /*線の長さ*/
  height: 4px;
  /*線の太さ*/
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  /*位置調整*/
  background-color: #ddd;
  /*線の色*/
  border-radius: 2px;
  /*線の丸み*/
}

.pList::before {
  content: '\f004';
  font-family: "Font Awesome 5 Pro";
  font-weight: 900;
  color: #f9e900;
}

.pList1::before {
  content: '\f004';
  font-family: "Font Awesome 5 Pro";
  font-weight: 900;
  color: #f5a500;
}

.pList2::before {
  content: '\f004';
  font-family: "Font Awesome 5 Pro";
  font-weight: 900;
  color: #92cd97;
}

.pList3::before {
  content: '\f004';
  font-family: "Font Awesome 5 Pro";
  font-weight: 900;
  color: gray;
}

/* KeyPress-R box16*/
.box16 {
  width: 1020px;
  padding: 20px;
  /* background: #3b82c4; */
  min-height: 100vh;
  margin: 0 auto;
  text-align: center;
}

.titleAreaR {
  padding-top: 13rem;
  height: 500px;
}

.box16 h2 {
  padding: 0 1rem 1rem 0;
  font-size: 2rem;
  text-align: left;
  display: inline-block;
  border-bottom: 4px solid #ddd;
  margin-bottom: 2rem;
}

/* 棒グラフ */
.ct-series-a .ct-bar {
  stroke: #de4d4d;
}

/* Q,R グラフ スマホ */
@media (max-width: 700px) {
  .home-text p {
    padding: 0 0 .5rem 0;
    text-align: center;
    display: inline-block;
  }

  .pList {
    margin: 0;
  }

  .pList1 {
    margin: 0 0 0 1.0rem;
  }

  .pList2 {
    margin: 0 0 0 -2.3rem;
  }

  .pList3 {
    margin: 0 0 0 -5.6rem;
  }

  .box16 .textTitle {
    text-align: center;
    padding: 1rem;
  }

  .box15 .textTitle {
    text-align: center;
    padding: 1rem;
  }

  .box15 .textTitle::before {
    content: '';
    position: absolute;
    left: 40%;
    bottom: -5px;
    /*線の上下位置*/
    display: inline-block;
    width: 300px;
    /*線の長さ*/
    height: 4px;
    /*線の太さ*/
    -webkit-transform: translateX(-17.5%);
    transform: translateX(-17.5%);
    /*位置調整*/
    background-color: #ddd;
    /*線の色*/
    border-radius: 2px;
    /*線の丸み*/
  }

  .ct-bar {
    stroke-width: 25%;
  }

  .textTitle {
    text-align: center;
  }

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

/*Q,R　スマホ閉じ*/
/* KeyPress-S box17*/
.box17 {
  width: 1020px;
  padding: 20px;
  /* background: #97cd97; */
  min-height: 100vh;
  margin: 0 auto;
  text-align: center;
}


.titleS {
  text-align: center;
  margin-bottom: .5rem;
  padding: 1rem;
}

.titleS .ss {
  margin: 0;
  font-size: 3rem;
}

.titleS p {
  font-size: 1.3rem;
  text-align: center;
}

.giji {
  padding: .5rem;
  background: #f5a500;
  display: inline-block;
  margin: 0 0 1rem 0;
}

.giji1 {
  /* margin-top: -1rem; */
  padding: .5rem;
  background: #3b82c4;
  display: inline-block;
}

.box17 ul {
  padding: 1rem;
  text-align: center;
  margin: 0 auto;
  display: inline-block;
  border-width: 4px;
  border-style: dashed;
  border-color: #fff;
}

.box17 li {
  padding: 1rem;
  text-align: center;
}

.new::after {
  content: "NEW!";
  font-size: .75rem;
  background: #3b82c4;
  color: #fff;
  padding: 5px;
  margin-left: 5px;
  border-radius: 3px;
}

.stock::before {
  content: "在庫有り";
  font-size: .75rem;
  background: #f5a500;
  color: #fff;
  padding: 5px;
  margin-left: 5px;
  border-radius: 3px;
}

/* KeyPress-T box18*/
.box18 {
  width: 1020px;
  padding: 20px;
  /* background: #f5a500; */
  min-height: 100vh;
  margin: 0 auto;
  text-align: center;
}

.titleAreaT {
  padding-top: 12rem;
  height: 500px;
  text-align: center;
  margin-bottom: 0
}

.animeDef {
  padding: .5rem;
  line-height: 1.7;
}

.animeDef span {
  color: #ffc;
}

.recommend strong {
  padding-top: 3rem;
  color: tomato;
  display: inline-block;
  position: relative;
  animation: recommendBounce 2s 3;
}

@keyframes recommendBounce {
  0%, 50%, 100% {
    top: 0;
  }

  25% {
    top: -.8rem;
  }

  75% {
    top: -.5rem;
  }
}

/* keyPressTの下方　バウンス */
.container {
  position: relative;
  width: 100%;
  height: 250px;
}

.bound span {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  font-size: 2em;
  font-weight: bold;
  color: #f9e900;
  text-align: center;
  width: 500px;
  height: 100px;
  animation: bound-anim 0.8s 3;
}

@keyframes bound-anim {
  0%, 100% {
    top: 0;
    transform: scale(1);
  }

  30% {
    top: -25%;
  }

  50% {
    transform: scale(1);
  }

  90% {
    top: 0;
    transform: scale(1.1, 0.8);
  }
}

.bound:hover {
  animation: hover-flash 1s;
}

@keyframes hover-flash {
  0% {
    opacity: .2;
  }

  100% {
    opacity: 1;
  }
}

/* KeyPress-U box19*/
.box19 {
  width: 1020px;
  padding: 20px;
  /* background: #00aaff; */
  min-height: 100vh;
  margin: 0 auto;
  text-align: center;
}

.titleAreaU {
  padding-top: 12rem;
  height: 500px;
  text-align: center;
  margin-bottom: 0
}

:root {
  --light-blue: #00aaff;
  --blue: #3b82c4;
  --purple: #b473bf;
  --pink: #f67690;
  --orange: #f5a500;
  --yellow: #f9e900;
  --light-green: #92cb97;
  --green: #00a2af;
  --grey: #333;
  --white: #fff;
  --red: #de4d4d
}

#news h1 {
  font-family: 'Lobster', cursive;
  font-size: 1.75rem;
  background: #00aaff;
  border-radius: 25px;
  display: inline-block;
  padding: .5rem;
  margin-bottom: 1.1rem;
  text-align: center;
  width: 760px;
}

#news {
  background-image: linear-gradient(var(--yellow), var(--orange));
  padding: 5rem 0 7rem 0;
  margin-left: 1.1rem;
  -webkit-clip-path: polygon(0 0, 100% 10%, 100% 90%, 0 100%);
  clip-path: polygon(0 0, 100% 10%, 100% 90%, 0 100%);
}

.news-table {
  color: var(--white);
  width: 100%;
}

.news-table tr {
  font-family: 'Lobster', cursive;
  border-bottom: 1px solid rgba(255, 255, 255, .5);
}

.news-table td {
  display: block;
  line-height: 1.5;
}

.news-date {
  font-size: .875rem;
  padding-top: .8rem;
}

.news-content {
  font-size: 1.1rem;
  padding-bottom: 1rem;
}

.polygon1 {
  float: left;
  margin-top: -3.6rem;
}

.polygon2 {
  float: right;
  margin: -1.5rem 0 0 -10rem;
}

.polygon3 {
  float: right;
  margin-top: 1rem;
}

.polygon4 {
  float: left;
  margin-top: 3rem;
}

/* KeyPress-V box20*/
.box20 {
  width: 1020px;
  padding: 20px;
  /* background: #f67690; */
  min-height: 100vh;
  margin: 0 auto;
  text-align: center;
}

.titleAreaV {
  padding-top: 12rem;
  height: 500px;
  text-align: center;
}

#hero p {
  line-height: 1.7;
  font-size: 1.3rem;
}

.hero-date {
  font-family: impact, sans-serif;
}

.wrapper1 {
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
  padding: 0 1rem;
}

/*
HERO
================================================ */
#hero {
  /* ↓ 省略形だとブラウザーによってうまく表示されない
    background: var(--light-blue) url('../images/hero.jpg') no-repeat center / cover; */
  background-color: var(--light-blue);
  /* background-image: url('../images/hero.jpg'); */
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-blend-mode: screen;
  animation: bg-color 24s infinite;
  height: 90vh;
  display: flex;
  margin-left: 1.2rem;
  align-items: center;
  -webkit-clip-path: polygon(50% 0%, 90% 20%, 100% 60%, 75% 100%, 25% 100%, 0% 60%, 10% 20%);
  clip-path: polygon(50% 0%, 90% 20%, 100% 60%, 75% 100%, 25% 100%, 0% 60%, 10% 20%);
}

@keyframes bg-color {
  0% {
    background-color: var(--light-blue);
  }

  12.5% {
    background-color: var(--blue);
  }

  25% {
    background-color: var(--purple);
  }

  37.5% {
    background-color: var(--pink);
  }

  50% {
    background-color: var(--orange);
  }

  62.5% {
    background-color: var(--yellow);
  }

  75% {
    background-color: var(--light-green);
  }

  87.5% {
    background-color: var(--green);
  }

  100% {
    background-color: var(--light-blue);
  }
}

#hero h1 {
  font-size: 4.5rem;
  margin-bottom: 1.5rem;
  font-family: impact, sans-serif;
}

#hero .hero-date {
  text-align: center;
  border-top: 3px solid var(--grey);
  border-bottom: 3px solid var(--grey);
  padding: .5rem 0;
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

/* KeyPress-W box21*/
.box21 {
  width: 1020px;
  padding: 20px;
  /* background: #de4d4d; */
  min-height: 100vh;
  margin: 0 auto;
  text-align: center;
  /* -webkit-clip-path: ellipse(80% 100% at 50% 0);
  clip-path: ellipse(80% 100% at 50% 0); */
}

.titleAreaW {
  padding-top: 12rem;
  height: 500px;
  text-align: center;
}

.circleW {
  background: #3b82c4;
  height: 70vh;
  width: 52.5rem;
  margin-left: 1.2rem;
  -webkit-clip-path: circle(50% at 0 0);
  clip-path: circle(50% at 0 0);
  animation: zoomIn 0.8s cubic-bezier(0.25, 1, 0.5, 1) 1 forwards;
}

@keyframes zoomIn {
  0% {
    transform: scale(0.8);
    opacity: 0;
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.circleW:hover {
  background: #f9e900;
  width: 100%;
  animation: hover-flash1 1s;
  transition: background 1s, width .7s ease-in-out;
}

.circleW p {
  padding: 5rem 39rem 1rem 1rem;
  /* margin: 3rem -3rem 1rem 2rem; */
}

.arrow {
  margin: 0 0 0 auto;
  margin-top: -30rem;
  background: #00aaff;
  padding: 1rem 2rem;
  font-size: 1.5rem;
  width: 500px;
  color: #fff;
  -webkit-clip-path: polygon(0 0, 470px 0, 100% 50%, 470px 100%, 0 100%);
  clip-path: polygon(0 0, 470px 0, 100% 50%, 470px 100%, 0 100%);
  animation: slideIn 1s cubic-bezier(0.25, 1, 0.5, 1) 1 forwards;
}

.arrow:hover {
  background: #3b82c4;
  animation: hover-flash1 1s;
}

@keyframes hover-flash1 {
  0% {
    opacity: .99;
  }

  100% {
    opacity: 1;
  }
}

@keyframes slideIn {
  0% {
    transform: translateX(180px);
    opacity: 0;
  }

  100% {
    transform: translateX(0);
  }

  40%, 100% {
    opacity: 1;
  }
}

.cwChange {
  /* position: absolute; */
  background: #f67690;
  width: 300px;
  height: 200px;
  color: #333;
  padding-top: 5rem;
  margin: 13rem auto 0 0;
  margin-left: 1.2rem;
  animation: poyopoyo 2s ease-out infinite;
  opacity: 1;
}

.cwChange:hover {
  background: #00aaff;
  width: 100%;
  color: #fff;
  transition: background 1s, width 2s ease-in-out;
}

@keyframes poyopoyo {
  0%, 40%, 60%, 80% {
    transform: scale(1.0);
  }

  50%, 70% {
    transform: scale(0.95);
  }
}

.cwChange1 {
  /* position: absolute; */
  background: #3b82c4;
  width: 300px;
  height: 200px;
  color: #333;
  padding-top: 5rem;
  margin: -22rem 0 0 auto;
}

.cwChange1:hover {
  background: #92cb97;
  width: 100%;
  color: #fff;
  transition: background 1s, width 2s ease-in-out;
}

/* KeyPress-X box22*/
.box22 {
  width: 1020px;
  padding: 0;
  /* background: #000; */
  min-height: 100vh;
  margin: 0 auto;
  text-align: center;
  box-sizing: border-box;
}
/* サブタイトルのフォントサイズ小さく */
.xx {
  font-size: .5rem;
}

.titleAreaX {
  padding-top: 10rem;
  height: 500px;
  text-align: center;
}

.parent {
  display: grid;
  min-height: 100vh;
  margin-left: 1rem;
  /* grid-template-columns: repeat(4, minmax(240px, 1fr));
grid-template-rows: repeat(4, minmax(240px, 1fr)); */
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(4, 1fr);
  grid-column-gap: 10px;
  grid-row-gap: 10px;
}

.parent p {
  font-size: 1.2rem;
  color: #ffffff;
}

.parent .item6p {
  color: #de4d4d;
}

.parent .item8p {
  color: #de4d4d;
}

.parent .item11p {
  color: #de4d4d;
}

.parent .item15p {
  color: #de4d4d;
}

.item0 {
  background: linear-gradient(90deg, #238CCC, #C5E5EE);
  text-align: center;
  padding: 4.2rem 0;
  border-radius: 50px;
  display: inline-block;
  cursor: pointer;
}

.item0.jump1 {
  animation: 0.4s cubic-bezier(.2, 1, .2, 1) 0s 1 jump1;
}

@keyframes jump1 {
  0%, 100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-40px);
  }
}

.sen::after {
  content: "";
  display: inline-block;
  position: absolute;
  right: calc(var(--content-height) / 2);
  top: 0;
  bottom: 0;
  width: 15px;
  background-color: #fff;
  transform: skewX(45deg);
}

.item1 {
  border-radius: 50px;
  text-align: center;
  padding: 4.2rem 0;
  background: linear-gradient(90deg, #E6551E, #F5BC2D);
  transform-origin: center center;
  transition: all 1s ease 0s;
  -webkit-transform-origin: center center;
  -webkit-transition: all 1s ease 0s;
}

.item1:hover {
  animation: 2s cubic-bezier(.2, 1, .2, 1) 0s 1 rotation;
}

.item2 {
  border-radius: 50px;
  text-align: center;
  padding: 4.2rem 0;
  background: linear-gradient(90deg, #64B44C, #FFFB7F);
}

.item2:hover {
  animation: 2s cubic-bezier(.2, 1, .2, 1) 0s 1 rotation;
}

.item3 {
  border-radius: 50px;
  text-align: center;
  padding: 4.2rem 0;
  background: linear-gradient(90deg, #E83E43, #F7B187);
}

.item3.jump1 {
  animation: 0.4s cubic-bezier(.2, 1, .2, 1) 0s 1 jump1;
}

.sen3::after {
  content: "";
  display: inline-block;
  position: absolute;
  right: calc(var(--content-height) / 2);
  top: 0;
  bottom: 0;
  width: 15px;
  background-color: #fff;
  transform: skewX(-45deg);
}

.item4 {
  border-radius: 50px;
  text-align: center;
  padding: 4.2rem 0;
  background: linear-gradient(90deg, #99C66A, #67C0D7);
}

.item4:hover {
  animation: 2s cubic-bezier(.2, 1, .2, 1) 0s 1 rotation;
}

.item5 {
  border-radius: 50px;
  text-align: center;
  padding: 4.2rem 0;
  background: linear-gradient(90deg, #E62434, #93291D);
}

.item5.jump1 {
  animation: 0.4s cubic-bezier(.2, 1, .2, 1) 0s 1 jump1;
}

.sen5::after {
  content: "";
  display: inline-block;
  position: absolute;
  right: calc(var(--content-height) / 2);
  top: 0;
  bottom: 0;
  width: 15px;
  background-color: #fff;
  transform: skewX(45deg);
}

.item6 {
  border-radius: 50px;
  text-align: center;
  padding: 4.2rem 0;
  background: linear-gradient(90deg, #CBD5EE, #EEEEEE);
}

.item6.jump1 {
  animation: 0.4s cubic-bezier(.2, 1, .2, 1) 0s 1 jump1;
}

.sen6::after {
  content: "";
  display: inline-block;
  position: absolute;
  right: calc(var(--content-height) / 2);
  top: 0;
  bottom: 0;
  width: 15px;
  background-color: #fff;
  transform: skewX(-45deg);
}

.item7 {
  border-radius: 50px;
  text-align: center;
  padding: 4.2rem 0;
  background: linear-gradient(90deg, #67BFD5, #F7CD39);
}

.item7:hover {
  animation: 2s cubic-bezier(.2, 1, .2, 1) 0s 1 rotation;
}

.item8 {
  border-radius: 50px;
  text-align: center;
  padding: 4.2rem 0;
  background: linear-gradient(90deg, #FFE5AE, #FFFFFF);
}

.item8:hover {
  animation: 2s cubic-bezier(.2, 1, .2, 1) 0s 1 rotation;
}

.item9 {
  border-radius: 50px;
  text-align: center;
  padding: 4.2rem 0;
  background: linear-gradient(90deg, #9E549C, #392152);
}

.item9.jump1 {
  animation: 0.4s cubic-bezier(.2, 1, .2, 1) 0s 1 jump1;
}

.sen9::after {
  content: "";
  display: inline-block;
  position: absolute;
  right: calc(var(--content-height) / 2);
  top: 0;
  bottom: 0;
  width: 15px;
  background-color: #fff;
  transform: skewX(-45deg);
}

.item10 {
  border-radius: 50px;
  text-align: center;
  padding: 4.2rem 0;
  background: linear-gradient(90deg, #EB5D7E, #7C539D);
}

.item10.jump1 {
  animation: 0.4s cubic-bezier(.2, 1, .2, 1) 0s 1 jump1;
}

.sen10::after {
  content: "";
  display: inline-block;
  position: absolute;
  right: calc(var(--content-height) / 2);
  top: 0;
  bottom: 0;
  width: 15px;
  background-color: #fff;
  transform: skewX(45deg);
}

.item11 {
  border-radius: 50px;
  text-align: center;
  padding: 4.2rem 0;
  background: linear-gradient(90deg, #C49E54, #FEEFEA);
}

.item11:hover {
  animation: 2s cubic-bezier(.2, 1, .2, 1) 0s 1 rotation;
}

.item12 {
  border-radius: 50px;
  text-align: center;
  padding: 4.2rem 0;
  background: linear-gradient(90deg, #F0CBA5, #ED6B82);
}

.item12.jump1 {
  animation: 0.4s cubic-bezier(.2, 1, .2, 1) 0s 1 jump1;
}

.sen12::after {
  content: "";
  display: inline-block;
  position: absolute;
  right: calc(var(--content-height) / 2);
  top: 0;
  bottom: 0;
  width: 15px;
  background-color: #fff;
  transform: skewX(-45deg);
}

.item13 {
  border-radius: 50px;
  text-align: center;
  padding: 4.2rem 0;
  background: linear-gradient(90deg, #CA654B, #543221);
}

.item13:hover {
  animation: 2s cubic-bezier(.2, 1, .2, 1) 0s 1 rotation;
}

.item14 {
  border-radius: 50px;
  text-align: center;
  padding: 4.2rem 0;
  background: linear-gradient(90deg, #20AAD8, #402C86);
}

.item14:hover {
  animation: 2s cubic-bezier(.2, 1, .2, 1) 0s 1 rotation;
}

.item15 {
  border-radius: 50px;
  text-align: center;
  padding: 4.2rem 0;
  background: linear-gradient(90deg, #D9A7C7, #FEFADE);
  /* background-image: linear-gradient(to right top, transparent 44%, #fff 44%, #fff 56%, transparent 56%); */
}

.item15.jump1 {
  animation: 0.4s cubic-bezier(.2, 1, .2, 1) 0s 1 jump1;
}

.sen15::after {
  content: "";
  display: inline-block;
  position: absolute;
  right: calc(var(--content-height) / 2);
  top: 0;
  bottom: 0;
  width: 15px;
  background-color: #fff;
  transform: skewX(45deg);
}

/* KeyPress-Y box23*/
.box23 {
  width: 1020px;
  padding: 20px;
  /* background: #3b82c4; */
  min-height: 100vh;
  margin: 0 auto;
  text-align: center;
}

.titleAreaY {
  padding-top: 12rem;
  height: 500px;
  text-align: center;
}

.areaY h1 {
  padding: 2rem;
  font-size: 5rem;
  font-weight: bold;
}

.areaY p {
  font-size: 2.5rem;
}

.camepara {
  background: url(../images/camepara1.png) no-repeat;
  width: 420px;
  height: 219px;
  margin: 0 auto;
  animation: smile 1s steps(4) 7;
}

@keyframes smile {
  to {
    background-position: -1680px 0;
  }
}

.flowerArea {
  position: relative;
}

.flower::before {
  top: -26rem;
  left: 4.5rem;
  content: '＊*';
  /*花に見せかけるためのアスタリスク*/
  color: #fff;
  /* アスタリスクの色 */
  display: inline-block;
  font-size: 110px;
  /* アスタリスクの大きさ */
  font-weight: bold;
  position: absolute;
  transform: rotate(20deg);
  -moz-transform: rotate(20deg);
  -webkit-transform: rotate(20deg);
  -o-transform: rotate(20deg);
  text-shadow: 0px 0px 6px #EAA8BF, 0px 0px 4px #EAA8BF, 0 0 0.5px #EAA8BF;
  /* アスタリスク周りの影 */
}

.flower1::before {
  top: -5rem;
  left: -1rem;
  content: '＊* *＊';
  /*花に見せかけるためのアスタリスク*/
  color: #fff;
  /* アスタリスクの色 */
  display: inline-block;
  font-size: 100px;
  /* アスタリスクの大きさ */
  font-weight: bold;
  margin-right: 10px;
  position: absolute;
  transform: rotate(20deg);
  -moz-transform: rotate(20deg);
  -webkit-transform: rotate(20deg);
  -o-transform: rotate(20deg);
  text-shadow: 0px 0px 3px #fff, 0px 0px 2px #fff, 0 0 0.5px #fff;
  /* アスタリスク周りの影 */
}

.flower2::before {
  top: -25rem;
  left: 42rem;
  content: '＊*⁑*＊';
  /*花に見せかけるためのアスタリスク*/
  color: #fff;
  /* アスタリスクの色 */
  display: inline-block;
  font-size: 110px;
  /* アスタリスクの大きさ */
  font-weight: bold;
  position: absolute;
  transform: rotate(20deg);
  -moz-transform: rotate(20deg);
  -webkit-transform: rotate(20deg);
  -o-transform: rotate(20deg);
  text-shadow: 0px 0px 6px #EAA8BF, 0px 0px 4px #EAA8BF, 0 0 0.5px #EAA8BF;
  /* アスタリスク周りの影 */
}

.bgColor {
  background-color: black;
}

/* ページ送り */
.pagination {
  display: flex;
  justify-content: center;
  font-family: 'M PLUS Rounded 1c', sans-serif;
  font-size: 1.5rem;
  text-align: center;
}

.pagination a:hover {
  background: #f9e900;
  color: #fff;
}

.pagination a,
.pagination .current {
  border-radius: 50%;
  padding-top: 4px;
  display: inline-block;
  width: 36px;
  height: 36px;
  margin: 0 6px;
}

.pagination .current {
  background: #ccc;
  color: #fff;
}

.pagination1 {
  display: flex;
  justify-content: center;
}

.prev,
.next {
  display: inline-block;
  background: #0bd;
  color: #fff;
  margin: 0 1px;
}

.prev:hover,
.next:hover {
  background: #0090aa;
}

.prev {
  border-radius: 2rem 0 0 2rem;
  padding: 1rem 1rem 1rem 2rem;
}

.next {
  border-radius: 0 2rem 2rem 0;
  padding: 1rem 2rem 1rem 1rem;
  text-align: right;
}

/* 矢印アイコン */
.prev::before,
.next::after {
  font-family: "Font Awesome 5 Pro";
  font-weight: 900;
}

.prev::before {
  content: "\f060";
  margin-right: .5rem;
}

.next::after {
  content: "\f061";
  margin-left: .5rem;
}

@media (max-width: 700px) {
  .pagination {
    margin: 2rem 0 2rem 0;
    font-size: 5rem;
  }

  .pagination a,
  .pagination .current {
    border-radius: 50%;
    padding-top: 17px;
    display: inline-block;
    width: 70px;
    height: 70px;
    margin: 0 10px;
  }

  .flower::before {
    top: -30rem;
  }

  .flower2::before {
    top: -30rem;
  }

  .pagination1 {
    margin: 2rem 0 2rem 0;
    font-size: 2rem;
  }
}

/* KeyPress-Z box24*/
.box24 {
  width: 1020px;
  padding: 20px;
  /* background: #00aaff; */
  min-height: 100vh;
  margin: 0 auto;
  text-align: center;
}

.titleAreaZ {
  padding-top: 12rem;
  height: 500px;
  text-align: center;
}

.areaZ {
  position: relative;
}

/* エリアZのモバイル */
@media (max-width: 700px) {
  .areaZ {
    margin-top: 3rem;
  }

  #foot1 {
    top: 11vh;
    left: 8vw;
  }

  #foot2 {
    top: 11vh;
    left: 8vw;
  }

  #anime {
    top: 6vh;
    left: 200vw;
  }

  #anime2 {
    top: 12vh;
    left: 150vw;
  }

  #anime3 {
    top: 12vh;
    left: 100vw;
  }
}

/* エリアZのモバイル　閉じ */
#anime {
  position: absolute;
  width: 125px;
  height: 100px;
  left: 700px;
  top: 100px;
  -webkit-animation: move 20s linear infinite, updown 5s ease-in-out infinite alternate;
}

#anime2 {
  position: absolute;
  width: 125px;
  height: 100px;
  left: 600px;
  top: 200px;
  -webkit-animation: move 20s linear infinite, updown1 5s ease-in-out infinite alternate;
}

#anime3 {
  position: absolute;
  width: 125px;
  height: 100px;
  left: 500px;
  top: 300px;
  -webkit-animation: move 20s linear infinite, updown2 5s ease-in-out infinite alternate;
}

#anime4 {
  position: absolute;
  width: 125px;
  height: 100px;
  left: 800px;
  top: 150px;
  -webkit-animation: move 20s linear infinite, updown 5s ease-in-out infinite alternate;
}

#anime5 {
  position: absolute;
  width: 125px;
  height: 100px;
  left: 750px;
  top: 260px;
  -webkit-animation: move 20s linear infinite, updown1 5s ease-in-out infinite alternate;
}

#anime6 {
  position: absolute;
  width: 125px;
  height: 100px;
  left: 550px;
  top: 320px;
  -webkit-animation: move 20s linear infinite, updown2 5s ease-in-out infinite alternate;
}

@-webkit-keyframes 'move' {
  from {}

  to {
    left: -60px;
  }
}

@-webkit-keyframes 'updown' {
  from {}

  to {
    top: 140px;
  }
}

@-webkit-keyframes 'updown1' {
  from {}

  to {
    top: 130px;
  }
}

@-webkit-keyframes 'updown2' {
  from {}

  to {
    top: 150px;
  }
}

#anime img {
  position: absolute;
}

#anime2 img {
  position: absolute;
}

#anime3 img {
  position: absolute;
}

#anime4 img {
  position: absolute;
}

#anime5 img {
  position: absolute;
}

#anime6 img {
  position: absolute;
}

#foot1 {
  top: 5.5rem;
  left: 6rem;
  -webkit-transform-origin: right top;
  -webkit-transform: rotate(30deg);
  -webkit-animation: f1 500ms linear infinite alternate;
}

#foot2 {
  top: 5.5rem;
  left: 6rem;
  -webkit-transform-origin: right top;
  -webkit-transform: rotate(-30deg);
  -webkit-animation: f2 500ms linear infinite alternate;
}

@-webkit-keyframes 'f1' {
  from {}

  to {
    -webkit-transform: rotate(-30deg);
  }
}

@-webkit-keyframes 'f2' {
  from {}

  to {
    -webkit-transform: rotate(30deg);
  }
}

@-webkit-keyframes 'body_anime' {
  from {}

  to {
    -webkit-transform: rotate(-15deg);
  }
}

#h_body {
  -webkit-animation: body_anime 500ms linear infinite alternate
}

.listZ {
  display: flex;
  flex-wrap: wrap;
}

.box24 li {
  font-size: 3.2rem;
  margin-left: 1.2rem;
}

.fa-at.jump1 {
  color: #f67690;
  animation: 0.4s cubic-bezier(.2, 1, .2, 1) 0s 1 jump1;
}

.fa-at::before {
  font-family: "Font Awesome 5 Pro";
  font-weight: 900;
  content: "\f1fa";
  color: #3b82c4;
}

.fa-cloud {
  color: #f9e900;
}

.fa-cloud::before {
  font-family: "Font Awesome 5 Pro";
  font-weight: 900;
  font-size: 3rem;
  content: "\f0c2";
  color: #fff;
}

.fa-university {
  color: #92cb97;
}

.fa-university::before {
  font-family: "Font Awesome 5 Pro";
  font-weight: 900;
  content: "\f501";
  color: #de4d4d;
}

.buttonZ {
  margin-top: 1.7rem;
  border-radius: 50%;
  width: 9rem;
  height: 6rem;
  background: #fff;
  color: #f9e900;
  font-size: 2rem;
  font-weight: bold;
}

.buttonZ.jump1 {
  animation: 0.4s cubic-bezier(.2, 1, .2, 1) 0s 1 jump1;
}

.lastMsg {
  color: #fff;
  padding: 1rem;
  position: absolute;
  left: 3rem;
  bottom: -8.7rem;
  font-size: 1.8rem;
  font-weight: bold;
}

.buttonAreaZ {
  position: absolute;
  margin: 2.5rem 0 1rem 46rem;
}

.lastButton p {
  font-size: 2.5rem;
}

.lastButton {
  width: 13rem;
  height: 5rem;
  display: inline-block;
  position: relative;
  padding: 0.5em 1.4em;
  text-decoration: none;
  background: #3b82c4;
  /*ボタン色*/
  color: #FFF;
  border-bottom: solid 5px #36528c;
  /*ボタン色より暗めに*/
  border-right: solid 5px #5375bd;
  /*ボタン色より暗めに*/
}

.lastButton::before {
  content: " ";
  position: absolute;
  bottom: -5px;
  left: -1px;
  width: 0;
  height: 0;
  border-width: 0 6px 6px 0px;
  border-style: solid;
  border-color: transparent;
  border-bottom-color: #FFF;
}

.lastButton::after {
  content: " ";
  position: absolute;
  top: -1px;
  right: -5px;
  width: 0;
  height: 0;
  border-width: 0px 6px 6px 0px;
  border-style: solid;
  border-color: #FFF;
  border-bottom-color: transparent;
}

.lastButton:active {
  /*ボタンを押したとき*/
  border: none;
  -webkit-transform: translate(6px, 6px);
  transform: translate(6px, 6px);
}

.lastButton:active:after, .btn-square-slant:active:before {
  content: none;
  /*ボタンを押すと線が消える*/
}

#containerZ {
  position: relative;
  height: 0;
  margin: 0;
  padding: 0;
}

.balloons div {
  position: absolute;
  left: 7%;
  bottom: -150px;
  width: 80px;
  height: 87px;
  background: #ffa07a;
  border-radius: 50%;
  box-shadow: -6px -6px 0 rgba(0, 0, 0, 0.15) inset;
}

.balloons div:before {
  content: '';
  position: absolute;
  left: 38px;
  bottom: -70px;
  width: 2px;
  height: 70px;
  background: #a0a0a0;
  transform: rotate(5deg);
}

/* .balloons div:after {
	content:"▲";
	position: absolute;
	left: 33px;
	bottom: -13px;
	color: #ffa07a;
} */
.balloons div:nth-of-type(1) {
  left: 5%;
  background: #9400d3;
  animation: wobbling_x 0.8s ease-in-out infinite alternate,
    wobbling_y 1.1s ease-in-out infinite alternate,
    fly_high 13s ease-in-out infinite;
}

.balloons div:nth-of-type(2) {
  left: 12%;
  background: #ffc0cb;
  animation: wobbling_x 0.8s ease-in-out infinite alternate,
    wobbling_y 1.1s ease-in-out infinite alternate,
    fly_high 7s ease-in-out infinite;
}

.balloons div:nth-of-type(3) {
  left: 18%;
  background: #ffa07a;
  animation: wobbling_x 0.8s ease-in-out infinite alternate,
    wobbling_y 1.1s ease-in-out infinite alternate,
    fly_high 16s ease-in-out infinite;
}

.balloons div:nth-of-type(4) {
  left: 22%;
  background: #f0f8ff;
  animation: wobbling_x 0.8s ease-in-out infinite alternate,
    wobbling_y 1.1s ease-in-out infinite alternate,
    fly_high 14s ease-in-out infinite;
}

.balloons div:nth-of-type(5) {
  left: 36%;
  background: #f5a500;
  animation: wobbling_x 0.8s ease-in-out infinite alternate,
    wobbling_y 1.1s ease-in-out infinite alternate,
    fly_high 7s ease-in-out infinite;
}

.balloons div:nth-of-type(6) {
  left: 50%;
  background: #3b82c4;
  animation: wobbling_x 0.9s ease-in-out infinite alternate,
    wobbling_y 1.2s ease-in-out infinite alternate,
    fly_high 12s ease-in-out infinite;
}

.balloons div:nth-of-type(7) {
  left: 62%;
  background: #ffc0cb;
  animation: wobbling_x 0.8s ease-in-out infinite alternate,
    wobbling_y 1.1s ease-in-out infinite alternate,
    fly_high 15s ease-in-out infinite;
}

.balloons div:nth-of-type(8) {
  left: 68%;
  background: #9400d3;
  animation: wobbling_x 0.8s ease-in-out infinite alternate,
    wobbling_y 1.1s ease-in-out infinite alternate,
    fly_high 7s ease-in-out infinite;
}

.balloons div:nth-of-type(9) {
  left: 78%;
  background: #ffa07a;
  animation: wobbling_x 0.9s ease-in-out infinite alternate,
    wobbling_y 1.2s ease-in-out infinite alternate,
    fly_high 9s ease-in-out infinite;
}

.balloons div:nth-of-type(10) {
  left: 90%;
  background: #ff0000;
  animation: wobbling_x 0.8s ease-in-out infinite alternate,
    wobbling_y 1.1s ease-in-out infinite alternate,
    fly_high 11s ease-in-out infinite;
}

.balloons div:nth-of-type(11) {
  left: 7%;
  background: #f0f8ff;
  animation: wobbling_x 0.8s ease-in-out infinite alternate,
    wobbling_y 1.1s ease-in-out infinite alternate,
    fly_high 9s ease-in-out infinite 7s;
}

.balloons div:nth-of-type(12) {
  left: 5%;
  background: #ffa07a;
  animation: wobbling_x 0.8s ease-in-out infinite alternate,
    wobbling_y 1.1s ease-in-out infinite alternate,
    fly_high 7s ease-in-out infinite 2s;
}

.balloons div:nth-of-type(13) {
  left: 10%;
  background: #fff;
  animation: wobbling_x 0.8s ease-in-out infinite alternate,
    wobbling_y 1.1s ease-in-out infinite alternate,
    fly_high 8s ease-in-out infinite 5s;
}

.balloons div:nth-of-type(14) {
  left: 25%;
  background: #00ced1;
  animation: wobbling_x 0.8s ease-in-out infinite alternate,
    wobbling_y 1.1s ease-in-out infinite alternate,
    fly_high 12s ease-in-out infinite 6s;
}

.balloons div:nth-of-type(15) {
  left: 37%;
  background: #00fa9a;
  animation: wobbling_x 0.8s ease-in-out infinite alternate,
    wobbling_y 1.1s ease-in-out infinite alternate,
    fly_high 7s ease-in-out infinite 4s;
}

.balloons div:nth-of-type(16) {
  left: 45%;
  background: #00ced1;
  animation: wobbling_x 0.9s ease-in-out infinite alternate,
    wobbling_y 1.2s ease-in-out infinite alternate,
    fly_high 9s ease-in-out infinite;
}

.balloons div:nth-of-type(17) {
  left: 55%;
  background: #f9e900;
  animation: wobbling_x 0.8s ease-in-out infinite alternate,
    wobbling_y 1.1s ease-in-out infinite alternate,
    fly_high 13s ease-in-out infinite 8s;
}

.balloons div:nth-of-type(18) {
  left: 60%;
  background: #f5a500;
  animation: wobbling_x 0.8s ease-in-out infinite alternate,
    wobbling_y 1.1s ease-in-out infinite alternate,
    fly_high 10s ease-in-out infinite 1s;
}

.balloons div:nth-of-type(19) {
  left: 75%;
  background: #3aacad;
  animation: wobbling_x 0.9s ease-in-out infinite alternate,
    wobbling_y 1.2s ease-in-out infinite alternate,
    fly_high 15s ease-in-out infinite 7s;
}

.balloons div:nth-of-type(20) {
  left: 90%;
  background: #00ced1;
  animation: wobbling_x 0.8s ease-in-out infinite alternate,
    wobbling_y 1.1s ease-in-out infinite alternate,
    fly_high 11s ease-in-out infinite 6s;
}

@keyframes wobbling_x {
  0% {
    margin-left: 8px;
  }

  100% {
    margin-left: 0px;
  }
}

@keyframes wobbling_y {
  0% {
    margin-bottom: 0px;
  }

  100% {
    margin-bottom: 8px;
  }
}

@keyframes fly_high {
  100% {
    transform: translateY(-1000px);
  }
}

.keyboardArea {
  /* background: #00aaff; */
  text-align: center;
  margin: 0 auto;
  width: 1020px;
  min-height: 100vh;
  display: none;
}

/*上へ戻るボタン*/
#page-top {
  position: fixed;
  bottom: 2rem;
  right: 3rem;
  font-size: 3rem;
  line-height: 1;
  z-index: 101;
}

#page-top a {
  background: #f9e900;
  text-decoration: none;
  color: #fff;
  width: 6rem;
  padding: 1.5rem .5rem;
  text-align: center;
  display: block;
  border-radius: 90px;
  opacity: 0.9;
  transition: all .3s ease;
}

#page-top a:hover {
  text-decoration: none;
  opacity: .5;
}

.fa-chevron-up {
  font-size: 3rem;
  padding: .5rem;
}

/* フッター */
#footer {
  margin: 0 auto;
  width: 1020px;
  clear: both;
  height: 100px;
  /* background: #3b82c4; */
  text-align: center;
}

#footer p {
  padding-top: 2rem;
}

article p {
  color: #fff;
}

/* モバイル版 */
@media (max-width: 700px) {
  * {
    touch-action: manipulation;
  }

  html {
    overflow-x: hidden;
    touch-action: manipulation;
  }

  body {
    -webkit-text-size-adjust: 100%;
    font-size: 1.6vw;
  }

  h1 {
    font-size: 3.6vw;
  }

  h2 {
    font-size: 2.6vw;
  }

  .title {
    font-size: 3rem;
  }

  img {
    max-width: 100%;
  }

  /* .post-thumb {
    float: none;
  } */
  .mobileArea {
    position: fixed;
  }

  .uploadarea {
    margin-bottom: 2%;
  }

  #upload {
    font-size: 20px;
  }
}

@media (max-height: 420px) {

  /* header {
    padding: 1rem;
  } */
  h1 {
    font-size: 1.5rem;
  }

  /* button {
    padding: .5rem 1rem;
  } */
}

/* @media (min-width: 576px) {
  .areaK {
      max-width: 540px;
  }
}

@media (min-width: 768px) {
  .areaK {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  .areaK {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  .areaK {
    max-width: 1140px;
  }
} */