/* 全体(1) */
html {
  font-size: 16px;
}


/* 共通 */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}
.outer-section:nth-of-type(even) {
}
.inner {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 2rem 1rem;
}
.section-lead {
  font-size: 0.875rem;
  text-align: center;
}
.section-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  text-align: center;
  font-weight: 900;
}
.section-subtitle {
  font-size: 1rem;
  text-align: center;
  padding-bottom: 2rem;
  font-weight: 600;
}
.section-description {
  margin: 0 auto 1em;
  line-height: 1.7;
}
.image-wrapper {
}
.mt-1 {
  margin-top: 1rem;
}
.mb-1 {
  margin-bottom: 1rem;
}
.pt-0 {
  padding-top: 0;
}
.pt-1 {
  padding-top: 1rem;
}
.pb-1 {
  padding-bottom: 1rem;
}
.btn {
  cursor: pointer;
  background-color: #FF6600;
  color: #fff;
  font-weight: 500;
  display: block;
  margin: 0 auto;
  padding: 0.5rem 1rem;
  border-radius: 0.25rem;
  width: 100%;
  text-align: center;
  transition: 0.5s;
}
.btn:hover {
  background-color: #e65c00;
  color: #fff;
  transition: 0.5s;
}
.section-note {
  font-size: 0.75rem;
  background-color: #f5f5f5;
  border: 1px solid #eee;
  color: #999;
  padding: 0.5rem;
  border-radius: 0.25rem;
}
.section-note ul {
  padding-left: 1.25rem;
}
.section-note ul li {
  list-style-type: disc;
}
.section-note .emphasis {
  color: #ff4b4b;
}

/* トップ */
.venue-nav ul {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-left: 0;
  list-style: none;
}
.venue-nav .btn-link {
  display: block;
  text-align: center;
  padding: 0.5rem 1rem;
  background-color: #0066FF;
  color: #fff;
  border-radius: 0.25rem;
  font-weight: 500;
}
.venue-nav .btn-link:hover {
  background-color: #0055cc;
  color: #fff;
  transition: 0.5s;
}

/* カード */
.cards-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 20px; /* カードの間隔はここで管理！ */
}
.event-card {
  flex: 1 1 100%;
  max-width: 100%;
  border: 1px solid #ccc;
  padding: 15px;
  border-radius: 0.25rem;
  background: #fff;
  box-shadow: 2px 2px 5px rgba(0,0,0,0.1);
}
.event-card-image {
  max-width: 100%;
  height: auto;
  border-radius: 0.25rem;
}
.event-card-lead {
  font-size: 0.875rem;
  color: #666;
}
.event-card-title {
  font-weight: 700;
  padding-bottom: 0.5rem;
  font-size: 1.25rem;
}
.event-card-description {
  padding-bottom: 1rem;
}
.event-maker-voice {
  background-color: #bbb;
  color: #fff;
  padding: 0.5rem;;
  border-radius: 0.25rem 0.25rem 0 0;
}
.event-maker-title {
  font-weight: 700;
  line-height: 1.7;
}
.event-maker-title::before {
  content: "つくる人に聞く\A";
  white-space: pre;
  font-size: 0.875rem;
  font-weight: 400;;
}
.event-card-details {
  font-size: 0.875rem;
}
.event-card-details dl {
  margin: 0;
  padding: 0;
}
.event-card-details dt, .event-card-details dd {
  margin: 0;
  padding: 4px 0;
}

.event-card-details dt:nth-of-type(odd),
.event-card-details dt:nth-of-type(odd) + dd {
  background-color: #f9f9f9;
}
.event-card-details dt:nth-of-type(even),
.event-card-details dt:nth-of-type(even) + dd {
  background-color: #f4f4f4;
}
.event-card-details dt:last-of-type + dd {
  border-radius: 0 0 0.25rem 0.25rem;
}
.workshop-section .event-card-details dt:first-of-type {
  border-radius: 0.25rem 0.25rem 0 0;
}
.event-card-details dt,
.event-card-details dd {
  display: flex;
  align-items: center;
  padding: 2px 8px;
  margin: 0;
  float: none;
  clear: none;
}
.event-card-details dt {
  flex: 0 0 100px;
  font-weight: 500;
  text-align: left;
  padding-right: 10px;
  font-weight: 700;
  padding-top: 0.875rem;
}
.event-card-details dd {
  flex: 1;
  padding-left: 10px;
  word-break: break-word;
  padding-bottom: 0.875rem;;
}

