body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
}

.clearfix::after {
  content: "";
  display: block;
  clear: both;
}

@media (min-width: 500px) {
  .pc {
    display: block;
  }
}

@media (max-width: 500px) {
  .pc {
    display: none;
  }
}

@media (max-width: 500px) {
  .sp {
    display: block;
  }
}

@media (min-width: 500px) {
  .sp {
    display: none;
  }
}

.relative {
  display: relative;
  overflow: hidden;
}

main {
  padding-top: 150px;
  min-height: calc(100vh - 110px);
}

@media (max-width: 500px) {
  main {
    padding-top: 50px;
  }
}

.open {
  display: block;
}

.close {
  display: none;
}

.event-slider {
  position: relative;
  width: 500px;
  max-width: 800px;
  margin: 0 auto;
  overflow: hidden;
}

@media (max-width: 500px) {
  .event-slider {
    width: 100%;
  }
}

.event-slider .slider-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition: -webkit-transform 0.5s ease-in-out;
  transition: -webkit-transform 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out, -webkit-transform 0.5s ease-in-out;
}

.event-slider .slider-wrapper .slide {
  min-width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.event-slider .slider-wrapper .slide img {
  width: 500px;
  height: 500px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

@media (max-width: 500px) {
  .event-slider .slider-wrapper .slide img {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.event-slider .controls {
  position: absolute;
  top: 50%;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.event-slider .controls button {
  background-color: rgba(0, 0, 0, 0.5);
  border: none;
  color: white;
  padding: 10px;
  cursor: pointer;
}

.event-slider .controls button:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

.event-slider .dots {
  text-align: center;
  padding: 20px 0;
}

.event-slider .dots .dot {
  display: inline-block;
  width: 15px;
  height: 15px;
  margin: 0 5px;
  background-color: #969696;
  border-radius: 50%;
  cursor: pointer;
  -webkit-transition: background-color 0.3s, -webkit-transform 0.3s;
  transition: background-color 0.3s, -webkit-transform 0.3s;
  transition: background-color 0.3s, transform 0.3s;
  transition: background-color 0.3s, transform 0.3s, -webkit-transform 0.3s;
}

.event-slider .dots .dot.active {
  background-color: #6a90fd;
  -webkit-transform: scale(1.5);
          transform: scale(1.5);
}

#recommended-events,
#korea-events,
#search {
  width: 1000px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
  margin-top: 20px;
}

@media (max-width: 500px) {
  #recommended-events,
  #korea-events,
  #search {
    width: 95%;
    display: block;
  }
}

#recommended-events h2,
#korea-events h2,
#search h2 {
  width: 100%;
  color: #323232;
  margin: 0;
  padding: 0;
}

@media (max-width: 500px) {
  #recommended-events h2,
  #korea-events h2,
  #search h2 {
    font-size: 20px;
  }
}

#recommended-events .event-card,
#korea-events .event-card,
#search .event-card {
  width: 480px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 15px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 10px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  position: relative;
}

@media (max-width: 500px) {
  #recommended-events .event-card,
  #korea-events .event-card,
  #search .event-card {
    width: 100%;
    padding: 0;
    margin: 15px 0;
  }
}

@media (min-width: 500px) {
  #recommended-events .event-card:hover,
  #korea-events .event-card:hover,
  #search .event-card:hover {
    opacity: 0.8;
  }
}

#recommended-events .event-card img,
#korea-events .event-card img,
#search .event-card img {
  width: 150px;
  height: 150px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
  margin-right: 20px;
  -webkit-box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
          box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

@media (max-width: 500px) {
  #recommended-events .event-card img,
  #korea-events .event-card img,
  #search .event-card img {
    width: 100px;
    height: 100px;
    margin-right: 10px;
    border-radius: 5px;
  }
}

#recommended-events .event-card .event-details,
#korea-events .event-card .event-details,
#search .event-card .event-details {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

#recommended-events .event-card .event-details h3,
#korea-events .event-card .event-details h3,
#search .event-card .event-details h3 {
  margin: 0 0 10px;
  font-size: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  height: 56px;
  max-height: 56px;
  white-space: normal;
  line-height: 28px;
}

