@charset "UTF-8";
@font-face {
  font-family: "yowaku";
  src: url(../fonts/851CHIKARA-YOWAKU_002.ttf) format("truetype");
}
body {
  color: #18222c;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  min-width: 375px;
  font-size: 20px;
  font-family: "momochidori-variable", sans-serif;
  font-variation-settings: "ital" 0, "wght" 400, "wdth" 100;
}

section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
}

.section_inner {
  position: relative;
  max-width: 1280px;
  width: 100%;
  padding: 60px 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
}

.section_heading {
  font-size: 40px;
  font-family: "yowaku", sans-serif;
  font-weight: bold;
  color: #a66d60;
}
@media screen and (max-width: 767px) {
  .section_heading {
    font-size: 36px;
  }
}

.point_image {
  position: absolute;
  width: 180px;
  height: 180px;
  -webkit-transform: rotate(30deg);
          transform: rotate(30deg);
  right: 5%;
  z-index: 0;
}
.point_image:hover {
  opacity: 0.7;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .point_image {
    width: 100px;
    height: 100px;
  }
}
@media screen and (max-width: 767px) {
  .point_image {
    width: 70px;
    height: 70px;
  }
}
.point_image.left_point {
  left: 5%;
  -webkit-transform: rotate(-30deg);
          transform: rotate(-30deg);
}
.point_image img {
  width: 100%;
  height: 100%;
  opacity: 0.8;
}
.point_image::before {
  content: "TOPへ";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 5;
  font-weight: bold;
  font-size: 20px;
  text-wrap: nowrap;
  border: 1px solid #fff;
}

.hero_view {
  background: url("../img/Top_View.png") no-repeat center center/cover;
  width: 100%;
  min-width: 375px;
  height: 100vh;
}
.hero_view .title_image img {
  width: 100%;
  text-align: center;
}

.top_menu {
  position: relative;
  top: -200px;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .top_menu {
    top: -580px;
  }
}
.top_menu .menu_line_top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
}
.top_menu .menu_line_bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
}

.menu:hover {
  -webkit-animation: hover_menu 0.4s infinite alternate;
          animation: hover_menu 0.4s infinite alternate;
}
.menu a {
  display: grid;
  place-items: center;
  font-size: 16px;
  font-weight: bold;
  width: 100px;
  height: 100px;
  padding: 5px;
  border-radius: 50px;
  border: 1px solid #18222c;
  background: #fcf;
  color: #18222c;
}
@media screen and (max-width: 767px) {
  .menu a {
    width: 80px;
    height: 80px;
    font-size: 14px;
  }
}
.menu a:hover {
  -webkit-animation: menu 0.8s infinite alternate;
          animation: menu 0.8s infinite alternate;
}

