@charset "UTF-8";
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  line-height: 1.6;
}

main {
  display: block;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

tbody, thead {
  -webkit-text-size-adjust: 100%;
}

fieldset,
img {
  border: 0;
}

address,
caption,
cite,
code,
dfn,
em,
strong,
var {
  font-style: normal;
  font-weight: normal;
}

ol,
ul {
  list-style: none;
  list-style-type: none;
}

li {
  list-style: none;
  list-style-type: none;
}

caption,
th {
  font-weight: normal;
  text-align: left;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: normal;
}

area {
  border: none;
  outline: none;
}

abbr,
acronym {
  border: 0;
}

* {
  box-sizing: border-box;
}

input,
select,
textarea {
  appearance: none;
  border: 0;
  outline: none;
}

button {
  appearance: none;
  border: 0;
  border-radius: 0;
  margin: 0;
  padding: 0;
  background-color: transparent;
  outline: none;
  cursor: pointer;
}

input[type="submit"],
input[type="button"] {
  cursor: pointer;
}

input,
textarea {
  appearance: none;
}

a {
  outline: none;
  text-decoration: none;
}

figure {
  line-height: 0;
}

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

/* CSS Document */
html, body {
  height: 100%;
  font-weight: 400;
  font-family: "Noto Sans JP", sans-serif;
}

#map {
  width: 100%;
  height: calc(100% - 120px);
  position: relative;
  z-index: 1;
}

#mainContent {
  height: 100%;
}

.logo {
  padding: 10px;
  background: #fff;
  margin: 0 auto;
  text-align: center;
  height: 64px;
}
.logo img {
  width: auto;
  height: 100%;
}

.sidebar {
  width: 100vw;
  background: #fff;
  overflow-y: auto;
  padding: 16px;
  box-shadow: 2px 0 8px rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  transform: translateX(-100%);
  transition: transform 0.4s ease;
  z-index: 999;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.sidebar.active {
  transform: translateX(0);
}

.close-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 36px;
  font-weight: bold;
  background: none;
  border: none;
  color: #333;
  cursor: pointer;
}

.placeTitle {
  margin: 0 0 10px;
  font-size: 20px !important;
}

.insta-container {
  margin-top: 10px;
  width: 100%;
  max-width: 340px;
}

.insta-container blockquote.instagram-media {
  width: 100% !important;
  max-width: 340px !important;
  margin: 0 auto !important;
}

.category-buttons {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 500;
  background: rgba(255, 255, 255, 0.95);
  border-top: 1px solid #ddd;
  display: flex;
  gap: 8px;
  padding: 12px;
  overflow-x: auto;
  white-space: nowrap;
  scrollbar-width: none;
  /* Firefox */
}

.category-buttons::-webkit-scrollbar {
  display: none;
  /* Chrome, Safari */
}

.category-buttons button {
  flex: 0 0 auto;
  background: #fff;
  border: 1px solid #ccc;
  padding: 6px 12px;
  cursor: pointer;
  border-radius: 20px;
  font-size: 14px;
  white-space: nowrap;
  transition: background 0.3s;
}

.category-buttons button.active {
  background: #007bff;
  color: white;
  border-color: #007bff;
}

.post-date {
  margin-top: 12px;
  font-size: 14px;
  color: #666;
  text-align: center;
}

@media (max-width: 767px) {
  .sidebar {
    width: 100vw;
    padding: 52px 16px 22px;
  }
}
/* Instagramブロック幅 */
.insta-container blockquote.instagram-media {
  width: 100% !important;
  margin: 0 auto !important;
  text-align: center;
}

/* ローディングスプラッシュ */
#splash {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
}

#splash .splash-inner img {
  width: 200px;
  height: auto;
  animation: fadeOut 1s ease 1s forwards;
}

@keyframes fadeOut {
  to {
    opacity: 0;
    transform: scale(0.98);
  }
}
