@charset "utf-8";

/*基本レイアウトここから↓*/
body {
  background-color: #f4ebe8;
  background-image: url(../images/bg.png);
  background-size: 35%;
  background-attachment: fixed;
  color: rgb(69, 30, 0);
  font-family: "ヒラギノ角ゴ Pro W3", Meiryo, メイリオ, Osaka, "MS PGothic", arial, helvetica, sans-serif;
  line-height: 1.5;
  margin: 0;
  margin-top: min(200px, 17vw);
  position: relative;
  overflow-x: hidden;
  font-size: large;
}

a {
  color: rgb(130, 57, 1);
}

#breadcrumb,
#contents,
aside,
.artwork {
  margin: 0 auto 0 auto;
  padding: 0 auto 0 auto;
  width: 100vw;
  max-width: 1200px;
  text-align: center;
}

header,
nav,
footer {
  background-color: #ff8cc6;
}

header {
  position: fixed;
  top: 0;
  right: 0;
  height: 17vw;
  max-height: 200px;
  z-index: 9999;
  width: 100%;
  /* display: flex; */
  /* padding:20px; */
}

#logo-g {
  display: flex;
  justify-content: space-around;
  align-items: center;
  height: 100%;
}

#logo-g a {
  display: block;
  height: 90%;
}

#logo {
  color: #fff;
  font-size: 5vw;
  font-weight: bold;
  text-align: center;
  margin: 0;
}

#logo-img {
  margin: 0;
  padding: 0;
  /* width: 20vw; */
  max-width: 200px;
  /* position: absolute; */
  /* top:10px;
  left:2vw; */
  height: 100%;
}

header button {
  display: block;
  /* position: absolute; */
  max-width: 200px;
  /* top:0;
  right:0; */
  border: none;
  cursor: pointer;
  width: 17vw;
  background-color: #ff8cc6;
  height: 80%;
}

header button:focus {
  outline: none;
}

header button img {
  height: 100%;
}

header button ul {
  padding: 0;
  position: relative;
  height: 100%;
  margin: 0;
}

header button li {
  list-style-type: none;
  height: 100%;
  position: absolute;
}

.open,
.close {
  animation: yurayura 2s linear infinite;
  scale: 1;
}

@keyframes yurayura {
  0% {
    transform: rotate(0deg);
  }

  25% {
    transform: rotate(-2deg);
  }

  50% {
    transform: rotate(0deg);
  }

  75% {
    transform: rotate(2deg);
  }

  100% {
    transform: rotate(0deg);
  }
}

#menu {
  /* position:absolute; */
  /* top:0;
	bottom:0;
  right: 0; */
  width: 250px;
  margin-right: -250px;
  background: #fd51a7;
  position: absolute;
  right: 0;
  /* z-index: 999999; */
}

#menu ul {
  margin: 0;
  padding: 0;
  text-align: center;
}

#menu li {
  list-style-type: none;
}

#menu li a {
  text-decoration: none;
  font-weight: bold;
  display: block;
  padding: 20px 25px;
  color: #FFF;
  border-bottom: 1px solid #FFF;
}

#menu li:last-child a {
  border-bottom: none;
}


.on_page,
#menu li a:hover {
  background: #db51fd;
}

#contents {
  display: block;
  position: relative;
  margin-top: min(200px, 17vw);
}

#anime {
  position: relative;
}

#negishi {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 20vw;
  display: none;
  max-width: 250px;
}

#nirako {
  position: absolute;
  top: 0;
  right: 0;
  width: 20vw;
  display: none;
  max-width: 250px;
}

#parfait {
  width: 40vw;
  max-width: 500px;
  /* display: inline-block; */
  animation: hurueru 0.5s infinite;
}

/*震えるパフェ*/

@keyframes hurueru {

  /* transition-duration: 10s; */
  0% {
    transform: translate(0px, 0px) rotateZ(0deg)
  }

  25% {
    transform: translate(0px, 0px) rotateZ(3deg)
  }

  50% {
    transform: translate(0px, 0px) rotateZ(0deg)
  }

  75% {
    transform: translate(0px, 0px) rotateZ(-3deg)
  }

  100% {
    transform: translate(0px, 0px) rotateZ(0deg)
  }
}

