/* =====================
   1. Reset
===================== */
*,
*::before,
*::after { box-sizing: border-box; }

html, body { margin: 0; padding: 0; }

a { color: inherit; text-decoration: none; }

ul, ol { margin: 0; padding: 0; list-style: none; }

h1, h2, h3, p { margin: 0; }

li { margin: 0; padding: 0; }

img, video, svg { display: block; max-width: 100%; }

button, input, select, textarea { font: inherit; }

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

/* =====================
   2. Base
===================== */
:root{
    /* Color */
    --color-text: #1E0A0D;
    --color-black: #000000;
    --color-white: #ffffff;
    --color-gray-900: #111111;
    --color-gray-600: #666666;
    --color-gray-300: #dddddd;

    --color-bg: #FBF0EE;
    --color-orange: #D87E63;
    --color-blue: #7E93C2;

    /* Typography */
    --font-base: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;

    --font-size-base: 1rem;
    --line-height-base: 1.6;

    --font-size-h1: 2.25rem;
    --font-size-h2: 1.75rem;
    --font-size-h3: 1.375rem;

    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 2rem;
    --space-xl: 3rem;

    /* Radius */
    --radius-sm: 10px;
    --radius-md: 16px;

    /* Z-index */
    --z-header: 100;
    --z-modal: 1000;

    /* Header */
    --header-h: 68px;
    --header-h-sp: 56px;
    --hero-top-gap: 14px;
}

body{
    padding-top: var(--header-h);
    font-family: var(--font-base);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    color: var(--color-text);
    background-color: var(--color-bg);
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

.tk-senobi-gothic{
    font-family: "senobi-gothic", sans-serif;
    letter-spacing: 0.04em;
}

h1, h2, h3{
  font-weight: 600;
  line-height: 1.3;
}
h1{ font-size: var(--font-size-h1); }
h2{ font-size: var(--font-size-h2); }
h3{ font-size: var(--font-size-h3); }

p{
  font-size: var(--font-size-base);
  color: var(--color-gray-900);
}

/* =====================
   3. Layout
===================== */
.container{
  width: min(1100px, 100% - (var(--space-md) * 2));
  margin-inline: auto;
}

.main{ min-height: 70vh; }

.section{ padding: var(--space-xl) 0; }
.section + .section{ padding-top: 0; }

.content-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.footer{ padding: var(--space-lg) 0; }

/* =====================
   4. Header / Nav (final authority)
   ※重複していた .site-header / .header-inner / .hamburger をここに集約
===================== */

.site-header{
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  height: var(--header-h);
  display: flex;
  align-items: center;
  padding: 0 20px;

  background: var(--color-white);
  backdrop-filter: none;

  opacity: 1;
  transform: none;
  animation: none;
}

/* header 内の横並び（ロゴ左・ナビ右・hamburger） */
.header-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: var(--space-sm) 0;
}

.header-logo{
  flex: 0 0 auto;
  display: flex;
  align-items: center;
}
.header-logo img{
  width: auto;
  height: 44px;
  display: block;
}

/* PCナビ：右寄せ・横並び */
.header-nav{ margin-left: auto; }
.header-nav ul{
  display: flex;
  align-items: center;
  gap: 18px;
}

.header-nav a.nav-link{
  display: inline-block;
  font-size: 14px;
  color: var(--color-black);
  padding: 8px 10px;
  border-radius: 10px;
}
.header-nav a.nav-link:hover{ text-decoration: underline; }

.nav{
  display: flex;
  align-items: center;
  gap: var(--space-md);
  flex-wrap: wrap;
}

/* =====================
   5. Hamburger (final authority)
===================== */
.hamburger{
  display: none;
  cursor: pointer;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 0;
  padding: 0;
  place-content: center;
  gap: 5px;
}

.hamburger span{
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: var(--color-black);
  transition: transform 200ms ease, opacity 200ms ease;
}

/* 開いているとき：×（body.is-menu-open 方式） */
body.is-menu-open .hamburger span:nth-child(1){
  transform: translateY(7px) rotate(45deg);
}
body.is-menu-open .hamburger span:nth-child(2){
  opacity: 0;
}
body.is-menu-open .hamburger span:nth-child(3){
  transform: translateY(-7px) rotate(-45deg);
}

/* =====================
   6. Hero (as-is)
===================== */
.hero{
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  color: var(--color-text);
}

.hero-bg{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.02);
  z-index: 0;
}