@media (max-width: 500px) {
  #recommended-events .event-card .event-details h3,
  #korea-events .event-card .event-details h3,
  #search .event-card .event-details h3 {
    font-size: 18px;
    line-height: 20px;
    height: 40px;
    max-height: 40px;
    margin: 0;
  }
}

#recommended-events .event-card .event-details h3 a,
#korea-events .event-card .event-details h3 a,
#search .event-card .event-details h3 a {
  height: 56px;
  line-height: 28px;
  color: black;
  text-decoration: none;
  display: block;
}

@media (max-width: 500px) {
  #recommended-events .event-card .event-details h3 a,
  #korea-events .event-card .event-details h3 a,
  #search .event-card .event-details h3 a {
    font-size: 16px;
    line-height: 20px;
    height: 40px;
    max-height: 40px;
  }
}

#recommended-events .event-card .event-details .categories,
#korea-events .event-card .event-details .categories,
#search .event-card .event-details .categories {
  margin: 0 0 10px;
}

@media (max-width: 500px) {
  #recommended-events .event-card .event-details .categories,
  #korea-events .event-card .event-details .categories,
  #search .event-card .event-details .categories {
    margin: 0 0 5px;
  }
}

#recommended-events .event-card .event-details .categories .category-tag,
#korea-events .event-card .event-details .categories .category-tag,
#search .event-card .event-details .categories .category-tag {
  background-color: rgba(106, 144, 253, 0.8);
  color: white;
  border-radius: 50px;
  padding: 0px 15px;
  display: inline-block;
  margin-right: 10px;
  height: 25px;
  line-height: 25px;
}

@media (max-width: 500px) {
  #recommended-events .event-card .event-details .categories .category-tag,
  #korea-events .event-card .event-details .categories .category-tag,
  #search .event-card .event-details .categories .category-tag {
    font-size: 12px;
    line-height: 20px;
    height: 20px;
    padding: 0 5px;
    margin-right: 5px;
  }
}

#recommended-events .event-card .event-details .categories .gift-tag,
#korea-events .event-card .event-details .categories .gift-tag,
#search .event-card .event-details .categories .gift-tag {
  background-color: rgba(241, 22, 151, 0.8);
  color: white;
  border-radius: 50px;
  padding: 0px 15px;
  display: inline-block;
  height: 25px;
  line-height: 25px;
}

@media (max-width: 500px) {
  #recommended-events .event-card .event-details .categories .gift-tag,
  #korea-events .event-card .event-details .categories .gift-tag,
  #search .event-card .event-details .categories .gift-tag {
    font-size: 12px;
    line-height: 20px;
    height: 20px;
    padding: 0 5px;
  }
}

#recommended-events .event-card .event-details p,
#korea-events .event-card .event-details p,
#search .event-card .event-details p {
  line-height: 1.5;
  color: #646464;
}

@media (max-width: 500px) {
  #recommended-events .event-card .event-details p,
  #korea-events .event-card .event-details p,
  #search .event-card .event-details p {
    font-size: 14px;
    line-height: 17px;
  }
}

@media (max-width: 500px) {
  #korea-events {
    margin-bottom: 100px;
  }
}

form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

form input,
form textarea {
  margin-bottom: 10px;
  padding: 10px;
  font-size: 1em;
}

form button {
  padding: 10px;
  background-color: #0066cc;
  color: white;
  border: none;
  cursor: pointer;
}

form button:hover {
  background-color: #0055aa;
}

.event-details {
  width: 800px;
  margin: 0 auto;
}

@media (max-width: 500px) {
  .event-details {
    width: 95%;
  }
}

.event-details h2 {
  margin-top: 10px;
}

@media (max-width: 500px) {
  .event-details h2 {
    font-size: 20px;
  }
}

.event-details .general_info {
  border-top: 1px solid #c8c8c8;
  border-bottom: 1px solid #c8c8c8;
  padding-top: 20px;
}