.btn-reserve {
  background-color: #ff4b4b;
  color: #fff;
  border-radius: 0.25rem;
  font-weight: 500;
  display: block;
  width: 100%;
  margin: 1rem auto 0;
  padding: 0.5rem 1rem;
  text-align: center;
  transition: 0.5s;
}
.btn-reserve:hover:hover {
  background-color: #e60000;
  color: #fff;
  transition: 0.5s;
}

/* ポップアップ */
.popup {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: center;
  z-index: 9999;
  padding: 1rem;
  box-sizing: border-box;
  overflow: hidden;
}
.popup.show {
  display: flex;
}
.popup-content {
  background: #fff;
  padding: 1rem;
  border-radius: 0.25rem;
  max-width: 700px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  text-align: left;
  position: relative;
  font-size: 1rem;
  line-height: 1.6;
  -webkit-overflow-scrolling: touch;
  word-break: break-word;
}
.close-btn {
  position: absolute;
  top: 3px;
  right: 3px;
  font-size: 1.4rem;
  font-weight: 700;
  cursor: pointer;
  transition: color 0.3s ease;
  user-select: none;
  background: none;
  border: none;
  padding: 0;
  line-height: 1;
  z-index: 10;
  transition: 0.5s;
}
.close-btn:hover,
.close-btn:focus {
  opacity: 0.5;
  transition: 0.5s;
  outline: none;
}
.popup-title {
  font-size: 1.6rem;
  padding: 1rem 0;
  font-weight: 700;
  line-height: 1.6;
  white-space: normal;
  word-break: break-word;
}
.popup-text p {
  margin-bottom: 1rem;
  hyphens: auto;
}
.popup-text p:last-child {
  margin-bottom: 2rem;
}
.copyright {
  display: block;
  font-size: 0.625rem;
  color: #aaa;
  text-align: center;
}

/* 全体(2) */
.venue-wrapper {
  /* max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 16px 16px 0; */
}

/* ヘッダー */
.site-header {
  background-color: #fff;
}
.logo {
  display: block;
  max-width: 120px;
}

/* メイン */
.main-content {
  background-color: #fff;
}

/* イベント一覧 */
.event-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

/* 会場情報 */
.map-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 75%; /* アスペクト比16:9に合わせて調整 */
  height: 0;
  overflow: hidden;
  border: 1px solid #ddd;
  border-radius: 0.25rem;;
}
.venue-map {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 0.25rem;;
}
.event-info {
  padding-top: 1rem;
}
.info-block {
  margin-bottom: 1.75rem;
}
.event-info .info-block:last-of-type {
  margin-bottom: 0;
}
.info-heading {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  border-left: 4px solid #ff4b4b;
  padding-left: 0.6rem;
}
.venue-address {
  font-style: normal;
}
.venue-address p {
  margin: 0;
  padding: 0.25rem 0;
}
.access-notes {
  margin: 0.5rem 0 0 1.5rem;
  padding: 0;
  list-style: disc;
}
.access-notes li {
  margin: 0.25rem 0;
}
.contact-phone,
.contact-hours,
.schedule-text,
.schedule-hours {
  margin: 0;
  padding: 0.25rem 0;
  line-height: 1.5;
}

/* フッター */
.footer {
  background-color: #f3f3f3;
  padding: 2rem 1rem;
  font-size: 0.75rem;
  color: #555;
}
.footer-inner {
  max-width: 1024px;
  margin: 0 auto;
}
.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}
.footer small {
  font-size: 0.75rem;
  color: #888;
}
.social-media {
  display: flex;
  gap: 0.75rem;
}
.social-icon {
  display: block;
  width: 36px;
  height: 36px;
  transition: opacity 0.3s ease;
}
.social-icon img {
  width: 100%;
  height: auto;
  display: block;
}
.social-icon:hover {
  opacity: 0.5;
}

/* ---------- 600px以上 ---------- */
@media (min-width: 600px) {
  html {
    font-size: 17px;
  }
  .venue-nav ul {
    flex-direction: row;
    justify-content: center;
  }
  .venue-nav li {
    flex: 0 0 calc(50% - 0.5rem);
  }
  .venue-nav .btn-link {
    font-weight: 600;
    padding: 0.7rem 1rem;
  }
  .btn {
    font-weight: 600;
    padding: 0.7rem 1rem;
  }
  .section-note {
    font-size: 0.875rem;
    padding: 0.75rem;
  }
  .section-title {
    font-size: 2rem;
  }
  .section-description {
    text-align: center;
  }
  .event-card {
    flex: 1 1 calc(50% - 10px);
    max-width: calc(50% - 10px);
  }
  .btn-reserve {
    font-weight: 600;
    padding: 0.75rem;
  }
  .map-wrapper {
    padding-bottom: 60%;
  }
  .info-heading {
    border-left: 6px solid #ff4b4b;
    padding-left: 0.75rem;
    font-size: 1.125rem;
  }
  .access-notes {
    margin-left: 2rem;
  }
}

