* {
padding: 0;
margin: 0;
}
html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  /*background-color: #a2d7dd;*/
  background-color: #fff;
  font-size: 20px;
  font-family: "ヒラギノ角ゴシック", "游ゴシック", "メイリオ";
}
header {
  padding: 30px 0 10px 7.5%;
  border-bottom: 1px solid #CCC;
  /*position: fixed;*/
  top: 0;
  width: 100%;
  background-color: #fff;
  /*display: flex;*/
  align-items: center;
}
.header_icon {
  width: 320px;
  height: 50px;
}
.wrap_header {
  overflow: hidden;
}
h1 {
  margin: 0 auto; padding: 0;
  font-size: 34px;
 }
h2 {
  font-size: 20px;
}
#content {
  width: 85%;
  margin: 30px auto 0 auto;
  z-index: 2;
}
.content_text {
  margin-top: 16px;
}
.textflagpng {
  font-size: 16px;
}
.return_button_wrapper {
  text-align: center;
}
.return_button {
  width: 50%;
  min-width: 200px;
  font-weight: bold;
  font-family: inherit;
  appearance: none;
  border: solid 1px #000;
  border-radius: 5px;
  background: #FE5C00;
  color: #fff;
  margin-top: 60px;
  padding: 16px 16px;
  font-size: 24px;
  cursor: pointer;
}

.return_button:hover {
  background: #ccc;
}

.return_button:focus {
  outline: none;
  box-shadow: 0 0 0 4px #cbd6ee;
}

@media screen and (max-width: 959px) {
	/* 959px以下に適用されるCSS（タブレット用） */
}
@media screen and (max-width: 480px) {
	/* 480px以下に適用されるCSS（スマホ用） */
  header {
    padding: 30px auto 10px;
  }
  .header_icon {
    width: 100px;
    height: 16px;
  }
  h1 {
    font-size: 25px;
    margin-bottom: 5px;
  }
  h2 {
    font-size: 16px;
  }
  .infowindow_content {
    width: 40%;
    height: 35%;
  }
  .return_button {
    width: 50%;
    min-width: 200px;
    font-weight: bold;
    font-family: inherit;
    appearance: none;
    border: solid 1px #000;
    border-radius: 5px;
    background: #FE5C00;
    color: #fff;
    margin-top: 60px;
    padding: 16px 16px;
    font-size: 24px;
    cursor: pointer;
  }
  .btn_wrapper {
    width: 85%;
    margin: 30px auto 0 auto;
  }
  .br-sp {
    display: block;
  }
  .return_button {
    width: 80%;
    height: 40px;
  }
}