/*パンくずリスト*/
#breadcrumb {
  overflow: hidden;
  margin-bottom: 10px;
}

#breadcrumb ul li {
  list-style-type: none;
  float: left;
  margin-right: 1em;
}

article h1 {
  background-color: #fff;
  color: #29e7CD;
  /* width: 80vw; */
  font-size: 200%;
  text-align: center;
  margin: 5px, auto;
}

section {
  background-color: rgb(255, 255, 255, 0.7);
  padding: 10px;
}

h2 {
  color: #41AFAD;
}

.sns_icon {
  background-color: white;
  margin-top: 30px;
}

#profile .sns_icon,
#contact .sns_icon,
#game .sns_icon,
#hobby .sns_icon,
#minecraft .sns_icon,
#privacy .sns_icon,
#shop .sns_icon,
#x_sns .sns_icon,
#youtube .sns_icon {
  margin-bottom: 30px;
}

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

.sns_icon a {
  height: 12vw;
  max-height: 120px;
}

.sns_icon img {
  height: 12vw;
  max-height: 120px;
}


footer {
  width: 100vw;
  margin: 0;
  text-align: center;
  padding-bottom: 15px;
}

footer nav {
  display: flex;
  width: 90%;
  justify-content: space-around;
  padding: 20px;
}

footer img {
  width: 20vw;
  min-width: 120px;
  max-width: 240px;
}

footer nav ul {
  margin: 0;
  padding-left: 0;
  list-style-type: none;
  text-align: left;
}

footer nav li {
  margin-right: 5px;
}

/* フッターとアニメのレスポンシブ対応 */


@media screen and (min-width:1500px) {

  footer nav {
    width: 70%;
  }

}

/* 
@media screen and (max-width:1250px) {
  
  #contents {
    margin-top: 17vw;
  } */

@media screen and (max-width:800px) {
  footer nav {
    flex-direction: column;
    align-items: center;
  }

  footer img {
    text-align: center;
  }

  footer li {
    text-align: center;
  }
}


/*スライドショーここから*/

#slide {
  text-align: center;
}

#slide ul {
  position: relative;
  padding-left: 0;
  height: calc(80vw*0.56);
  max-height: 514px;
}

#slide li {
  position: absolute;
  width: 100%;
  list-style-type: none;
}

#button {
  /* padding-top: 520px; */
  text-align: center;
  margin-bottom: 10px;

}

#button ul {
  display: inline-block;
  padding-left: 0;
}

#button ul li {
  float: left;
  margin-right: 15px;
  list-style-type: none;
}

#button ul li:last-child {
  margin-right: 0;
}

#button ul li a {
  text-indent: -9999px;
  text-decoration: none;
  display: block;
  width: 14px;
  height: 14px;
  border-radius: 7px;
  background: #29e7CD;
}

#button ul li a.target {
  background: #41AFAD;
}

#slide-top {
  margin-bottom: 30px;
}

/*スライドショーここまで*/

/*スライドショースマホ対応*/
@media screen and (max-width:1200px) {
  #slide img {
    width: 80vw;
  }
}


/*トップに戻るボタン1/2*/
.pagetop {
  height: 50px;
  width: 50px;
  position: fixed;
  right: 30px;
  bottom: 30px;
  background: #fff;
  border: solid 2px #ff8cc6;
  border-radius: 50%;
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 2;
  cursor: pointer;
}

/*トップに戻るボタン2/2*/
.pagetop__arrow {
  display: block;
  height: 10px;
  width: 10px;
  border-top: 3px solid #ff8cc6;
  border-right: 3px solid #ff8cc6;
  transform: translateY(20%) rotate(-45deg);
}

/*基本レイアウトここまで↑*/

/*プロフィールページ*/

#prf h2 {
  margin-bottom: 0;
}

#prf div {
  display: flex;
  align-items: center;
  justify-content: center;
}

#prf img {
  width: 20vw;
  min-width: 120px;
  max-width: 200px;
}

#prf p {
  margin: 14px;
  margin-top: 0;
  text-align: left;
}

