@charset "UTF-8";
:root {
  --blue-main: #0277bd;
  --text-gray: #546e7a;
  --cloud-white: rgba(255, 255, 255, 0.9);
  --kamome-width: 200px;
  --kamome-height: 295px
}
#kamomente {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  margin: 0;
  padding: 0;
  background: linear-gradient(to bottom, #81d4fa, #e1f5fe);
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  font-family: "Zen Maru Gothic", sans-serif;
  overflow-x: hidden;
  position: relative;
  background-image: url('../images/kamomente/bg-body-2.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
#gNav {
  margin-bottom: 0;
}
#gFooter {
  margin-top: 0;
}
.bg-kamome {
  position: absolute;
  z-index: 1;
  animation: fly linear infinite;
  width: var(--kamome-width);
  height: var(--kamome-height);
  opacity: 0.6;
  pointer-events: none
}
.bg-kamome img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  -webkit-user-drag: none
}
@keyframes fly {
  from {
    transform: translateX(-20vw) translateY(0) rotate(10deg)
  }
  to {
    transform: translateX(110vw) translateY(-100px) rotate(-10deg)
  }
}
.center-group {
  position: relative;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 50px 20px
}
.main-kamome {
  width: var(--kamome-width);
  height: var(--kamome-height);
  filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.1));
  display: flex;
  justify-content: center;
  align-items: center;
  animation: float-main 4s ease-in-out infinite
}
.main-kamome img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  -webkit-user-drag: none
}
.fukidashi {
  position: relative;
  background: var(--cloud-white);
  border-radius: 30px;
  padding: 15px 30px;
  margin-bottom: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  color: var(--blue-main);
  font-weight: 900;
  font-size: clamp(18px, 4vw, 24px);
  text-align: center;
  max-width: 100%;
  width: 500px;
  white-space: nowrap
}
.fukidashi::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  margin-left: -15px;
  border-top: 15px solid #fff;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent
}
.profile-card {
  margin-top: 25px;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(8px);
  padding: 30px;
  border-radius: 50px;
  text-align: center;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  border: 4px white solid;
  width: 90%;
  max-width: 350px
}
#kamomente h1 {
  margin: 0;
  color: var(--blue-main);
  font-size: 24px;
  font-weight: 900
}
character-name {
  display: block;
  font-size: 50px;
  line-height: 1.2;
}
#kamomente p {
  margin: 10px 0 0;
  color: var(--text-gray);
  font-size: 16px;
  font-weight: bold;
  white-space: nowrap
}
.cloud-btn {
  background: var(--cloud-white);
  padding: 15px 25px;
  border-radius: 60px;
  border: none;
  color: var(--blue-main);
  font-weight: 900;
  font-size: 18px;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  z-index: 15;
  white-space: nowrap;
  margin: 5px;
}
.button-container .cloud-btn:last-child {
  display: block;
  width: 100%;
  margin: 5px 0;
}
.pos-intro {
  top: 25%;
  left: -3%;
  transform: none
}
.pos-links {
  top: 25%;
  right: -3%;
  transform: none
}
.pos-paint {
  bottom: 50%;
  left: 8%;
  transform: none
}
.pos-friends {
  bottom: 50%;
  right: 8%;
  transform: none
}
.cloud-btn:hover {
  transform: scale(1.1);
  z-index: 20
}
@keyframes float-main {
  0%, 100% {
    transform: translateY(0) rotate(-3deg)
  }
  50% {
    transform: translateY(-30px) rotate(3deg)
  }
}
.character {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 1;
  pointer-events: none;
  background: url('../images/kamomente/character-pc.webp') center center no-repeat;
  background-size: contain;
}
/* PC */
@media (min-width: 1025px) {}
@media (max-width: 767px) {
  #kamomente h1 {
    font-size: 4vw;
  }
  character-name {
    font-size: 8vw;
  }
  .main-kamome {
    width: 120px;
    height: auto;
    margin: 6vw auto;
  }
  .character {
    height: 100%;
  }
  #kamomente {
    width: 100%;
    overflow-x: hidden;
    min-height: 90vh;
    padding: 3vw 3%;
  }
  .center-group {
    width: 100vw;
    box-sizing: border-box;
    align-items: center;
    justify-content: center;
    padding: 0 3%;
  }
  .fukidashi {
    width: 90%;
    max-width: none;
    white-space: nowrap;
    font-size: 4.5vw;
    padding: 10px 15px;
  }
  .profile-card {
    width: 85%;
    max-width: 320px;
    padding: 20px;
  }
  .profile-card h1 {
    font-size: 6vw;
    white-space: nowrap;
  }
  .profile-card p {
    font-size: 3.2vw;
    white-space: nowrap;
    margin-top: 5px;
  }
  .button-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 7px;
  }
  .cloud-btn {
    padding: 1.2vw 3vw 1.5vw;
    border-radius: 99px;
    font-size: 4.5vw;
    margin: 0.5vw;
  }
  .button-container .cloud-btn:last-child {
    margin: 0.5vw 0;
    max-width: 70%;
  }
}