@charset "UTF-8";
:root {
  --_color-text: #1E2B38;
  --accent-color: #FF379E;
  --color-lightgray: #CECECE;
  --color-gray: #9D9D9D;
  --font-family: "Kulim Park", "Zen Maru Gothic", san-serif;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--_color-text);
  font-family: var(--font-family);
  font-weight: 700;
}

p {
  color: var(--_color-text);
  font-family: var(--font-family);
  font-weight: 400;
}

.copyright {
  position: fixed;
  right: 10px;
  bottom: 10px;
}
.copyright p {
  margin: 0;
}
@media only screen and (max-width: 639px) {
  .copyright {
    text-align: center;
    position: unset;
    right: auto;
    bottom: auto;
  }
}

.backbutton {
  margin-top: 100px;
  margin-bottom: 48px;
}
.backbutton a {
  font-size: 48px;
  color: var(--color-lightgray);
  text-decoration: none;
  font-family: var(--font-family);
  font-weight: 700;
}
.backbutton a:hover {
  transition: 0.4s;
  color: var(--accent-color);
}

.mainarea {
  background-color: #fff;
  position: relative;
  margin-top: 130px;
  display: flex;
  justify-content: center;
}
.mainarea .mainarea-contents {
  width: 80%;
  max-width: 1200px;
}
.mainarea .mainarea-contents h1 {
  position: absolute;
  top: -52px;
  font-size: 84px;
  color: var(--color-gray);
  margin: 0;
}
.mainarea .mainarea-contents .icon {
  padding-top: 48px;
}
.mainarea .mainarea-contents .icon ul {
  display: flex;
  gap: 10px;
  list-style: none; /* これでリストマーカーが非表示になる */
  padding: 0;
}
.mainarea .mainarea-contents .icon ul li a img {
  width: 60px;
  height: 60px;
  transition: transform 0.2s ease; /* アニメーションのスムーズな効果 */
}
.mainarea .mainarea-contents .icon ul li a:hover img {
  transform: scale(1.1);
}
.mainarea .mainarea-contents .ptext {
  margin-top: 40px;
}

.dojinshi {
  margin: 40px 0;
}
.dojinshi ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  list-style: none; /* これでリストマーカーが非表示になる */
  padding: 0;
  gap: 18px;
}
.dojinshi ul li {
  margin: 0;
  width: 130px;
  height: auto;
  position: relative;
  overflow: hidden;
}
.dojinshi ul li img {
  width: 100%;
  height: auto;
}
.dojinshi ul .mask .caption {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0; /* マスクを表示しない */
  background-color: var(--_color-text);
  transition: all 0.6s ease;
}
.dojinshi:hover ul .mask {
  opacity: 1; /* マスクを表示する */
  padding-top: 80px; /* ホバーで下にずらす */
}

body {
  background-repeat: repeat;
  margin: 0;
}

.h1-index {
  color: var(--color-lightgray);
  font-size: 200px;
  margin: -60px 0 -50px -18px;
  position: relative;
  z-index: 315;
}
@media only screen and (max-width: 1200px) {
  .h1-index {
    font-size: 115px;
    line-height: 0.8;
    margin: -30px 0 -36px -4px;
  }
}