@media screen and (max-width:800px) {
  #prf div {
    flex-direction: column
  }
}

/*youtubeページ*/

#yt h2,
#yt h3 {
  margin-bottom: 0;
}

#yt h2:nth-of-type(2) {
  margin-top: 40px;
}

#yt h3 {
  margin-top: 10px;
  text-align: left;
}

.movie {
  width: 100%;
  aspect-ratio: 16 / 9;
}

.movie iframe {
  width: 100%;
  height: 100%;
}

#yt p {
  text-align: left;

  margin-top: 0;
}

.ch_link {
  display: flex;
  justify-content: center;
  align-items: center;
}

.ch_link h2 {
  margin-top: 0;
}

.ch_link img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  padding: 10px;
}

.space {
  margin-top: 50px;
}

@media screen and (min-width:800px) {
  .movie {
    width: 40%;
    aspect-ratio: 16 / 9;
  }

  .movie iframe {
    width: 100%;
    height: 100%;
  }

  #yt p {
    margin-left: 20px;
    width: 350px;
  }

  #yt div {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  h3 {
    margin-left: 200px;
  }
}

/*最新情報ページ*/

#news div{
  border-bottom: 1px dotted #6c5f45;
  display: flex;
  justify-content: center;
    align-items: center;
}


#news ul {
  list-style-type: none;
  padding-left: 0;
  margin-top: 0;
}

#news ul li {
  padding: 20px 0 20px 175px;
  text-indent: -175px;
}

#news ul li time {
  display: inline-block;
  width: 175px;
  font-weight: bold;
  color: #6c5f45;
  text-indent: 0;
}


#tweet {
  text-align: center;
  display: flex;
  justify-content: center;
}

#tweet a {
  text-align: center;
}

#x_sns h2 {
  margin-bottom: 10px;
}

.sns img {
  animation: dokundokun 2000ms ease infinite;
}

@keyframes dokundokun {
  0% {
    transform: scale(1);
  }

  15% {
    transform: scale(1.05);
  }

  30% {
    transform: scale(1);
  }

  45% {
    transform: scale(1.05);
  }

  70% {
    transform: scale(1);
  }
}

.sns p {
  margin: 3px;
}


@media screen and (max-width:800px) {
  #news div {
    display: flex;
    flex-direction: column;
  }

  #news p {
margin-top: 0;
  }

  #news ul li {
    padding: 20px 0 5px 175px;
    text-indent: -175px;
}
}
/*作品のページ*/
#hobby h3 {
  margin-left: 0;
}

.hobby {
  display: flex;
  justify-content: center;
  max-width: 1200px;
}

.hobby div {
  width: 22vw;
  max-width: 290px;
}

.hobby img {
  width: 22vw;
  max-width: 290px;
}

.hobby p {
  margin: 0;
  padding-left: 0.5em;
  padding-right: 0.5em;
  margin-bottom: 1em;
}

@media screen and (max-width:800px) {
  .hobby {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hobby div {
    width: 80vw;
  }

  .hobby img {
    width: 80vw;
  }
}

/*マイクラ*/
.gallery {
  display: flex;
  flex-direction: column;
  padding: 0;
}


.world {
  display: block;
  width: 100%;
  margin: 0 auto;
}

.world ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  width: 100%;
  padding: 0;
  margin: 0;
}

.world li {
  position: relative;

  /* float: left; */
  max-width: 320px;
  margin: 0 10px 50px 10px;
  color: #fff;
  line-height: 2em;
}

.world li img {
  vertical-align: bottom;
  width: 90vw;
  max-width: 320px;
  cursor: pointer;
}

.world li div {
  cursor: pointer;
}

.world div {
  position: absolute;
  display: none;
  width: 100%;
  height: 100%;
  padding: 10px;
  background: rgba(17, 179, 179, .7);
  top: 0;
  left: 0;
  box-sizing: border-box;
}

.world p {
  position: relative;
  top: 10px;
  margin: 2px;
}

.g_caption {
  margin: 18px 18px;
}

  /* マーカーを引く */