.event-details .general_info img {
  width: 25px;
  height: 25px;
  margin-right: 10px;
}

.event-details .general_info p {
  line-height: 25px;
  margin-bottom: 10px;
}

.event-details .general_info p:nth-child(3) {
  padding-bottom: 10px;
  border-bottom: 1px solid #c8c8c8;
}

.event-details .general_info p:nth-child(3) a {
  color: #6a90fd;
  line-height: 25px;
  display: block;
}

.event-details .sns_link {
  margin: 10px 0;
  height: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media (max-width: 500px) {
  .event-details .sns_link {
    width: 100%;
  }
}

.event-details .sns_link img {
  height: 25px;
  width: 25px;
}

.event-details .sns_link a {
  color: #6a90fd;
  line-height: 25px;
  display: inline-block;
  overflow: hidden;
}

.event-details .category-tag {
  background-color: rgba(106, 144, 253, 0.8);
  color: white;
  border-radius: 50px;
  padding: 0px 15px;
  display: inline-block;
  margin-right: 10px;
  height: 25px;
  line-height: 25px;
}

@media (max-width: 500px) {
  .event-details .category-tag {
    font-size: 12px;
    line-height: 20px;
    height: 20px;
    padding: 0 5px;
    margin-right: 5px;
  }
}

.event-details .gift-tag {
  background-color: rgba(241, 22, 151, 0.8);
  color: white;
  border-radius: 50px;
  padding: 0px 15px;
  display: inline-block;
  height: 25px;
  line-height: 25px;
}

@media (max-width: 500px) {
  .event-details .gift-tag {
    font-size: 12px;
    line-height: 20px;
    height: 20px;
    padding: 0 5px;
  }
}

.event-details .event-map {
  border-top: 1px solid #c8c8c8;
  padding-top: 20px;
}

@media (max-width: 500px) {
  .event-details .event-map {
    margin-bottom: 100px;
  }
}

.gift-detail {
  background-color: #e6e6e6;
  color: black;
  padding: 20px;
  margin: 20px auto;
  border-radius: 10px;
}

@media (max-width: 500px) {
  .gift-detail {
    margin: 5px auto 10px;
    border-radius: 5px;
  }
}

.gift-detail p {
  line-height: 1.3;
}

.gift-detail .subtitle {
  font-weight: bold;
}

.link-icon {
  width: 20px;
  height: 20px;
  vertical-align: middle;
  margin-right: 5px;
}

#filters {
  width: 1100px;
  margin: 0 auto;
}

@media (max-width: 500px) {
  #filters {
    width: 100%;
  }
}

#filters #filter-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  margin: 0 auto;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

#filters #filter-btn #btn-category,
#filters #filter-btn #btn-area,
#filters #filter-btn #btn-date {
  margin: 0 10px;
  width: 100px;
  line-height: 1.5;
  display: block;
  padding: 5px 10px;
  color: #646464;
  font-weight: normal;
  text-align: center;
}

@media (min-width: 500px) {
  #filters #filter-btn #btn-category,
  #filters #filter-btn #btn-area,
  #filters #filter-btn #btn-date {
    width: 330px;
  }
}

#filters #filter-btn #btn-category:hover,
#filters #filter-btn #btn-area:hover,
#filters #filter-btn #btn-date:hover {
  cursor: pointer;
}

#filters #filter-btn .open-btn {
  border-left: 1px solid #969696;
  border-top: 1px solid #969696;
  border-right: 1px solid #969696;
  border-bottom: 1px solid white;
  z-index: 1;
}

@media (max-width: 500px) {
  #filters #filter-btn .close-btn {
    background-color: #c8c8c8;
    border-bottom: 1px solid #969696;
  }
}

@media (min-width: 500px) {
  #filters #filter-btn .close-btn {
    border-left: 1px solid #969696;
    border-top: 1px solid #969696;
    border-right: 1px solid #969696;
    border-bottom: 1px solid white;
    z-index: 1;
  }
}

#filters .group_line {
  width: 95%;
  height: 1px;
  background-color: #969696;
  margin: 0 auto;
  margin-top: -1px;
}