.hero-title {
  position: absolute;
  top: 25%;
  right: 25%;
  text-align: right;
  z-index: 10;
  opacity: 0;
  animation: fadeInText 4s ease forwards;
  animation-delay: 0s;
  color: var(--color-text);
}

.hero-title h1{
  font-size: 3.5rem;
  letter-spacing: 1px;
  display: inline-block;
}
.hero-title h1 span{
  display: inline-block;
  filter: blur(var(--blur, 1.2px));
  opacity: 0;

  animation: charFadeIn 0.8s ease-out forwards;

  will-change: opacity, filter;
}

@keyframes charFadeIn{
  from { opacity: 0; }
  to   { opacity: 1; }
}

.hero-text{
  position: absolute;
  /* will-change: transform, opacity; */
  bottom: 15%;
  left: 9%;
  right: auto;
  text-align: left;
  z-index: 11;

  opacity: 0;
  animation: fadeInText 2s ease forwards;
  animation-delay: 0s;

  color: var(--color-text);
}
.hero-text h1{
  font-size: 1.7rem;
  letter-spacing: 1px;
}
.hero-text p{
  font-size: 1.3rem;
  letter-spacing: 1px;
}

@keyframes fadeInText{
  0% { opacity: 0; transform: translateY(0px); }
  100% { opacity: 1; transform: translateY(0); }
}

@media (max-width: 950px){
  .hero-title{
    top: 25%;
    right: -20%;
    text-align: right;
    width: fit-content;
    white-space: nowrap;
  }
  .hero-title h1{
    font-size: 2.5rem;
    font-weight: 500;
  }
  .hero-text{
    bottom: 15%;
    text-align: left;
    width: fit-content;
    white-space: nowrap;
  }
  .hero-text h1{
    font-size: 1.1rem;
    font-weight: 600;
  }
  .hero-text p{
    font-size: 0.9rem;
    letter-spacing: 1px;
  }
}

/* =====================
   7. Theme (as-is)
===================== */

.theme::before{
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -50vh;       /* hero 側へ侵食する高さ */
  height: 50vh;

  background: linear-gradient(
    to top,
    rgba(251,240,238,1) 0%,
    rgba(251,240,238,0) 100%
  );

  pointer-events: none;
}

.theme{
  position: relative;
  padding: 100px 5%;
  text-align: center;
  max-width: auto;
  margin: 0 auto;
  color: var(--color-text);
  line-height: 1.9;
  z-index: 10;

  opacity: 0;
  animation: fadeInDescription 2s ease forwards;
  animation-delay: 1s;
}

@keyframes fadeInDescription{
  0% { opacity: 0; transform: translate(30px); }
  100% { opacity: 1; transform: translate(0); }
}

.theme h2{
  margin-top: 2.2em;
  font-size: 1.6rem;
  font-weight: bold;
  letter-spacing: 1px;
}
.theme p{
  font-size: 1.1rem;
  margin-bottom: 0.8em;
}
.theme h3{
  font-size: 1.2rem;
  font-weight: 100;
  line-height: 1.1;
  margin-bottom: 2em;
}

@media (max-width: 950px){
  .theme{
    padding: 70px 6%;
    font-size: 0.8rem;
  }
  .theme h2{ font-size: 1.3rem; }
  .theme h3{ font-size: 1rem; }
  .theme p{ font-size: 0.85rem; }
}

/* =====================
   8. Section title
===================== */
.section-title{
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 60px;
  letter-spacing: 0.05em;
}

@media (max-width: 950px){
  .section-title{
    font-size: 1.5rem;
    margin-bottom: 40px;
  }
}

/* =====================
   9. Program (as-is)
===================== */
.program{
  padding: 80px 0;
  text-align: center;
}
.program .container{
  width: 90%;
  max-width: none;
  margin: 0 auto;
}
.program .container h2{
  font-size: 2rem;
  margin-bottom: 50px;
}
.program-img{
  width: 60%;
  height: auto;
  display: block;
  margin: 0 auto;
}
@media (max-width: 950px){
  .program-img{ width: auto; }
}

.program-block{ margin-bottom: 60px; }

.session-title{
  font-size: 1.5rem;
  font-weight: 700;
  margin-top: 100px;
  margin-bottom: 30px;
  color: var(--color-text);
  text-align: center;
}
.session-title h3{
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-text);
  text-align: center;
  padding: 80px 40px;
}