.marker {
  background:linear-gradient(transparent 50%, rgba(103, 255, 197, 0.5) 20%); 
  display: inline;   
  font-weight: bolder;      
  
  /* 背景の繰り返しを停止 */
  background-repeat: no-repeat;

  /* マーカーの横方向を0にして縮める */
  background-size: 0% 100%;

  /* マーカーが引かれる速度を指定 */
  transition:background-size 1.5s;
}

/* マーカーが引かれる際に付与するクラス */
.marker.on {
  /* 横方向を100%にして、マーカーを引く */
  background-size: 100% 100%;                                               
}

/*ショップ*/
#goods div {
  display: flex;
  align-items: center;
  justify-content: center;
}

#goods img {
  width: 40vw;
  max-width: 300px;
}

#goods div p {
  width: 50vw;
  max-width: 500px;
  text-align: left;
  margin-left: 5px;
}

#goods h2 {
  margin-top: 40px;
  margin-bottom: 0;
}

/*問い合わせ*/

#privacy section p:first-child {
  margin-top: 20px;
}

#privacy h3 {
  margin-left: 0;
  text-align: center;
  margin-bottom: 5px;
}

#privacy p {
  margin-top: 0;
}

#privacy section p:last-child {
  text-align: right;
  margin-right: 50px;
}

#end img {
  width: 100%;
}

/*game*/

#mini1, #mini2, #mini3, #mini4, #mini5, #mini6, #mini7, #mini8, #mini9, #mini10, #mini11, #mini12, #mini13, #mini14, #mini15, #mini16, #mini17, #mini18, #mini19, #mini20, #mini21, #mini22, #mini23, #mini24{
  position: relative;
}

canvas {
  position: absolute;
  left: 0;
  top: 0;
  width: 100vw;
  z-index: -1;
  max-width: 1200px;
  /* canvasを画像の後ろに配置 */
}

canvas.show {
  z-index: 999;
  /* canvasを画像の前に配置 */
}

#mini_game img {
  max-width: 1000px;
  width: 90vw;
}

#mini_game div,
#mini_game area {
  cursor: url(../images/hand2.png), auto;
}

/*吹き出し*/
#balloon5 {
  display: flex;
  align-items: center;
  margin: 1.5em 0 0 0;
  overflow: hidden;
  width: 100%;
  max-width: 1200px;
  justify-content: center;
}

#faceicon {
  margin-right: 10px;  /* 吹き出しとの間隔 */
}

#faceicon img {
  width: 100px;   /* 画像の幅 */
}
/* 
#chatting {
  flex: 1;  /* 吹き出し部分が残りのスペースを埋める 
} */

#says {
  padding: 17px 13px;
  border-radius: 12px;
  background: #ffd1f5;
  position: relative;
}

#says:after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 18px; 
  left: -24px;
  border: 12px solid transparent;
  border-right: 12px solid #ffd1f5;
}

#says p {
  margin: 0;
  padding: 0;
}

/*次のレベルへ*/
#level_btn {
  display: flex;
  flex-direction: column;
    align-items: center;
  margin-bottom: 1.5em;
}

#level {
  margin-bottom: 6px;
  width: 100%;
  max-width: 180px;
  height: 60px;
position: relative;
text-decoration: none;
display: flex;
justify-content: center;
align-items: center;
border-radius: 9999px;
background-color: #29e7CD;
box-shadow: 6px 6px 0 #41AFAD;
transition: all 0.3s ease;
}

#level::before {
  content: '';
  width: calc(100% - 10px);
  height: calc(100% - 10px);
  position: absolute;
  /* top: 5px;
  left: 5px; */
  z-index: 2;
  display: block;
  border: 2px dotted #fff;
  border-radius: 9999px;
}
#level::after {
  content: '';
  position: absolute;
  top: calc(50% - 3px);
  right: 30px;
  display: block;
  width: 11px;
  height: 9px;
  background-color: #41AFAD;
clip-path: polygon(0 0, 0 100%, 100% 50%);
transition: all 0.3s ease;
}

#level:hover {
  color: #ff8cc6;
  box-shadow: 0 0 0 #fff;
  transform: translateY(6px);
}

#level:hover::after {
right: 25px;
}