#filters .open-filter {
  display: block;
}

@media (max-width: 500px) {
  #filters .close-filter {
    display: none;
  }
}

#filters #keyword-filter {
  border-bottom: 1px solid #c8c8c8;
  height: 30px;
  margin-bottom: 20px;
}

@media (max-width: 500px) {
  #filters #keyword-filter {
    width: 95%;
    margin: 15px auto;
  }
}

#filters #keyword-filter img {
  width: 20px;
  height: 20px;
  margin: 0;
  padding: 0;
}

#filters #keyword-filter input {
  display: inline-block;
  width: calc(100% - 30px);
  border: none;
  margin: 0;
  height: 20px;
  padding: 0;
}

#filters #keyword-filter input::-webkit-input-placeholder {
  color: #969696;
  padding-left: 5px;
}

#filters #keyword-filter input:-ms-input-placeholder {
  color: #969696;
  padding-left: 5px;
}

#filters #keyword-filter input::-ms-input-placeholder {
  color: #969696;
  padding-left: 5px;
}

#filters #keyword-filter input::placeholder {
  color: #969696;
  padding-left: 5px;
}

#filters .filter-button {
  background-color: white;
  color: #969696;
  border: 1px solid #969696;
  padding: 10px 40px;
  margin: 5px;
  cursor: pointer;
  border-radius: 50px;
}

@media (min-width: 500px) {
  #filters .filter-button:hover {
    opacity: 0.5;
  }
}

#filters .filter-button.active {
  background-color: rgba(241, 22, 151, 0.3);
}

#filters .filter-fix {
  background-color: rgba(106, 144, 253, 0.5);
  width: 80%;
  margin: 20px auto 10px;
  color: white;
  display: block;
}

@media (min-width: 500px) {
  #filters .filter-fix:hover {
    opacity: 0.5;
  }
}

#filters .filter-clear-button {
  background-color: #f11697;
  background-color: #b4c8c8;
  color: white;
  border: none;
  padding: 10px;
  margin: 10px auto;
  cursor: pointer;
  width: 80%;
}

@media (min-width: 500px) {
  #filters .filter-clear-button:hover {
    opacity: 0.5;
  }
}

@media (min-width: 500px) {
  #filter-all {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    border: 1px solid #969696;
    margin-top: -1px;
  }
}

#filter-all #category-filter {
  width: 95%;
  margin: 0 auto;
  border-left: 1px solid #969696;
  border-right: 1px solid #969696;
  border-bottom: 1px solid #969696;
}

@media (min-width: 500px) {
  #filter-all #category-filter {
    width: 330px;
    margin: 10px;
    border: none;
  }
}

#filter-all #category-filter .filter-button {
  width: calc(50% - 10px);
  padding: 10px 0px;
  margin: 10px 5px;
}

@media (min-width: 500px) {
  #filter-all #category-filter .filter-button {
    width: 45%;
    padding: 10px 0px;
    margin: 10px calc(100% - 3.5/10%);
  }
}

#filter-all #area-filter .inner {
  width: 95%;
  margin: 0 auto;
  border-left: 1px solid #969696;
  border-right: 1px solid #969696;
  border-bottom: 1px solid #969696;
}

@media (max-width: 500px) {
  #filter-all #area-filter .inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

@media (min-width: 500px) {
  #filter-all #area-filter .inner {
    width: 330px;
    border: none;
    margin: 10px;
  }
}

#filter-all #area-filter .inner #prefectures-all {
  width: 100px;
  border-right: 1px solid #969696;
}

@media (min-width: 500px) {
  #filter-all #area-filter .inner #prefectures-all {
    width: 80%;
    margin: 0 auto;
    border-right: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-bottom: 10px;
  }
}

#filter-all #area-filter .inner #prefectures-all h4 {
  color: #646464;
}

@media (min-width: 500px) {
  #filter-all #area-filter .inner #prefectures-all h4 {
    display: inline-block;
    width: 33%;
  }
}