@-webkit-keyframes menu {
  from {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
  }
  to {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}

@keyframes menu {
  from {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
  }
  to {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}
@-webkit-keyframes hover_menu {
  from {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  to {
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
  }
}
@keyframes hover_menu {
  from {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  to {
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
  }
}
.menu_big {
  -webkit-animation: menu 0.8s infinite alternate;
          animation: menu 0.8s infinite alternate;
}
.menu_big:hover {
  -webkit-animation: hover_menu 0.4s infinite alternate;
          animation: hover_menu 0.4s infinite alternate;
}
.menu_big a {
  display: grid;
  place-items: center;
  font-size: 24px;
  width: 150px;
  height: 150px;
  padding: 10px;
  border-radius: 92px;
  border: 1px solid #18222c;
  background: #fcf;
}
@media screen and (max-width: 767px) {
  .menu_big a {
    width: 130px;
    height: 130px;
    font-size: 20px;
  }
}

.character {
  background-color: #f8f9fa;
  margin-top: -250px;
}
.character .section_heading {
  padding-top: 60px;
}
.character .character_contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 40px;
}
.character .character_content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}
@media screen and (max-width: 767px), screen and (min-width: 768px) and (max-width: 1024px) {
  .character .character_content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.character .character_content .character_state {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.character .character_content .character_state .character_name {
  font-size: 24px;
  font-weight: bold;
  margin-top: 20px;
}
.character .character_content .character_image1 {
  width: 300px;
  height: 300px;
  border-radius: 300px;
  border: 5px solid #18222c;
  background: url(../img/SleepCat.png) no-repeat center center/contain;
  background-color: #898989;
}
.character .character_content .character_image2 {
  width: 300px;
  height: 300px;
  border-radius: 300px;
  border: 5px solid #18222c;
  background: url(../img/Master.png) no-repeat center center/contain;
  background-color: #898989;
}
.character .character_content .character_text {
  font-size: 20px;
  display: grid;
  place-items: center;
}
.character .character_content .character_text .character_text_list :nth-child(n+1) {
  margin-top: 18px;
}

.story_text {
  font-weight: bold;
  font-size: 32px;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .story_text {
    font-size: 28px;
  }
}
@media screen and (max-width: 767px) {
  .story_text {
    font-size: 20px;
  }
}

.story_contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
}
.story_contents .story_content_images {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}
.story_contents .story_content_image {
  position: relative;
  width: 300px;
  height: 300px;
}
.story_contents .story_content_image img {
  width: 100%;
  height: 100%;
}
.story_contents .story_content_image .image_inner {
  position: absolute;
  font-size: 28px;
  font-weight: bold;
  width: 100%;
  color: #ff0004;
  top: 20%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.story_contents .story_content_image .image_inner.middle {
  top: 40%;
}
.story_contents .story_content_image .image_inner.bottom {
  top: 60%;
}
@media screen and (max-width: 767px), screen and (min-width: 768px) and (max-width: 1024px) {
  .story_contents .story_content_image .image_inner {
    font-size: 24px;
  }
}

.system {
  background-color: #f8f9fa;
}

.system_text {
  font-size: 24px;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .system_text {
    font-size: 20px;
  }
}

.system_images {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 100%;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 60px;
  padding-top: 60px;
  padding-bottom: 60px;
}
.system_images .system_image_box {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}
.system_images .system_image_box .system_image {
  width: 100px;
  height: 100px;
}
.system_images .system_image_box .system_image:nth-of-type(1) {
  -webkit-transform: rotate(-21deg);
          transform: rotate(-21deg);
}
.system_images .system_image_box .system_image:nth-of-type(3) {
  -webkit-transform: rotate(-12deg);
          transform: rotate(-12deg);
}
.system_images img {
  width: 100%;
  height: 100%;
  background-color: lightgray;
  border-radius: 10px;
}
.system_images .image_inner {
  font-size: 26px;
  font-weight: bold;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  text-wrap: nowrap;
}
@media screen and (max-width: 767px), screen and (min-width: 768px) and (max-width: 1024px) {
  .system_images .image_inner {
    font-size: 20px;
  }
}

.system_bg_image {
  width: 200px;
  height: 200px;
}
.system_bg_image img {
  width: 100%;
  height: 100%;
}

.system_text_list {
  position: relative;
  top: -40px;
  font-size: 24px;
  color: #ff0004;
  font-weight: bold;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
}
@media screen and (max-width: 767px), screen and (min-width: 768px) and (max-width: 1024px) {
  .system_text_list {
    font-size: 20px;
  }
}

.greeting_contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 40px;
}
.greeting_contents .greeting_image {
  width: 280px;
  height: 280px;
}
.greeting_contents .greeting_image img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}
.greeting_contents .greeting_text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.play {
  background-color: #f8f9fa;
}
.play .play_text {
  font-weight: bold;
  margin-bottom: 20px;
}
.play .play_link:hover {
  opacity: 0.7;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.footer {
  display: grid;
  place-items: center;
  background: #fcf;
  width: 100%;
  height: 40px;
}
.footer .copyright {
  font-size: 12px;
  font-weight: bold;
}