/*まずはお決まりのボックスサイズ算出をborer-boxに */
*,
*:before,
*:after {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 62.5%;/*rem算出をしやすくするために*/
}

html,
body {
  font-family: Meiryo,Verdana,"Lucida Console";
  background-color: #ffffff;
  height: 100%;
  margin: 0;
  padding: 0;
}

#round{
  float: inline-start;
  height: 10%;
  width: 100%;
  display: flex;
  align-items: center;
  position:relative;
  margin: 0;
}
#round p{
  width: 100%;
  font-size: 25px;
  text-align: center;
  position: absolute;
  justify-self: center;
  z-index: 1;
}
#round .btn{
  position: absolute;
  margin-left: 1em;
  z-index: 3;
}

#round .btn2{
  position: absolute;
  margin-left: auto;
  margin-right: 1em;
  z-index: 3;
  right: 0;
}

#map{
  float: right;
  height: 80%;
  width: 30%;
}

#example{
  float: right;
  height: 10%;
  width: 30%;
  display: flex;
  align-items: center;
  justify-content: center;
}

#example p{
  margin: 0;
  font-size: 20px;
}

#pano {
  float: left;
  height: 90%;
  width: 70%;
}

.btn,
a.btn{
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
  position: relative;
  display: inline-block;
  padding: 1rem 4rem;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
  border-radius: 0.5rem;
}

a.btn--yellow {
  color: #000;
  background-color: #22dd22;
  border-bottom: 5px solid #229922;
}

a.btn--yellow:hover {
  margin-top: 3px;
  color: #000;
  background: #22dd22;
  border-bottom: 2px solid #229922;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6); /* 半透明の黒色 */
  z-index: 10; /* モーダルウィンドウよりも前面に表示 */
}

.modal {
  display: none; /* 最初は非表示 */
  position: fixed;
  z-index: 20;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.4);
}

.modal-content {
  background-color: #fefefe;
  margin: 10% auto;
  padding: 20px;
  width: 80%;
  font-size: 20px;
}

.modal2 {
  display: none; /* 最初は非表示 */
  position: absolute;
  z-index: 20;
  left: 0;
  top: 0;
  width: 70%;
  height: 100%;
  overflow: auto;
}

.overlay2 {
  position: fixed;
  top: 0;
  left: 0;
  width: 70%;
  height: 100%;
  z-index: 10; /* モーダルウィンドウよりも前面に表示 */
  background-color: rgba(0, 0, 0, 0.4);
}

.modal-content2 {
  background-color: #fefefe;
  margin: 2.5% 2.5% auto 2.5%;
  padding: 20px;
  width: auto;
  height: 90%;
  font-size: 20px;
}

.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}
.btn2,
a.btn2{
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
  position: relative;
  display: inline-block;
  padding: 1rem 4rem;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
  border-radius: 0.5rem;
}

a.btn2--yellow {
  color: #000;
  background-color: #22dd22;
  border-bottom: 5px solid #229922;
}

a.btn2--yellow:hover {
  margin-top: 3px;
  color: #000;
  background: #22dd22;
  border-bottom: 2px solid #229922;
}

#hazard{
  width:100%;
  height: 85%;
}