/* ---------- 900px以上 ---------- */
@media (min-width: 900px) {
  html {
    font-size: 18px;
  }
  .btn {
    font-weight: 700;
  }
  .section-lead {
    font-size: 1rem;
  }
  .section-title {
    font-size: 2.5rem;
  }
  .section-subtitle {
    font-size: 1.25rem;
  }
  .event-card {
    flex: 1 1 calc(33.333% - 13.33px);
    max-width: calc(33.333% - 13.33px);
  }
  .btn-reserve {
    font-weight: 700;
  }
  .map-wrapper {
    padding-bottom: 45%;
  }
  .info-heading {
    font-size: 1.25rem;
  }
  .event-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 3rem;
    row-gap: 2rem;
  }
  .info-block {
    flex: none;
    margin-bottom: 0; /* gridで調整するのでリセット */
  }
  .event-info .info-block:last-of-type {
    grid-column: 1 / -1;
  }
}

/* ティザー */
.ts-kimono-easter-section {
  /* background-image:
    url('../img/teaser/bg01.png'),
    url('../img/teaser/bg02.png');
  background-repeat: no-repeat;
  background-size: 70px, 95px;
  background-position: left bottom, right bottom; */    
}
.ts-h1 {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}
.ts-kimono-easter-title {
  width: 80%;
  max-width: 700px;
  margin: 0 auto;
  padding-top: 2rem;
}
.ts-kimono-easter-message {
  width: 80%;
  max-width: 1200px;
  margin: 2rem auto;
  line-height: 2;
  font-size: 0.875rem;
  letter-spacing: 0.0625rem;
  padding: 0.5rem;
  /* background-color: rgba(255, 255, 255, 0.9); */
  border-radius: 0.5rem;
}
.ts-kimono-easter-message p:nth-child(2) {
  padding-bottom: 1.25rem;
}
.ts-kimono-easter-schedule {
  width: 60%;
  max-width: 600px;
  margin: 0 auto;
  padding: 0 0 2rem;
}
.ts-kimono-easter-nav {
  padding: 2rem 0;
  display: grid;
  grid-template-columns: 1fr; /* スマホは1列 */
  gap: 1rem; /* ボタン間の隙間 */
  justify-items: center;
  width: 70%;
  max-width: 1000px;
  margin: 0 auto;
}
.ts-kimono-easter-nav img {
  border-radius: 0;
}
.ts-btn {
  cursor: pointer;
  transition: 0.8s;
  display: block;
  width: 100%;
  margin: 0 auto;
}
.ts-btn:hover {
  opacity: 0.5;
  transition: 0.8s;
}
.ts-popup-content {
  background-color: #65c097;
  color: #fff;
}
.ts-popup-title {
  font-size: 0.875rem;
  text-align: center;
  font-weight: 400;
  /* padding-bottom: 2rem; */
}
.ts-popup-title em {
  font-size: 1.5rem;
  font-style: normal;
  display: block;;
  font-weight: 700;
  letter-spacing: 0.2rem;
}
.ts-popup-text {
  line-height: 1.8;
  font-size: 0.875rem;
  font-weight: 300;
}
.ts-copyright {
  font-size: 0.5rem;
  color: #fff;
}
/* ---------- 375px以上 ---------- */
@media (min-width: 375px) {
  .ts-kimono-easter-section {
    background-size: 90px, 120px;
  }
  .ts-kimono-easter-message {
    text-align: center;
    width: 90%;
    font-size: 1rem;
  }
  .ts-kimono-easter-message span {
    display: block;
  }
  .ts-kimono-easter-schedule {
    width: 55%;
    margin: 0 auto;
  }
  .ts-popup-title {
    padding: 1.5rem 0;
    font-size: 1rem;
  }
  .ts-popup-title em {
    font-size: 1.75rem;
  }
}
/* ---------- 550px以上 ---------- */
@media (min-width: 550px) {
  .ts-kimono-easter-section {
    background-size: auto;
  }
  .ts-kimono-easter-message {
    width: 75%;
    font-size: 1.25rem;
    line-height: 2;
  }
  .ts-kimono-easter-schedule {
    margin: 0 auto;
  }
  .ts-popup-title {
    padding: 2rem 0;
    font-size: 1.2rem;
  }
  .ts-popup-text {
    text-align: center;
    font-size: 1rem;
    line-height: 2;
  }
  .ts-popup-text p {
    margin-bottom: 1.5rem;
  }
  .ts-popup-text span {
    display: block;;
  }
  .ts-copyright {
    font-size: 0.625rem;
  }
}
/* ---------- 600px以上 ---------- */
@media (min-width: 600px) {
  .ts-kimono-easter-section {
    background-size: 140px, 185px;
  }
  .ts-kimono-easter-title {
    padding: 2rem 0 0;
  }
  .ts-kimono-easter-message {
    width: 90%;
    font-size: 1.5rem;
    line-height: 2;
    margin: 3rem auto
  }
  .ts-kimono-easter-schedule {
    padding: 0 0 3rem;
    margin: 0 auto;
  }
  .ts-kimono-easter-nav {
    width: 60%;
    padding: 3rem 0;
  }
  .ts-popup-title em {
    font-size: 2rem;
  }
}
/* ---------- 900px以上 ---------- */
@media (min-width: 900px) {
  .ts-kimono-easter-section {
    background-size: 210px, 275px;
  }
  .ts-kimono-easter-message {
    font-size: 1.625rem;
    /* background-color: rgba(255, 255, 255, 0); */
  }
  .ts-kimono-easter-schedule {
    padding: 0 0 4rem;
    margin: 0 auto;
  }
  .ts-kimono-easter-nav {
    width: 90%;
    grid-template-columns: repeat(2, 1fr); /* 900px以上：2列 */
    grid-template-rows: auto auto; /* 2行 */
    gap: 2rem; /* ボタン間の隙間 */
  }
  .ts-kimono-easter-nav a:nth-child(3) {
    /* grid-column: 1 / 3; */ /* 3つ目（下1列）は2列分使う */
    /* justify-self: center; */ /* 中央寄せ */
    /* text-align: center; */
    /* width: 48.2%; */
  }
  .ts-popup-title {
    font-size: 1.125rem;
  }
  .ts-popup-title em {
    font-size: 2.5rem;
  }
  .ts-popup-text {
    font-size: 1.125rem;
  }
}
/* ---------- 1100px以上 ---------- */
@media (min-width: 1100px) {
  .ts-kimono-easter-section {
    background-size: 250px, 330px;
  }
  .ts-kimono-easter-message {
    font-size: 2rem; /* 36px (root=18px) */
  }
}
/* ---------- 1200px以上 ---------- */
@media (min-width: 1200px) {
  .ts-kimono-easter-message {
    /* background-size: 450px, 280px, 370px; */
    background-size: 480px;
    background-image:
      /* url('../img/teaser/bg03.png'),
      url('../img/teaser/bg01.png'),
      url('../img/teaser/bg02.png'); */
      url('../img/teaser/bg04.png');
    background-repeat: no-repeat;
    /* background-position: left bottom, left bottom, right bottom; */
    background-position: center;
  }
  .ts-kimono-easter-schedule {
    padding: 0 0 4rem 14rem;
    box-sizing: content-box;
  }
}
/* ---------- 1400px以上 ---------- */
@media (min-width: 1400px) {
  .ts-kimono-easter-section {
    background-size: 500px, 340px, 440px;
  }
  .ts-kimono-easter-schedule {
    padding: 0 0 4rem;
  }
}

/* 電話予約 */
.tel-box {
  text-align: center;
  margin: 1rem 0;
  padding: 1.5rem 1rem;
  background-color: #f9f9f9;
  border: 1px solid #eee;
  border-radius: 0.25rem;
}
.tel-box p {
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
  color: #333;
  font-weight: 500;
}
.tel-box a {
  display: inline-block;
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  padding: 0.5rem 1rem;
  background-color: #ea0000;
  border: 2px solid #ea0000;
  border-radius: 0.25rem;
  transition: 0.5s ease;
  letter-spacing: 0.1rem;
}
.tel-box a:hover {
  background-color: #fff;
  color: #ea0000;
  border: 2px solid #ea0000;
}

.raijo-yoyaku-btn {
  font-size: 1.2rem;
  background-color: #ff4b4b;
  color: #fff;
  border-radius: 0.25rem;
  font-weight: 700;
  display: block;
  width: 100%;
  margin: 1rem auto 0;
  padding: 0.5rem 1rem;
  text-align: center;
  transition: 0.5s;
  letter-spacing: 0.1rem;
}
.raijo-yoyaku-btn:hover {
  background-color: #e60000;
  color: #fff;
  transition: 0.5s;
}