@charset "UTF-8";

/*scss Document */
html,
body {
  width: 100%;
}

html {
  scroll-behavior: smooth;
  font-size: 62.5%;
}

body {
  position: relative;
  color: #000;
  background-color: #000;
  font-size: 1.7rem;
  letter-spacing: 0.025em;
  line-height: 1.8;
  font-weight: 400;
  margin: 0 auto;
  font-family: YuMincho, "Yu Mincho", 游明朝体, "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", 'Noto Serif JP', "ＭＳ 明朝", "MS Mincho";
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -o-text-size-adjust: 100%;
  text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
}

input,
select {
  font-family: 'Poppins', sans-serif;
}

li {
  list-style: none;
}

p {
  text-align: justify;
  -ms-text-justify: auto;
  text-justify: auto;
  text-justify: inter-ideograph;
}

h1,
h2,
h3,
h4,
h5,
h6,
strong {
  font-weight: normal;
}

img {
  vertical-align: bottom;
  max-width: 100%;
}

a {
  color: unset;
  text-decoration: none;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

#myMap {
  height: 100vh;
  width: 100%;
}

.icon-red {
  /* icon-redは最初に指定したクラス名 */
  filter: hue-rotate(150deg);
}

.header {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 9999;
}

.site_name {
  flex: 0 1 387px;
  padding: 20px;
}

.icon {
  padding: 15px 0;
  position: fixed;
  right: 10px;
  bottom: 10px;
  z-index: 1000;
}

.icon__list {
  max-width: 300px;
  gap: 10px;
}

.icon__list li {
  transition: opacity 0.3s;
  margin-bottom: 10px;
}

.icon__list li:hover {
  opacity: 0.8;
}

.icon__list input[type="checkbox"] {
  display: none;
}

.icon__list label img {
  border: 3px solid transparent;
  border-radius: 35px;
}

.icon__list label input:checked+img {
  border: 3px solid hsl(0, 100%, 65%);
}




  /* modal
---------------------------------------------------------------------- */
.modal {
  display: none;
  position: absolute;
  top: 20px;
  bottom: 20px;
  left: 20px;
  z-index: 9998;
  font-size: 13px;
  background-color: #fff;
  border-radius: 20px;
  overflow: hidden;
  width: 80%;
  max-width: 350px;
  transform: translate(10%,0%);
  overflow: auto;
  -ms-overflow-style: none;    /* IE, Edge 対応 */
  scrollbar-width: none;       /* Firefox 対応 */
}

.modal::-webkit-scrollbar {  /* Chrome, Safari 対応 */
display:none;
}
.modal.active {
  display: block;
  animation: anime01 both .3s ease normal;
}

@keyframes anime01 {
  0% {
    transform: translate(10%,0%);
    opacity: 0;
  }
  100% {
    transform: translate(0,0%);
    opacity: 1;
  }
}
.modal_img {
  position: relative;
}
.modal_ttl {
  font-size: 2.2rem;
}
.modal_content {
  padding:20px 20px;
}
.modal_cat {
  display: inline-block;
  color: #fff;
  background-color: #83ADFF;
  padding: 2px 10px;
  text-align: center;
  position: absolute;
  top: 15px;
  left: 15px;
}
.modal_btn {
  display: block;
  width: 134px;
  height: 28px;
  flex-shrink: 0;
  border-radius: 18px;
  background: #FAB6B6;
  text-align: center;
  margin-left: auto;
  transition: opacity 0.3s;
  border: none;
  cursor: pointer;
}
.modal_btn:hover {
  opacity: 0.8;
}
.modal_url {
  color: #000;
  font-size: 16px;
  display: flex;
  align-items: center;
}
.modal_url::before {
  content: "";
  display: block;
  background: url(../images/icn_url.png) no-repeat;
  background-size: contain;
  width: 20px;
  height: 18px;
  margin-right: 5px;
}
.modal_txt {
  text-align: justify;
  margin-bottom: 10px;
}
.modal_comment {
  margin-top: 10px;
}

.modal_comment li {
  border-top: 1px solid #000;
  padding: 10px 0;
}

.modal_addComment {
  display: none;
}
.modal_addComment.active {
  display: block;
}