#filter-all #area-filter .inner #prefectures-all .prefecture-button {
  padding: 10px;
  margin: px 0;
  cursor: pointer;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
  text-align: center;
  font-weight: normal;
}

#filter-all #area-filter .inner #prefectures-all .prefecture-button:hover {
  background-color: rgba(241, 22, 151, 0.2);
}

#filter-all #area-filter .inner #prefectures-all .prefecture-button.active {
  background-color: rgba(241, 22, 151, 0.2);
}

#filter-all #area-filter .inner #area-all {
  width: calc(100% - 100px);
  padding: 10px 5px 0px;
}

@media (min-width: 500px) {
  #filter-all #area-filter .inner #area-all {
    width: 100%;
    border: 1px dotted #b4b4b4;
  }
}

#filter-all #area-filter .inner #area-all .filter-label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  cursor: pointer;
  margin-bottom: 10px;
}

#filter-all #area-filter .inner #area-all .filter-label input[type="checkbox"] {
  margin-right: 8px;
  margin-top: 2px;
  accent-color: #f11697;
}

#filter-all #area-filter .inner #area-all .filter-label span {
  line-height: 1.3;
  color: #646464;
}

#filter-all #area-filter .inner .filter-button {
  width: 100%;
  padding: 10px 20px;
  margin: 10px 5px;
}

@media (min-width: 500px) {
  #filter-all #date-filter {
    width: 330px;
    margin: 10px;
  }
}

#filter-all #date-filter .flatpickr-calendar {
  display: block;
  margin: 0 auto;
  border: none !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}

#filter-all #date-filter .flatpickr-input {
  display: none;
}

@media (min-width: 500px) {
  #filter-all #date-filter .flatpickr-calendar {
    width: 308px;
  }
}

#filter-all #date-filter .flatpickr-calendar .flatpickr-day {
  width: 40px !important;
  height: 40px;
}

.gmnoprint {
  display: none;
}

#map_main #container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 1000px;
  margin: 0 auto;
  height: 500px;
}

@media (max-width: 768px) {
  #map_main #container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
    height: auto;
  }
}

#map_main #event-cards-pc {
  width: 400px;
  height: 500px;
  overflow-y: scroll;
}

@media (max-width: 768px) {
  #map_main #event-cards-pc {
    display: none;
  }
}

#map_main #map-container {
  width: 600px;
  position: relative;
}

@media (max-width: 768px) {
  #map_main #map-container {
    width: 100%;
    height: 300px;
  }
}

#map_main #map {
  height: 100%;
  width: 100%;
}

@media (max-width: 768px) {
  #map_main #map {
    height: 300px;
  }
}

#map_main #event-cards-sp {
  display: none;
}

@media (max-width: 768px) {
  #map_main #event-cards-sp {
    display: block;
    width: 100%;
    height: auto;
    overflow-y: scroll;
  }
}

#map_main .event-card {
  width: 400px;
  border-bottom: 1px solid #ccc;
  padding: 10px;
  margin-bottom: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #fff;
  text-decoration: none;
  color: inherit;
  -webkit-box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

@media (min-width: 500px) {
  #map_main .event-card:hover {
    cursor: pointer;
    opacity: 0.5;
  }
}

@media (max-width: 768px) {
  #map_main .event-card {
    width: 100%;
  }
}

#map_main .event-card .event-details {
  height: 100px;
  width: 250px;
}

@media (max-width: 768px) {
  #map_main .event-card .event-details {
    width: calc(100% - 110px);
  }
}

#map_main .event-card .event-details .category-tag {
  display: inline-block;
  background-color: #6a90fd;
  padding: 2px 6px;
  border-radius: 50px;
  font-size: 12px;
  color: white;
  margin-right: 5px;
  margin-bottom: 5px;
}

#map_main .event-card .event-details .gift-tag {
  display: inline-block;
  background-color: #f11697;
  padding: 2px 10px;
  border-radius: 50px;
  font-size: 12px;
  color: #fff;
}

#map_main .event-card img {
  width: 100px;
  height: 100px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  margin-right: 10px;
  -webkit-box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  background-color: #f0f0f0;
}

