@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family:'メイリオ', 'Meiryo', sans-serif;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

header {
  text-align: center;
  margin-bottom: 30px;
}

header h1 {
  font-size: 2.5em;
  color: #111;
}

.hashtag {
  font-size: 1.2em;
  color: #e5007d;
  margin-top: 10px;
}

.date, .location {
  font-size: 1em;
  margin-top: 5px;
}

.intro {
  background-color: #f3f8ff;
  padding: 20px;
  border-left: 5px solid #009fe3;
  margin-bottom: 30px;
}

.intro h2 {
  color: #009fe3;
  margin-bottom: 10px;
}

.details {
  background-color: #fff3fc;
  padding: 20px;
  border-left: 5px solid #e5007d;
  margin-bottom: 30px;
}

.details h2 {
  color: #e5007d;
  margin-bottom: 10px;
}

.flyers {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.flyer {
  flex: 1;
  text-align: center;
}

.flyer button {
  background: linear-gradient(to right, #ff66cc, #66ccff);
  color: #fff;
  border: none;
  padding: 10px 15px;
  border-radius: 20px;
  margin-bottom: 10px;
  cursor: pointer;
  font-size: 1em;
}

.flyer-image {
  height: 100%;
  width: auto;
}



body {
  font-family:'メイリオ', 'Meiryo', sans-serif;
  background: #f9f9f9;
  margin: 0;
  padding: 0;
}

.event-section {
  max-width: 1200px;
  padding: 40px 20px;
  margin: 0 auto;
}

.event-header {
  background: linear-gradient(to right, #f23ca7, #20b2ea);
  color: white;
  text-align: center;
  font-size: 1.2em;
  padding: 10px;
  border-radius: 8px;
  margin-bottom: 20px;
  max-width: 800px;
  margin: 30px auto;
}

.event-header span {
  font-size: 0.9em;
}

.event-date1 {
  background: #e5007d;
  color: white;
  padding: 10px 20px;
  font-weight: bold;
  width: fit-content;
  border-radius: 6px;
  margin-bottom: 20px;
}

.event-date2 {
  background: #009fe3;
  color: white;
  padding: 10px 20px;
  font-weight: bold;
  width: fit-content;
  border-radius: 6px;
  margin-bottom: 20px;
}

.event-card {
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  padding: 20px;
  margin-bottom: 30px;
}

.event-title1 {
  background: linear-gradient(to right, #d1399c, #c37db2);
  color: white;
  font-weight: bold;
  padding: 10px;
  border-radius: 6px 6px 0 0;
  display: flex;
  align-items: center;
  font-size: 1.1em;
}


.event-title2 {
  background: linear-gradient(to right, #00a0cd, #826fb0);
  color: white;
  font-weight: bold;
  padding: 10px;
  border-radius: 6px 6px 0 0;
  display: flex;
  align-items: center;
  font-size: 1.1em;
}

.event-title .icon {
  color: #ffffff;
  font-size: 1.2em;
  margin-right: 8px;
}

.event-content {
  display: flex;
  flex-direction: row;
  padding-top: 15px;
  gap: 20px;
  flex-wrap: wrap;
}

.event-image img {
  width: 200px;
  border-radius: 6px;
}

.event-details {
  flex: 1;
  font-size: 0.95em;
  line-height: 1.7;
}

.event-apply {
  margin-top: 20px;
  text-align: center;
}

.apply-button {
  display: inline-block;
  background: linear-gradient(to right, #f23ca7, #20b2ea);
  color: white;
  text-decoration: none;
  padding: 12px 25px;
  border-radius: 30px;
  font-weight: bold;
  font-size: 1em;
  transition: background 0.3s ease;
}

.apply-button:hover {
  background: linear-gradient(to right, #e5007d, #009fe3);
}

a.apply-button {
  color: white !important;
}

.br-sp {
    display: none;
}

@media (max-width: 768px) {
    .br-sp {
        display: block;
    }
}


@media (max-width: 768px) {
  .event-content {
    flex-direction: column;
  }

  .event-image img {
    width: 100%;
  }

.event-section {
    padding: 5px 0px;
}

.event-date1 {
     margin: 0 auto 20px auto;
     display: block;
}

.event-date2 {
     margin: 0 auto 20px auto;
     display: block;
}
}