.session-description{
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--color-text);
  text-align: center;
  max-width: 800px;
  margin: 0 auto 0 auto;
}
@media (max-width: 950px){
  .session-title{ font-size: 1.5rem; }
  .session-description{
    font-size: 1rem;
    margin-bottom: 25px;
  }
}

/* =====================
   10. Embed widget
===================== */
.embed-widget-container{
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 30px;
}
.embed-widget{
  flex: 1 1 480px;
  max-width: 560px;
  background-color: var(--color-bg);
  padding: 15px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.embed-widget iframe{
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 8px;
  border: none;
}
.embed-widget-title{
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text);
  margin-top: 10px;
  text-align: center;
}
.embed-widget-title a{
  text-decoration: none;
  font-size: 0.9rem;
}

/* =============================
   11. Shared grid/card styling
============================= */
.time-access-wrapper,
.about-columns,
.workshop-card-grid,
.speaker-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  justify-content: center;
  align-items: stretch;
  gap: 30px;
  width: 90%;
  margin: 0 auto;
  box-sizing: border-box;
}

.time-table-section,
.access-section,
.about-col,
.workshop-card,
.speaker-card{
  background-color: var(--color-white);
  color: var(--color-text);
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  padding: 24px;
  width: 100%;
  box-sizing: border-box;
  transition: transform 0.3s ease;
}

.time-table-section:hover,
.access-section:hover,
.about-col:hover,
.workshop-card:hover,
.speaker-card:hover{
  transform: translateY(-4px);
}

/* =====================
   12. Speaker
===================== */
.speaker-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(250px, 1fr));
}
.speaker-card{ overflow: hidden; }
.speaker-card img{
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}
.speaker-info{
  padding: 16px;
  text-align: left;
  color: var(--color-text);
}
.speaker-info h4{
  font-size: 1.2rem;
  margin-bottom: 0.3em;
}
.speaker-info .title{
  font-weight: bold;
  font-size: 0.95rem;
  margin-bottom: 0.6em;
}
.speaker-info p{
  font-weight: normal;
  font-size: 0.9rem;
  line-height: 1.6;
}


/* =====================
   13. Workshop
===================== */
.workshop-card{
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
}
.workshop-card:hover{ transform: translateY(-4px); }
.workshop-card img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.workshop-info{
  padding: 40px;
  text-align: left;
  color: #000;
}
.workshop-info h4{
  font-size: 1.4rem;
  margin-bottom: 1em;
  font-weight: 700;
}
.workshop-info p{
  font-size: 1rem;
  line-height: 1.8;
}


/* =====================
   14. Time table & access
===================== */
.time-access{
  background-color: var(--color-bg);
  padding: 80px 0;
  color: var(--color-text);
  text-align: center;
}
.time-access-wrapper{
  display: grid;
  grid-template-columns: repeat(2, minmax(320px, 1fr));

  max-width: none;
  margin: 0 auto;
  width: 90%;
}


.time-table-section,
.access-section{
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 30px;
  justify-items: center;
}

.time-access h2{
  font-size: 2rem;
  margin-bottom: 50px;
}

.time-table-section h3,
.access-section h3{
  font-size: 1.4rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
  color: var(--color-text);
}

.time-table{
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
}
.time-table td{
  padding: 10px 0;
  border-bottom: 1px solid #ddd;
  font-size: 1rem;
}
.time-table td:first-child{
  width: 25%;
  font-weight: 600;
  color: var(--color-text);
}

.note{
  margin-top: 10px;
  font-size: 0.9rem;
  color: var(--color-text);
  text-align: center;
}

.access-details p{
  margin: 8px 0;
  font-size: 1rem;
}
.access-details strong{ color: var(--color-text); }
.access-details hr{
  margin: 16px 0;
  border: 0;
  border-top: 1px solid #ddd;
}
.access-details ul{
  margin-top: 8px;
  padding-left: 20px;
  list-style: disc;
}
.access-details li{
  margin-bottom: 6px;
  font-size: 0.95rem;
}

