@import url("https://fonts.googleapis.com/css2?family=Mochiy+Pop+P+One&family=Shippori+Mincho:wght@400;500&display=swap");
div,
a,
.next_button {
  user-select: none;
  user-drag: none;
  -webkit-user-drag: none;
  -moz-user-select: none;
}
html {
  scroll-behavior: smooth;
}
body {
  background-image: url(../images/bg_1.jpg);
}
body::-webkit-scrollbar {
  display: none;
}
img {
  user-drag: none;
  -webkit-user-drag: none;
  -moz-user-select: none;
  width: 100%;
  height: auto;
}
:root {
  --font-f: "Mochiy Pop P One", sans-serif;
} /*///////////////レスポンシブ///////////////*/
.all {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100vh;
}
.screen {
  width: 100vw;
  height: 65vw;
  background-image: url(../images/play_bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
  filter: drop-shadow(0.1vw 0.1vw 0.3vw rgba(0, 0, 0, 0.4));
} /*///////////////ピース調整///////////////*/
.grid_item1 {
  grid-area: 1 / 1 / 2 / 2;
}
.grid_item2 {
  grid-area: 1 / 2 / 2 / 3;
}
.grid_item3 {
  grid-area: 1 / 3 / 2 / 4;
}
.grid_item4 {
  grid-area: 1 / 4 / 2 / 5;
}
.grid_item5 {
  grid-area: 2 / 1 / 3 / 2;
}
.grid_item6 {
  grid-area: 2 / 2 / 3 / 3;
}
.grid_item7 {
  grid-area: 2 / 3 / 3 / 4;
}
.grid_item8 {
  grid-area: 2 / 4 / 3 / 5;
}
.grid_item9 {
  grid-area: 3 / 1 / 4 / 2;
}
.grid_item10 {
  grid-area: 3 / 2 / 4 / 3;
}
.grid_item11 {
  grid-area: 3 / 3 / 4 / 4;
}
.grid_item12 {
  grid-area: 3 / 4 / 4 / 5;
}
.piece_item img {
  width: 40vw;
  height: 30vw;
  position: relative;
  touch-action: none;
}
.piece_item1 img {
  top: 0vw;
  left: 0vw;
}
.piece_item2 img {
  top: 0vw;
  left: -10vw;
}
.piece_item3 img {
  top: 0vw;
  left: -20vw;
}
.piece_item4 img {
  top: 0vw;
  left: -30vw;
}
.piece_item5 img {
  top: -10vw;
  left: 0vw;
}
.piece_item6 img {
  top: -10vw;
  left: -10vw;
}
.piece_item7 img {
  top: -10vw;
  left: -20vw;
}
.piece_item8 img {
  top: -10vw;
  left: -30vw;
}
.piece_item9 img {
  top: -20vw;
  left: 0vw;
}
.piece_item10 img {
  top: -20vw;
  left: -10vw;
}
.piece_item11 img {
  top: -20vw;
  left: -20vw;
}
.piece_item12 img {
  top: -20vw;
  left: -30vw;
}
/* /////////////////プレイ画面//////////////// */
.board {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(3, 1fr);
  background-color: #eaeaea;
  z-index: 10;
  transform: scale(1);
  width: 40vw;
  height: 30vw;
  margin: 4vw 0 0 34.3vw;
  filter: drop-shadow(0.2vw 0.2vw 0.2vw rgba(0, 0, 0, 0.3));
  outline: 0.7vw solid white;
}
.board.board_up {
  transform: scale(1.2);
  margin: 6vw 0 0 34.3vw;
  transition: ease 1.5s;
}
.grid_item {
  width: 10vw;
  height: 10vw;
  cursor: pointer;
  position: relative;
  z-index: 0;
  overflow: hidden;
}
.grid_item::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  margin: auto;
  inset: 0;
  background-image: url(../images/grid.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 7vw;
  z-index: -1;
}
.piece {
  display: flex;
  flex-wrap: wrap;
  width: 71.9vw;
  height: 25.9vw;
  margin: 3vw 0 0 18.6vw;
  background-image: url(../images/bg_1.jpg);
  background-size: 7vw;
  padding: 1.7vw;
  border-radius: 0.5vw;
  border: 0.4vw solid #9d7652;
  filter: drop-shadow(0.2vw 0.2vw 0.2vw rgba(0, 0, 0, 0.3));
}
.piece_item {
  width: 10vw;
  height: 10vw;
  margin: 0 1.5vw 1.5vw 0;
  display: inline-block;
  overflow: hidden;
  transition: ease 0.1s;
  cursor: pointer;
  z-index: 1;
}
.piece_item:nth-child(6) {
  margin: 0 0 1.5vw 0;
}
.piece_item:nth-child(7),
.piece_item:nth-child(8),
.piece_item:nth-child(9),
.piece_item:nth-child(10),
.piece_item:nth-child(11) {
  margin: 0 1.5vw 0 0;
}
.piece_item:nth-child(12) {
  margin: 0 0 0 0;
}
.selected {
  transform: scale(0.8);
  transition: ease 0.3s;
}
.hint_modal_sheet {
  width: 9vw;
  height: 9vw;
  top: 30vw;
  left: 0;
  position: absolute;
  z-index: 1000;
  opacity: 0.65;
  outline: black 200vw solid;
  z-index: 9000;
  border-radius: 50%;
}
.hint_modal {
  width: 35vw;
  height: 45vw;
  position: absolute;
  top: 0;
  left: 0;
  margin: auto;
  inset: 0;
  z-index: 10000;
  padding: 2vw;
  background-image: url(../images/bg_1.jpg);
  background-size: 7vw;
  border: solid 0.5vw #9d7652;
  border-radius: 3vw;
  filter: drop-shadow(0.2vw 0.2vw 0.2vw rgba(0, 0, 0, 0.3));
}
.hint_modal_icon {
  width: 15vw;
  height: auto;
  background-image: url(../images/bg_2.jpg);
  background-size: 5vw;
  height: auto;
  border-radius: 3vw;
  padding: 1vw;
  margin: 1vw auto 2vw auto;
}
.hint_modal p {
  text-align: center;
  font-family: var(--font-f);
  font-size: 3.2vw;
  letter-spacing: 0.3vw;
  color: #4f2911;
  line-height: 4.5vw;
}
.hint_modal_button {
  color: white;
  background-image: url(../images/bg_3.jpg);
  background-size: 5vw;
  font-size: 3.2vw;
  line-height: 7.5vw;
  width: 29vw;
  height: 7.5vw;
  text-align: center;
  border-radius: 1vw;
  font-family: var(--font-f);
  letter-spacing: 0.3vw;
}
.hint_modal_button_bg {
  background-color: #007c2b;
  width: 29vw;
  height: 8.3vw;
  border-radius: 1vw;
  margin: 4vw auto 0 auto;
  cursor: pointer;
}
/* /////////////////クリア画面//////////////// */
.don_tap {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 150;
  width: 100%;
  height: 100%;
}
.don_tap_relative {
  position: relative;
}
.next_button {
  color: white;
  background-image: url(../images/bg_3.jpg);
  background-size: 5vw;
  font-size: 3.2vw;
  line-height: 7.5vw;
  width: 29vw;
  height: 7.5vw;
  text-align: center;
  border-radius: 1vw;
  font-family: var(--font-f);
  letter-spacing: 0.3vw;
}
.next_button_bg {
  background-color: #007c2b;
  width: 29vw;
  height: 8.3vw;
  border-radius: 1vw;
  margin: 4vw auto 0 auto;
  filter: drop-shadow(0.2vw 0.2vw 0.2vw rgba(0, 0, 0, 0.3));
}
.fade-in-menu {
  position: relative;
  z-index: 200;
  display: none;
  margin: 6.5vw 0 0 9vw;
  opacity: 0;
  transition: ease 0.5s;
}
.locate {
  color: #4f2911;
  font-size: 2.5vw;
  width: 100%;
  text-align: center;
  font-family: var(--font-f);
  letter-spacing: 0.2vw;
  cursor: text;
}
.address {
  color: #4f2911;
  width: 100%;
  text-align: center;
  font-size: 1.5vw;
  margin-top: 1.6vw;
  font-family: var(--font-f);
  letter-spacing: 0.1vw;
  cursor: text;
}
.address_space {
  margin: 0 0.5vw;
}
.fade-in-menu h1,
.fade-in-menu h2 {
  user-select: text;
} /* /////////////////ナビゲーション//////////////// */
nav {
  width: 10vw;
  height: 65vw;
  position: absolute;
  z-index: 1000;
}
.nav_main {
  width: 9vw;
  height: 65vw;
  position: absolute;
  top: 50%;
  left: 0%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  background-image: url(../images/bg_2.jpg);
  background-size: 7vw;
  z-index: 100;
  border-radius: 0 2vw 2vw 0;
  filter: drop-shadow(0.2vw 0.2vw 0.2vw rgba(0, 0, 0, 0.3));
  display: flex;
  justify-content: center;
  align-content: flex-end;
  flex-wrap: wrap;
  padding-bottom: 0.5vw;
}
.nav_icon {
  width: 5vw;
  margin-bottom: 2vw;
  filter: drop-shadow(0.2vw 0.2vw 0.2vw rgba(0, 0, 0, 0.3));
  cursor: pointer;
}
.nav_map {
  width: 93vw;
  height: 65vw;
  position: absolute;
  top: 50%;
  left: -100vw;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  background-image: url(../images/bg_3.jpg);
  background-size: 7vw;
  z-index: 100;
  border-radius: 0 2vw 2vw 0;
  filter: drop-shadow(0.2vw 0.2vw 0.2vw rgba(0, 0, 0, 0.3));
  padding-bottom: 0.5vw;
  overflow: hidden;
  transition: 0.4s ease;
}
.nav_map.nav_map_active {
  left: 0vw;
}
.nav_map_title {
  width: 36vw;
  height: 9vw;
  margin: 4vw auto 4vw auto;
  text-align: center;
  border-radius: 1.5vw;
  background-image: url(../images/bg_1.jpg);
  background-size: 5vw;
  font-size: 4vw;
  color: #4e230a;
  line-height: 7.6vw;
  font-family: var(--font-f);
  letter-spacing: 0.4vw;
  border: #9d7652 solid 0.5vw;
  filter: drop-shadow(0.2vw 0.2vw 0.2vw rgba(0, 0, 0, 0.3));
}
.nav_map_close {
  position: absolute;
  top: 3vw;
  right: 3vw;
  width: 5vw;
  height: 5vw;
  cursor: pointer;
}
.nav_map_close::before {
  content: "";
  position: absolute;
  top: 2vw;
  right: 0;
  background-color: white;
  width: 5vw;
  height: 1vw;
  border-radius: 1vw;
  transform: rotate(45deg);
}
.nav_map_close::after {
  content: "";
  position: absolute;
  top: 2vw;
  right: 0;
  background-color: white;
  width: 5vw;
  height: 1vw;
  border-radius: 1vw;
  transform: rotate(-45deg);
}
.nav_map_photo {
  width: 77vw;
  display: flex;
  flex-wrap: wrap;
  margin: 0 auto;
  gap: 3vw;
}
.nav_map_photo p {
  width: 17vw;
  height: auto;
  outline: solid 0.5vw white;
  filter: drop-shadow(0.2vw 0.2vw 0.2vw rgba(0, 0, 0, 0.3));
  cursor: pointer;
}
.nav_map_photo p a {
  position: relative;
  display: block;
}
.nav_map_photo p a::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(0.7vw);
  -webkit-backdrop-filter: blur(0.7vw);
}
.nav_map_photo p a::after {
  position: absolute;
  content: "?";
  width: 45%;
  height: 75%;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  color: white;
  font-family: var(--font-f);
  font-size: 8vw;
  z-index: 2;
}
.nav_icon_text {
  color: white;
  font-family: var(--font-f);
  font-size: 1.2vw;
  letter-spacing: 0.2vw;
  text-align: center;
}
.nav_hint {
  width: 93vw;
  height: 65vw;
  position: absolute;
  top: 50%;
  left: -100vw;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  background-image: url(../images/bg_3.jpg);
  background-size: 7vw;
  z-index: 100;
  border-radius: 0 2vw 2vw 0;
  filter: drop-shadow(0.2vw 0.2vw 0.2vw rgba(0, 0, 0, 0.3));
  padding-bottom: 0.5vw;
  overflow: hidden;
  transition: 0.4s ease;
}
.nav_hint.nav_hint_active {
  left: 0vw;
}
.nav_hint_title {
  width: 23vw;
  height: 9vw;
  margin: 4vw auto 4vw auto;
  text-align: center;
  border-radius: 1.5vw;
  background-image: url(../images/bg_1.jpg);
  background-size: 5vw;
  font-size: 4vw;
  color: #4e230a;
  line-height: 7.6vw;
  font-family: var(--font-f);
  letter-spacing: 0.4vw;
  border: #9d7652 solid 0.5vw;
  filter: drop-shadow(0.2vw 0.2vw 0.2vw rgba(0, 0, 0, 0.3));
}
.nav_hint_close {
  position: absolute;
  top: 3vw;
  right: 3vw;
  width: 5vw;
  height: 5vw;
  cursor: pointer;
}
.nav_hint_close::before {
  content: "";
  position: absolute;
  top: 2vw;
  right: 0;
  background-color: white;
  width: 5vw;
  height: 1vw;
  border-radius: 1vw;
  transform: rotate(45deg);
}
.nav_hint_close::after {
  content: "";
  position: absolute;
  top: 2vw;
  right: 0;
  background-color: white;
  width: 5vw;
  height: 1vw;
  border-radius: 1vw;
  transform: rotate(-45deg);
}
.hint_board {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(3, 1fr);
  background-color: #eaeaea;
  z-index: 10;
  transform: scale(1.2);
  width: 40vw;
  height: 30vw;
  margin: 10vw auto 0 auto;
  filter: drop-shadow(0.2vw 0.2vw 0.2vw rgba(0, 0, 0, 0.3));
  outline: 0.7vw solid white;
}
.hint_grid_item {
  width: 10vw;
  height: 10vw;
  position: relative;
  z-index: 0;
}
.hint_grid_item::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  margin: auto;
  inset: 0;
  background-image: url(../images/grid.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 7vw;
  z-index: -1;
}
.hint_piece {
  display: flex;
  flex-wrap: wrap;
  width: 71.9vw;
  height: 25.9vw;
  margin: 3vw 0 0 18.6vw;
  background-image: url(../images/bg_1.jpg);
  background-size: 7vw;
  padding: 1.7vw;
  border-radius: 0.5vw;
  border: 0.4vw solid #9d7652;
  filter: drop-shadow(0.2vw 0.2vw 0.2vw rgba(0, 0, 0, 0.3));
}
.hint_piece_item {
  width: 10vw;
  height: 10vw;
  margin: 0 1.5vw 1.5vw 0;
  display: inline-block;
  overflow: hidden;
  transition: ease 0.1s;
}
.hint_piece_item img {
  width: 40vw;
  height: 30vw;
  position: relative;
}
.hint_piece_item4 img {
  top: 0vw;
  left: -30vw;
}
.hint_piece_item6 img {
  top: -10vw;
  left: -10vw;
}
.hint_piece_item11 img {
  top: -20vw;
  left: -20vw;
}
/* /////////////////タイトル//////////////// */
.menu_top {
  background-image: url(../images/top_bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
}
.menu_button {
  width: 25vw;
  margin: 0 auto;
}
.menu_title {
  width: 50%;
  height: auto;
  margin: 0 auto;
  padding: 8vw 0 4.5vw 0;
  filter: drop-shadow(0.3vw 0.3vw 0.8vw rgba(0, 0, 0, 0.3));
}
.menu_button_start {
  width: 24vw;
  height: 7vw;
  margin: 0 auto 4vw auto;
  text-align: center;
  border-radius: 1.5vw;
  background-image: url(../images/bg_4.jpg);
  background-size: 5vw;
  font-size: 3.5vw;
  color: white;
  line-height: 7vw;
  font-family: var(--font-f);
  letter-spacing: 0.4vw;
}
.menu_button_start_bg {
  width: 24vw;
  height: 7.8vw;
  margin: 0 auto 3.2vw auto;
  text-align: center;
  border-radius: 1.5vw;
  background-color: #4e230a;
  filter: drop-shadow(0.3vw 0.3vw 0.8vw rgba(0, 0, 0, 0.3));
  cursor: pointer;
}
.menu_button_tutorial {
  width: 16.3vw;
  height: 4.9vw;
  background-image: url(../images/bg_5.jpg);
  background-size: 3vw;
  margin: 0 auto;
  text-align: center;
  border-radius: 1.2vw;
  font-size: 2.5vw;
  color: white;
  line-height: 5vw;
  font-family: var(--font-f);
  letter-spacing: 0.3vw;
}
.menu_button_tutorial_bg {
  width: 16.3vw;
  height: 5.5vw;
  background-color: #5c3a2c;
  margin: 0 auto;
  text-align: center;
  border-radius: 1.2vw;
  filter: drop-shadow(0.3vw 0.3vw 0.8vw rgba(0, 0, 0, 0.3));
  cursor: pointer;
} /* /////////////////チュートリアルスタイル//////////////// */
.t_all {
  position: relative;
}
.t_selected {
  transform: scale(0.8);
  transition: ease 0.3s;
}
.t_hand {
  position: absolute;
  z-index: 100;
  display: flex;
  align-items: center;
  filter: drop-shadow(0.2vw 0.2vw 0.4vw rgba(0, 0, 0, 0.6));
  pointer-events: none;
  z-index: 10000;
}
.t_hand img {
  width: 10vw;
  height: 10vw;
  animation: t_hand 2s infinite;
}
@keyframes t_hand {
  0%,
  100% {
    transform: scale(1);
  }
  30% {
    transform: scale(0.9);
  }
}
.t_hand p {
  font-size: 2vw;
  font-family: var(--font-f);
  color: #4e230a;
  padding: 2vw;
  background-image: url(../images/bg_1.jpg);
  background-size: 7vw;
  border: solid 0.5vw #9d7652;
  border-radius: 1vw;
  margin-left: 1vw;
  letter-spacing: 0.15vw;
  z-index: 10000;
}
.t_fade_out,
.t_fade_in {
  transition: 0.5s ease;
}
.t_block_1,
.t_block_2,
.t_block_3,
.t_block_4,
.t_block_5,
.t_block_6,
.t_block_7,
.t_block_8,
.t_block_9 {
  position: absolute;
  z-index: 100;
  cursor: pointer;
}
.t_block_1 {
  width: 60vw;
  height: 12vw;
  top: 38vw;
  left: 31vw;
}
.t_block_2 {
  top: 3vw;
  left: 33vw;
  width: 12vw;
  height: 12vw;
}
.t_block_3 {
  top: 14vw;
  left: 33vw;
  width: 12vw;
  height: 12vw;
}
.t_block_4 {
  display: none;
  width: 10vw;
  height: 10vw;
  top: 14vw;
  left: 34.5vw;
}
.t_block_5 {
  width: 70vw;
  height: 12vw;
  top: 50vw;
  left: 20vw;
}
.t_block_6 {
  display: none;
  top: 14vw;
  left: 34.5vw;
  width: 12vw;
  height: 12vw;
}
.t_block_7 {
  width: 12vw;
  height: 12vw;
  top: 38vw;
  left: 20vw;
}
.t_block_8 {
  width: 12vw;
  height: 12vw;
  top: 14vw;
  left: 33.5vw;
  display: none;
}
.t_block_9 {
  width: 12vw;
  height: 12vw;
  top: 13vw;
  left: 53vw;
}
.t_hand_title {
  top: 13vw;
  left: 36vw;
  display: block;
  z-index: 1000;
  pointer-events: all;
  text-align: center;
}
.t_hand_title_button {
  width: 15vw;
  height: 6vw;
  margin: 0 auto 4vw auto;
  text-align: center;
  border-radius: 1.5vw;
  background-image: url(../images/bg_4.jpg);
  background-size: 5vw;
  font-size: 3vw;
  color: white;
  line-height: 6vw;
  font-family: var(--font-f);
  letter-spacing: 0.4vw;
}
.t_hand_title_button_bg {
  width: 15vw;
  height: 6.8vw;
  margin: 1.5vw auto 3.2vw auto;
  text-align: center;
  border-radius: 1.5vw;
  background-color: #4e230a;
  filter: drop-shadow(0.3vw 0.3vw 0.8vw rgba(0, 0, 0, 0.3));
  cursor: pointer;
}
.t_hand_1,
.t_hand_2,
.t_hand_3,
.t_hand_4,
.t_hand_5,
.t_hand_6,
.t_hand_7 {
  position: absolute;
  z-index: 1000;
  opacity: 0;
}
.t_hand_1 {
  top: 42vw;
  left: 22vw;
}
.t_hand_2 {
  top: 7vw;
  left: 35vw;
}
.t_hand_3 {
  top: 42vw;
  left: 22vw;
}
.t_hand_4 {
  top: 17vw;
  left: 35vw;
}
.t_hand_5 {
  top: 17vw;
  left: 35vw;
}
.t_hand_6 {
  top: 42vw;
  left: 22vw;
}
.t_hand_7 {
  top: 17vw;
  left: 35vw;
}
.t_hand_1.t_fade_in,
.t_hand_2.t_fade_in,
.t_hand_3.t_fade_in,
.t_hand_4.t_fade_in,
.t_hand_5.t_fade_in,
.t_hand_6.t_fade_in,
.t_hand_7.t_fade_in {
  opacity: 1;
}
.t_hand_1.t_fade_out,
.t_hand_2.t_fade_out,
.t_hand_3.t_fade_out,
.t_hand_4.t_fade_out,
.t_hand_5.t_fade_out,
.t_hand_6.t_fade_out,
.t_hand_7.t_fade_out {
  opacity: 0;
}

.t_black_sheet {
  pointer-events: none;
  width: 12vw;
  height: 12vw;
  position: absolute;
  z-index: 1000;
  opacity: 0.65;
  outline: black 150vw solid;
}
.t_black_sheet.sheet_active_1 {
  top: 0vw;
  left: -20vw;
}
.t_black_sheet.sheet_active_2 {
  top: 38vw;
  left: 19.6vw;
}
.t_black_sheet.sheet_active_3 {
  top: 2.65vw;
  left: 33vw;
}
.t_black_sheet.sheet_active_4 {
  top: 13vw;
  left: 33vw;
}
.t_black_sheet.sheet_active_5 {
  display: none;
}
/* /////////////////safari用//////////////// */
@media screen and (-webkit-min-device-pixel-ratio: 0) {
  /* .piece_item {
    overflow: scroll;
  } */
  .piece_item {
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .piece_item::-webkit-scrollbar {
    display: none;
  }
  /* .hint_grid_item {
    overflow: scroll;
  } */
  .hint_grid_item {
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .hint_grid_item::-webkit-scrollbar {
    display: none;
  }
  .nav_icon_text {
    font-size: 1.1vw;
  }
}
/* /////////////////スマホ画面//////////////// */
@media screen and (max-width: 600px) {
  .all {
    height: auto;
  }
  .screen {
    width: 100vw;
    height: 160vw;
  } /* /////////////////プレイ画面//////////////// */
  .board {
    width: 80vw;
    height: 60vw;
    margin: 5vw auto 0 auto;
    outline: 1.4vw solid white;
  }
  .board.board_up {
    transform: scale(1.1);
    margin: 14vw auto 0 auto;
  }
  .grid_item {
    width: 20vw;
    height: 20vw;
  }
  .grid_item::after {
    background-size: 13vw;
  }
  .piece {
    width: 92.5vw;
    height: 70.5vw;
    margin: 5vw auto 0 auto;
    padding: 3vw;
    border-radius: 2vw;
    border: 1vw solid #9d7652;
    background-size: 15vw;
    flex-direction: row;
    align-content: flex-start;
  }
  .piece_item,
  .piece_item:nth-child(6) {
    width: 20vw;
    height: 20vw;
    margin: 0 1.5vw 1.5vw 0;
  }
  .piece_item:nth-child(4),
  .piece_item:nth-child(8) {
    margin: 0 0 1.5vw 0;
  }
  .piece_item:nth-child(9),
  .piece_item:nth-child(10),
  .piece_item:nth-child(11) {
    margin: 0 1.5vw 0 0;
  }
  .piece_item:nth-child(12) {
    margin: 0 0 0 0;
  }
  .piece_item img {
    width: 80vw;
    height: 60vw;
    position: relative;
  }
  .piece_item1 img {
    top: 0vw;
    left: 0vw;
  }
  .piece_item2 img {
    top: 0vw;
    left: -20vw;
  }
  .piece_item3 img {
    top: 0vw;
    left: -40vw;
  }
  .piece_item4 img {
    top: 0vw;
    left: -60vw;
  }
  .piece_item5 img {
    top: -20vw;
    left: 0vw;
  }
  .piece_item6 img {
    top: -20vw;
    left: -20vw;
  }
  .piece_item7 img {
    top: -20vw;
    left: -40vw;
  }
  .piece_item8 img {
    top: -20vw;
    left: -60vw;
  }
  .piece_item9 img {
    top: -40vw;
    left: 0vw;
  }
  .piece_item10 img {
    top: -40vw;
    left: -20vw;
  }
  .piece_item11 img {
    top: -40vw;
    left: -40vw;
  }
  .piece_item12 img {
    top: -40vw;
    left: -60vw;
  }
  .next_button {
    padding: 4vw;
    font-size: 5vw;
    width: 50vw;
  }
  .locate {
    font-size: 5vw;
  }
  .address {
    font-size: 2.5vw;
    margin-bottom: 15vw;
    margin-top: 2.5vw;
  }

  .hint_modal_sheet {
    width: 16.3vw;
    height: 16.3vw;
    top: 143.5vw;
    left: 48.3vw;
  }
  .hint_modal {
    width: 75vw;
    height: 100vw;
    padding: 6vw;
    background-size: 14vw;
    border: solid 1vw #9d7652;
    border-radius: 4vw;
  }
  .hint_modal_icon {
    width: 30vw;
    background-size: 10vw;
    border-radius: 4vw;
    padding: 2vw;
    margin: 4vw auto 5vw auto;
  }
  .hint_modal p {
    font-size: 7vw;
    letter-spacing: 0.5vw;
    line-height: 9vw;
  }
  .hint_modal_button {
    background-size: 10vw;
    font-size: 7vw;
    line-height: 15vw;
    width: 55vw;
    height: 15vw;
    border-radius: 3vw;
    letter-spacing: 0.5vw;
  }
  .hint_modal_button_bg {
    width: 55vw;
    height: 17vw;
    border-radius: 3vw;
    margin: 9vw auto 0 auto;
  }
  /* /////////////////タイトル//////////////// */
  .menu_top {
    background-image: url(../images/top_bg_phone.jpg);
  }
  .menu_button {
    width: 55vw;
    margin: 0 auto;
  }
  .menu_title {
    width: 95%;
    margin: 0 0 0 2vw;
    padding: 30vw 0 4.5vw 0;
  }
  .menu_button_start {
    width: 53vw;
    height: 16vw;
    margin: 8vw auto 4vw auto;
    border-radius: 3vw;
    background-size: 11vw;
    font-size: 8vw;
    line-height: 16vw;
    letter-spacing: 1vw;
  }
  .menu_button_start_bg {
    width: 53vw;
    height: 17.5vw;
    margin: 0 auto 7vw auto;
    border-radius: 3vw;
  }
  .menu_button_tutorial {
    width: 36vw;
    height: 11vw;
    background-size: 8vw;
    border-radius: 2vw;
    font-size: 5.5vw;
    line-height: 11vw;
    letter-spacing: 0.8vw;
  }
  .menu_button_tutorial_bg {
    width: 36vw;
    height: 12.3vw;
    border-radius: 2vw;
  } /* /////////////////ナビゲーション//////////////// */
  nav {
    height: 160vw;
  }
  .nav_main {
    width: 100vw;
    height: 18.5vw;
    position: absolute;
    top: 152.5vw;
    left: 0;
    background-size: 8vw;
    border-radius: 3vw 3vw 0 0;
    justify-content: flex-end;
    align-content: center;
    align-items: center;
    flex-direction: row-reverse;
    padding-bottom: 0;
    padding-left: 3vw;
  }
  .nav_icon {
    width: 11vw;
    margin-bottom: 2.5vw;
    margin-right: 5vw;
  }
  .nav_map {
    width: 100vw;
    height: 150vw;
    top: 20vw;
    left: 0;
    transform: translateY(0);
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    background-size: 8vw;
    border-radius: 3vw 3vw 0 0;
    padding-bottom: 0vw;
  }
  .nav_map.nav_map_active {
    left: 0vw;
    top: -133vw;
  }
  .nav_map_title {
    width: 60vw;
    height: 13vw;
    margin: 9vw auto;
    border-radius: 2.5vw;
    background-size: 7vw;
    font-size: 6.5vw;
    line-height: 12vw;
  }
  .nav_map_close {
    top: 133vw;
    right: 45vw;
    width: 10vw;
    height: 10vw;
  }
  .nav_map_close::before {
    top: 4.5vw;
    width: 10vw;
    height: 1.5vw;
  }
  .nav_map_close::after {
    top: 4.5vw;
    width: 10vw;
    height: 1.5vw;
  }
  .nav_map_photo {
    width: 90vw;
    gap: 4.5vw;
  }
  .nav_map_photo p {
    width: 27vw;
    outline: solid 0.7vw white;
  }
  .nav_map_photo p a::after {
    width: 40%;
    font-size: 12vw;
  }
  .nav_icon_text {
    font-size: 2.5vw;
  }
  .nav_hint {
    width: 100vw;
    height: 150vw;
    top: 20vw;
    left: 0;
    transform: translateY(0);
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    background-size: 8vw;
    border-radius: 3vw 3vw 0 0;
    padding-bottom: 0vw;
  }
  .nav_hint.nav_hint_active {
    left: 0vw;
    top: -133vw;
  }
  .nav_hint_title {
    width: 40vw;
    height: 13vw;
    margin: 9vw auto;
    border-radius: 2.5vw;
    background-size: 7vw;
    font-size: 6.5vw;
    line-height: 12vw;
  }
  .nav_hint_close {
    top: 133vw;
    right: 45vw;
    width: 10vw;
    height: 10vw;
  }
  .nav_hint_close::before {
    top: 4.5vw;
    width: 10vw;
    height: 1.5vw;
  }
  .nav_hint_close::after {
    top: 4.5vw;
    width: 10vw;
    height: 1.5vw;
  }
  .hint_board {
    width: 80vw;
    height: 60vw;
    margin: 5vw auto 0 auto;
    outline: 1.4vw solid white;
    transform: scale(1);
  }
  .hint_grid_item {
    width: 20vw;
    height: 20vw;
  }
  .hint_grid_item::after {
    background-size: 13vw;
  }
  .hint_piece {
    width: 92.5vw;
    height: 70.5vw;
    margin: 5vw auto 0 auto;
    padding: 3vw;
    border-radius: 2vw;
    border: 1vw solid #9d7652;
    background-size: 15vw;
    flex-direction: row;
    align-content: flex-start;
  }
  .hint_piece_item {
    width: 20vw;
    height: 20vw;
    margin: 0 1.5vw 1.5vw 0;
  }
  .hint_piece_item img {
    width: 80vw;
    height: 60vw;
    position: relative;
  }
  .hint_piece_item4 img {
    top: 0vw;
    left: -60vw;
  }
  .hint_piece_item6 img {
    top: -20vw;
    left: -20vw;
  }
  .hint_piece_item11 img {
    top: -40vw;
    left: -40vw;
  }
  /* /////////////////クリア画面//////////////// */
  .next_button {
    background-size: 8vw;
    font-size: 7vw;
    line-height: 7.5vw;
    width: 65vw;
    height: 16vw;
    border-radius: 2vw;
    letter-spacing: 0.6vw;
  }
  .next_button_bg {
    width: 65vw;
    height: 17.5vw;
    border-radius: 2vw;
    margin: 2vw auto 0 auto;
  }
  .fade-in-menu {
    margin: 11.5vw 0 0 0;
  }
  .locate {
    font-size: 5vw;
  }
  .address {
    text-align: center;
    font-size: 3vw;
    margin-top: 3vw;
  }
  .address_space {
    margin: 0 0.7vw;
  } /* /////////////////チュートリアルスタイル//////////////// */
  .t_hand {
    display: block;
    align-items: center;
  }
  .t_hand img {
    width: 20vw;
    height: 20vw;
    margin-bottom: 3vw;
  }
  .t_hand p {
    font-size: 5vw;
    padding: 4vw;
    background-size: 10vw;
    border: solid 0.8vw #9d7652;
    border-radius: 2vw;
    margin-left: 0;
    letter-spacing: 0.3vw;
  }
  .t_block_1 {
    width: 66vw;
    height: 45vw;
    top: 73vw;
    left: 28.5vw;
  }
  .t_block_2 {
    top: 4vw;
    left: 9vw;
    width: 25vw;
    height: 25vw;
  }
  .t_block_3 {
    top: 25vw;
    left: 9vw;
    width: 24vw;
    height: 24vw;
  }
  .t_block_4 {
    display: none;
    width: 20vw;
    height: 20vw;
    top: 25vw;
    left: 10vw;
  }
  .t_block_5 {
    width: 90vw;
    height: 44vw;
    top: 95vw;
    left: 7vw;
  }
  .t_block_6 {
    display: none;
    top: 25vw;
    left: 9vw;
    width: 24vw;
    height: 24vw;
  }
  .t_block_7 {
    width: 22vw;
    height: 22vw;
    top: 73vw;
    left: 7vw;
  }
  .t_block_8 {
    width: 24vw;
    height: 24vw;
    top: 25vw;
    left: 9vw;
  }
  .t_block_9 {
    width: 24vw;
    height: 24vw;
    top: 24vw;
    left: 48vw;
  }
  .t_hand_title {
    top: 20vw;
    left: 9vw;
    display: block;
  }
  .t_hand_title_button {
    width: 32vw;
    height: 11vw;
    border-radius: 2vw;
    background-size: 7vw;
    font-size: 6vw;
    line-height: 10vw;
    letter-spacing: 0.4vw;
  }
  .t_hand_title_button_bg {
    width: 32vw;
    height: 12.2vw;
    margin: 6vw auto 3.2vw auto;
    border-radius: 2vw;
  }
  .t_hand_1 {
    top: 80vw;
    left: 10vw;
  }
  .t_hand_2 {
    top: 11vw;
    left: 12vw;
  }
  .t_hand_3 {
    top: 80vw;
    left: 10vw;
  }
  .t_hand_4 {
    top: 31vw;
    left: 12vw;
  }
  .t_hand_5 {
    top: 31vw;
    left: 12vw;
  }
  .t_hand_6 {
    top: 80vw;
    left: 10vw;
  }
  .t_hand_7 {
    top: 31vw;
    left: 12vw;
  }
  .t_black_sheet {
    width: 24vw;
    height: 24vw;
    outline: black 150vh solid;
  }
  .t_black_sheet.sheet_active_1 {
    top: 0vw;
    left: -40vw;
  }
  .t_black_sheet.sheet_active_2 {
    top: 72vw;
    left: 6vw;
  }
  .t_black_sheet.sheet_active_3 {
    top: 2.65vw;
    left: 7.4vw;
  }
  .t_black_sheet.sheet_active_4 {
    top: 23vw;
    left: 7.4vw;
  }
}