.fv {
  width: 50%;
  margin: 0 auto;
  position: relative;
}
@media only screen and (max-width: 1900px) {
  .fv {
    width: 55%;
  }
}
@media only screen and (max-width: 1200px) {
  .fv {
    width: 75%;
  }
}
@media only screen and (max-width: 639px) {
  .fv {
    width: 100%;
    margin-top: 80px;
  }
}
.fv .fv-img {
  width: 100%;
  position: relative; /* 画像を絶対位置に */
  z-index: 100;
  animation: floating-x 5.2s ease-in-out infinite alternate-reverse;
}
.fv .fv-img img {
  width: 100%;
  height: auto; /* 高さを自動調整 */
  animation: floating-y 1.8s ease-in-out infinite alternate-reverse;
  border-radius: 60px;
  box-shadow: 0 0 25px 0 var(--color-gray);
}
@keyframes floating-x {
  0% {
    transform: translateX(-0.5%);
  }
  100% {
    transform: translateX(0.5%);
  }
}
@keyframes floating-y {
  0% {
    transform: translateY(-1%);
  }
  100% {
    transform: translateY(1%);
  }
}
@media only screen and (max-width: 639px) {
  .fv .fv-img img {
    transform: rotate(-90deg) !important; /* 回転を強制的に適用 */
    animation: none; /* アニメーションを無効化 */
  }
}
.fv .mail {
  position: absolute;
  right: 15px;
  top: -20px;
  z-index: 765;
}
.fv .mail a img {
  width: 84px;
  height: 84px;
  transition: transform 0.2s ease; /* アニメーションのスムーズな効果 */
}
.fv .mail a:hover img {
  transform: rotate(10deg); /* 時計回りに5度回転 */
}
.fv .namearea {
  position: absolute;
  left: 60px;
  bottom: 50px;
  z-index: 765;
}
@media only screen and (max-width: 639px) {
  .fv .namearea {
    display: none;
  }
}
.fv .namearea p {
  background-color: white;
  font-weight: 700;
  padding: 2px 8px;
  color: var(--accent-color);
}
.fv .namearea .icon ul {
  display: flex;
  gap: 10px;
  list-style: none; /* これでリストマーカーが非表示になる */
  padding: 0;
}
.fv .namearea .icon ul li {
  display: flex; /* 子要素をフレックスで配置 */
  align-items: flex-end; /* 子要素を下寄せ */
}
.fv .namearea .icon ul li a {
  width: 60px;
  height: 60px;
}
.fv .namearea .icon ul li a img {
  width: 60px;
  height: 60px;
  transition: transform 0.2s ease; /* アニメーションのスムーズな効果 */
}
.fv .namearea .icon ul li a:hover img {
  transform: scale(1.1);
}
.fv .namearea .icon ul li:nth-child(3) a {
  width: 76px; /* 横幅を76pxに */
  height: 43px; /* 縦幅を43pxに */
}
.fv .namearea .icon ul li:nth-child(3) a img {
  width: 76px; /* 横幅を76pxに */
  height: 43px; /* 縦幅を43pxに */
}
.fv .gamearea {
  position: absolute;
  right: -51px;
  bottom: -60px;
  z-index: 315;
  display: flex;
}
@media only screen and (max-width: 639px) {
  .fv .gamearea {
    display: none;
  }
}
.fv .gamearea h2 {
  font-size: 90px;
  padding: 0;
  margin: 0;
  align-content: end;
  color: var(--color-gray);
}
.fv .gamearea ul {
  list-style: none;
}
.fv .gamearea ul li a img {
  width: 226px;
  height: auto;
  transition: transform 0.2s ease; /* アニメーションのスムーズな効果 */
}
.fv .gamearea ul li a:hover img {
  transform: translate(0, -40px);
}

.namearea-sp {
  display: none;
}
@media only screen and (max-width: 639px) {
  .namearea-sp {
    display: block;
    text-align: center;
    margin-top: 130px;
  }
}
.namearea-sp p {
  width: 150px;
  margin: 0 auto;
  background-color: white;
  font-weight: 700;
  padding: 2px 8px;
  color: var(--accent-color);
}
.namearea-sp .icon {
  text-align: center;
}
.namearea-sp .icon ul {
  display: flex;
  justify-content: center;
  gap: 10px;
  list-style: none; /* これでリストマーカーが非表示になる */
  padding: 0;
}
.namearea-sp .icon ul li {
  display: flex; /* 子要素をフレックスで配置 */
  align-items: flex-end; /* 子要素を下寄せ */
}
.namearea-sp .icon ul li a {
  width: 60px;
  height: 60px;
}
.namearea-sp .icon ul li a img {
  width: 60px;
  height: 60px;
  transition: transform 0.2s ease; /* アニメーションのスムーズな効果 */
}
.namearea-sp .icon ul li a:hover img {
  transform: scale(1.1);
}
.namearea-sp .icon ul li:nth-child(3) a {
  width: 76px; /* 横幅を76pxに */
  height: 43px; /* 縦幅を43pxに */
}
.namearea-sp .icon ul li:nth-child(3) a img {
  width: 76px; /* 横幅を76pxに */
  height: 43px; /* 縦幅を43pxに */
}

.gamearea-sp {
  display: none;
  position: relative;
  width: 100%;
  background-color: white;
  margin-top: 100px;
  margin-bottom: 100px;
  padding: 40px 0;
  justify-content: center;
}
@media only screen and (max-width: 639px) {
  .gamearea-sp {
    display: flex;
  }
}
.gamearea-sp h2 {
  font-size: 80px;
  padding: 0;
  margin: 0;
  align-content: end;
  color: var(--color-gray);
  position: absolute;
  top: -54px;
}
.gamearea-sp ul {
  list-style: none;
  padding: 0;
}
.gamearea-sp ul li a {
  margin: 20px auto;
}
.gamearea-sp ul li a img {
  width: 320px;
  height: auto;
  transition: transform 0.2s ease; /* アニメーションのスムーズな効果 */
}

.producer {
  position: fixed;
  left: 10px;
  bottom: -16px;
}
.producer a {
  font-size: 50px;
  text-decoration: none;
}
.producer a h2 {
  margin: 0;
  color: var(--color-lightgray);
  transition: 0.4s;
}
.producer a:hover h2 {
  color: var(--accent-color);
  transition: 0.4s;
  transform: translateY(-5px);
}/*# sourceMappingURL=style.css.map */