.map-container{
  margin-top: auto;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.map-container iframe{
  width: 100%;
  height: 300px;
  border: none;
}


/* =====================
   15. Ticket
===================== */
.ticket{
  background-color: var(--color-bg);
  padding: 80px 0;
  text-align: center;
}
.ticket .ticket-info{
  width: 90%;
  margin: 20px auto 0;
}
.peatix-widget-wrapper,
.ticket h3,
.ticket p,
.ticket-table{
  width: 100%;
}
.ticket h2{
  color: var(--color-text);
  font-size: 2rem;
  margin-bottom: 50px;
}
.ticket h3{
  margin: 0;
  border-collapse: collapse;
  text-align: left;
  padding: 4px 8px;
  color: var(--color-text);
}
.ticket-table{
  margin: 0;
  border-collapse: collapse;
}
.ticket-table td{
  text-align: left;
  padding: 4px 8px;
  vertical-align: top;
}
.ticket p{
  margin: 0;
  text-align: left;
  padding: 4px 8px;
  margin-bottom: 20px;
}
.underline-link{ text-decoration: underline; }
.peatix-widget-wrapper{
  margin: auto;
  width: 100%;
}
.peatix-widget-wrapper iframe{
  height: 400px;
  width: 100%;
  border-radius: 8px;
  border: none;
}

/* =====================
   16. Partner
===================== */
.partner{
  background-color: var(--color-bg);
  padding: 80px 0;
  text-align: center;
}
.partner h2{
  color: var(--color-text);
  font-size: 2rem;
  margin-bottom: 50px;
}
.partner h3{
  margin-top: 80px;
  margin-bottom: 10px;
  font-size: 1.4rem;
  color: var(--color-text);
}
.partner-grid{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  margin-top: 40px;
}
.partner-logo{
  background-color: var(--color-white);
  width: 140px;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s ease-in-out;
  overflow: hidden;
  padding: 10px;
}
.partner-logo:hover{ transform: translateY(-5px); }
.partner-logo img{
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.partner-logo a{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

/* =====================
   17. About
===================== */
.about{
  background-color: var(--color-bg);
  padding: 80px 0;
  text-align: center;
}
.about h2{
  margin-bottom: 40px;
  color: var(--color-text);
  font-size: 2rem;
  margin-bottom: 50px;
}
.about-col{ text-align: left; }
.about-col h3{
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: var(--color-text);
}
.about-col p{
  font-size: 1rem;
  color: var(--color-text);
  line-height: 1.7;
}
.about-col h3 a{
  text-decoration: underline;
  color: var(--color-text);
  transition: color 0.3s ease;
}
.about-col h3 a:hover{ color: var(--color-orange); }
.about-col p:last-child{ margin-bottom: 0; }
.about-link{ text-decoration: none; color: inherit; }


/* =====================
   18. Footer
===================== */
.footer{
  background-color: var(--color-white);
  border-top: 1px solid #ddd;
  padding: 60px 0;
  text-align: center;
}
.footer-inner.centered{
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
}
.footer-button{
  background-color: #eb0028;
  color: #fff;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
.footer-button:hover{ opacity: 0.8; }
.social-links{
  display: flex;
  justify-content: center;
  gap: 24px;
}
.social-icon{
  width: 30px;
  height: 30px;
  opacity: 0.75;
  transition: opacity 0.3s ease;
}
.social-icon:hover{ opacity: 1; }
.footer-text{
  font-size: 0.9rem;
  color: var(--color-black);
  line-height: 1.6;
}


/* =====================
   Home link sections
===================== */
.contents-home,
.partner-home{
  padding: 80px 0;
  text-align: center;
  background-color: var(--color-bg);
}

.section-description{
  width: 90%;
  margin: 0 auto 40px;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--color-text);
}

.contents-link-button{
  display: block;
  width: 60%;
  margin: 0 auto;

  padding: 22px 16px;
  border-radius: 14px;

  background-color: var(--color-orange);
  color: var(--color-text);

  font-size: 1.05rem;
  font-weight: 600;
  text-align: center;

  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.partner-link-button{
  display: block;
  width: 60%;
  margin: 0 auto;

  padding: 22px 16px;
  border-radius: 14px;

  background-color: var(--color-blue);
  color: var(--color-text);

  font-size: 1.05rem;
  font-weight: 600;
  text-align: center;

  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.contents-link-button:hover,
.partner-link-button:hover{
  transform: translateY(-3px);
  box-shadow: 0 10px 26px rgba(0,0,0,0.18);
}

.contents-home h2,
.partner-home h2{
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 60px;
  text-align: center;
}

/* =====================
   19. Sphere
===================== */
#sphere-container{
  width: 150px;
  height: 240px;
  position: fixed;
  z-index: 30;
  bottom: 10px;
  left: 12px;
}

/* =====================
   20. Responsive
===================== */
@media (max-width: 900px){
  /* header 高さをスマホ用に */
  body{ padding-top: var(--header-h-sp); }
  .site-header{
    height: var(--header-h-sp);
    padding: 0 14px;
  }

  /* hamburger 表示 */
  .hamburger{ display: inline-grid; }

  /* PC時の横並び nav をスマホではドロワーにする */
  .header-nav.nav{
    position: fixed;
    top: var(--header-h-sp);
    left: 0;
    right: 0;

    padding: 14px 16px 18px;
    background: var(--color-white);
    backdrop-filter: blur(8px);

    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;

    transition: opacity 160ms ease, transform 160ms ease;
  }

  /* nav 内を縦並びに */
  .header-nav.nav ul{
    display: grid;
    gap: 10px;
  }

  .header-nav.nav a{
    display: block;
    margin: 0;
    padding: 10px 8px;
    border-radius: 10px;
    color: var(--color-black);
  }
  .header-nav.nav a:active{
    background: rgba(255,255,255,0.10);
  }

  /* 開いた状態 */
  body.is-menu-open .header-nav.nav{
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .hero-inner{ grid-template-columns: 1fr; }
  .hero{ min-height: 70vh; }
  .hero-text{ max-width: 100%; }

  .page-home .hero{ padding-top: 0; }

  .page-home .hero-inner{
    padding-top: calc(var(--header-h-sp) + var(--hero-top-gap));
    align-items: end;
    padding-bottom: 12px;
  }

  .hero{
    min-height: 100svh;
    position: relative;
  }
  .hero-bg{
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
  }

  .page-home .hero-grid{
    grid-template-columns: 1fr;
    gap: 18px;
    justify-items: center;
  }
  .page-home .hero-video{
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .hero-text{
    max-width: 100%;
    align-items: center;
    text-align: center;
  }
  .page-home .hero-text{ margin-top: 20px; }

  .hero-title{
    align-items: center;
    width: 100%;
    max-width: none;
    padding: 0;
    text-align: center;
  }
}

@media (max-width: 950px){

  /* 1) wrapperは画面いっぱい（中央ズレの原因を消す） */
  .time-access-wrapper,
  .about-columns,
  .workshop-card-grid,
  .speaker-grid{
    width: 100%;
    max-width: none;
    margin: 0 auto;
    grid-template-columns: 1fr;
    justify-items: center;   /* グリッドアイテムを中央へ */
  }

  /* 2) 各カード（time/access/about/workshop/speaker）を90%中央 */
  .time-table-section,
  .access-section,
  .about-col,
  .workshop-card,
  .speaker-card{
    width: 90%;
    margin: 0 auto;
  }

  /* 3) ticketセクション内のコンテンツも90%中央（カード以外） */
  .ticket .ticket-info{
    width: 90%;
    margin-left: auto;
    margin-right: auto;
  }

  .ticket h3,
  .ticket p,
  .ticket-table{
    width: 90%;
    margin-left: auto;
    margin-right: auto;
  }

  /* tableセルは左揃え維持 */
  .ticket-table td{
    text-align: left;
    padding: 4px 8px;
    vertical-align: top;
    font-size: 0.7rem;
  }

  /* peatix widgetも90%中央 */
  .ticket .peatix-widget-wrapper{
    width: 90%;
    margin-left: auto;
    margin-right: auto;
  }
  .ticket .peatix-widget-wrapper iframe{
    width: 100%;
  }

  .about-col h3{ margin-bottom: 10px; }
  .about-col p{ font-size: 0.95rem; }

  .time-access{
    padding: 40px 4%;
  }
  .time-access-wrapper{
    grid-template-columns: 1fr;
    gap: 24px;
    /* max-width: 520px; */
    justify-items: center;
  }
  .time-table-section,
  .access-section{
    width: 90%;
    padding: 20px;
    box-sizing: border-box;
  }
  .time-table td{ font-size: 0.9rem; }
  .access-details p,
  .access-details li{ font-size: 0.9rem; }
  .map-container iframe{
    width: 100%;
    height: 200px;
  }

  .workshop-info{
    padding: 20px;
    text-align: center;
  }
  /* .contents-home h2,
  .partner-home h2{
    font-size: 1.5rem;
    margin-bottom: 40px;
  } */
}


/* =====================
   21. Utility
===================== */