#map_main .event-card h3 {
  margin: 0;
  font-size: 16px;
  overflow: hidden;
  height: 46px;
  line-height: 23px;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

#map_main .event-card p {
  margin: 0;
  font-size: 14px;
  line-height: 17px;
  color: #666;
}

#map_main #search-area-btn {
  position: absolute;
  top: 10px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  padding: 10px 20px;
  background-color: #6a90fd;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

#map_main #search-area-btn:hover {
  background-color: #4a70dd;
}

.gm-style-iw {
  width: 400px;
  max-width: 400px !important;
}

.gm-style-iw .event-card {
  width: 350px !important;
  padding: 0 !important;
  margin: 0 !important;
  -webkit-box-shadow: 0px 0px 0px white !important;
          box-shadow: 0px 0px 0px white !important;
  border: none !important;
}

.gm-style-iw .event-card img {
  width: 100%;
  height: auto;
  margin-bottom: 10px;
}

.gm-style-iw .event-card .event-details .category-tag,
.gm-style-iw .event-card .event-details .gift-tag {
  margin-bottom: 5px;
}

#company {
  width: 1000px;
  margin: 100px auto 0;
}

@media (max-width: 500px) {
  #company {
    width: 95%;
    display: block;
  }
}

#company h2 {
  width: 100%;
  color: #323232;
  margin: 0 0 20px;
  padding: 0;
}

@media (max-width: 500px) {
  #company h2 {
    font-size: 20px;
    margin-bottom: 10px;
  }
}

#company .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media (max-width: 500px) {
  #company .flex {
    display: block;
  }
}

#company .flex iframe {
  width: 300px;
  height: 160px;
}

@media (max-width: 500px) {
  #company .flex iframe {
    width: 100%;
    height: 200px;
  }
}

#company .flex .detail {
  width: 680px;
}

@media (max-width: 500px) {
  #company .flex .detail {
    width: 100%;
    margin-bottom: 20px;
  }
}

#company .flex .detail .item {
  border-bottom: 1px solid #e6e6e6;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media (max-width: 500px) {
  #company .flex .detail .item:nth-child(1) {
    border-top: none;
  }
}

#company .flex .detail .item p {
  line-height: 40px;
  width: 100%;
}

@media (max-width: 500px) {
  #company .flex .detail .item p {
    line-height: 1.5;
    padding: 5px 0;
  }
}

#company .flex .detail .item p:nth-child(1) {
  width: 150px;
  padding-left: 10px;
}

@media (max-width: 500px) {
  #company .flex .detail .item p:nth-child(1) {
    padding-left: 5px;
    width: 120px;
  }
}

#company .flex .detail .item p:nth-child(2) {
  width: calc(100% - 150px);
}

@media (max-width: 500px) {
  #company .flex .detail .item p:nth-child(2) {
    width: calc(100% - 120px);
  }
}

#company .flex .detail .border {
  width: 80%;
  display: block;
  margin: 5px 0;
  border-bottom: 1px solid #c8c8c8;
}

#privacy_policy {
  width: 1000px;
  margin: 0 auto;
}

@media (max-width: 500px) {
  #privacy_policy {
    width: 95%;
  }
}

#privacy_policy * {
  color: #464646;
}

#privacy_policy h1 {
  font-size: 48px;
  font-weight: bold;
  font-family: Futura, Noto Sans JP Regular, Meiryo, sans-serif;
  text-align: center;
  margin: 80px 0 50px;
}

@media (max-width: 500px) {
  #privacy_policy h1 {
    font-size: 30px;
    margin: 30px 0 20px;
  }
}

#privacy_policy h1 span {
  font-size: 20px;
  font-weight: normal;
}

#privacy_policy h2 {
  font-size: 18px;
  line-height: 1.5;
  margin: 30px auto 10px;
}

#privacy_policy p {
  font-size: 16px;
  line-height: 1.5;
}

#privacy_policy a {
  color: blue;
  text-decoration: underline;
}
/*# sourceMappingURL=style.css.map */