@charset "utf-8";




/* 
Base style
*/
body {
    font-family: 'Noto Sans JP', "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
    font-size: 15px;
    line-height: 1.5;
    color: #333;
    background-color: #ffffff;
}
label, input, textarea, select, button {
    cursor: pointer;
}
button {
    border: 0;
}


@media (max-width: 1024px) {
  body {
    font-size: 14px;
    line-height: 1.4;
  }
}

@media (max-width: 600px) {
  body {
    font-size: 13px;
    line-height: 1.3;
  }
}



.wrapper {
    max-width: 1200px;
    margin: 0 auto;
    transform: none !important; 
    zoom: 1 !important;
}


/* 
header
*/.header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 3px 15px;
    position: fixed;
    z-index: 10;
    top: 0;
    left: 0;
    background-color: #fe8ab1;
}

.header-logo {
    margin: 0;
}
.header-logo > a {
    display: block;
    color: white; 
    text-decoration: none;
    font-size: 23px;
    margin: 10px;
    font-family: 'Lora', serif;
    font-style: italic;
    font-weight: 700;
}

.header-navlist {
    margin: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-right: 20px;
    color: white; 
}

.header-navitem > a {
    display: block;
    padding: 6px 10px;
    color: white; 
    text-decoration: none;
    font-weight: bold;
    border-bottom: 2px solid transparent;
    transition: border-color .25s;
}
.header-navitem > a:hover {
    border-bottom: 2px solid white; 
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 22px;
    background-color: #fe8ab1;
    border: none;
    cursor: pointer;
    z-index: 15;
    margin-right: 20px;
}

.hamburger span {
    display: block;
    height: 4px;
    background-color: white;
    border-radius: 2px;
}



@media screen and (max-width: 768px) {
    .hamburger {
        display: flex;
        position: absolute;
        top: 50%;
        right: 20px;
        transform: translateY(-50%);
        width: 30px;
        height: 18px;
        z-index: 15;
    }

    .hamburger span {
        height: 2.75px;
        background-color: white;
        border-radius: 2px;
        width: 100%;
    }

    .header {
        padding: 10px 15px; 
    }

    .header-logo > a {
        font-size: 18px;
        margin: 7px;
        font-weight: 700;
    }

    .header-nav {
        position: absolute;
        top: 100%; 
        left: 0;
        width: 100%;
        background-color: #fe8ab1;
        transform: translateY(-20px);
        opacity: 0;
        transition: transform 0.3s ease, opacity 0.3s ease;
        pointer-events: none;
        z-index: 10;
    }

    .header-nav.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .header-navlist {
        flex-direction: column;
        align-items: flex-start;
        padding: 0;
        margin: 0;
    }

    .header-navitem > a {
        width: 100%;
        padding: 12px 15px;
        font-size: 12px;
        color: white;
        text-decoration: none;
        font-weight: bold;
        border-bottom: 1px solid rgba(255,255,255,0.2);
    }
}





/* 
hero
*/
.hero {
    width: 100%;
    height: 100vh;
    background-image: url("../images/hero.PNG");
    background-size: cover;
    background-position: left center;
    background-repeat: no-repeat;
}

/* 背景画像 */
.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}


/* タブレット中画面対応 */
@media (max-width: 1024px) and (min-width: 601px) {
    .hero {
        height: 80vh;
        background-position: left center;
    }

    .hero-image {
        object-position: left center;
    }
}


/* スマホ・小画面対応 */
@media (max-width: 600px) {
    .hero {
        height: 60vh; 
        background-position: center center; 
    }

    .hero-image {
        object-position: center center; 
    }
}




/* 
about
*/
.container {
    width: 80%;
    margin: 60px auto;
    padding: 15px;
}

.about h2 {
    font-size: 45px;
    font-weight: bold;
    letter-spacing: 1px;
    margin-bottom: 3px;
}

.subtitle {
    margin-top: 0;        
    font-size: 14px;
    margin-bottom: 30px;
    font-weight: bold;
}


.event-notes {
    display: flex;
    justify-content: space-between; 
    align-items: flex-start; 
    gap: 20px;
}

.daytime {
    width: 50%;
    margin: 0;
    margin-bottom: 10px;
    text-align: left;
    flex: 1 1 45%;
}


.daytime p {
    margin-bottom: 15px;
    font-size: 35px;
}


.notes {
    font-size: 20px;
    margin: 0;
    width: 40%;
    text-align: left;
    line-height: 2;
}


@media (max-width: 768px) {
  .container {
    width: 90%;
    margin: 40px auto;
    padding: 10px;
  }

  .about h2 {
    font-size: 32px;
  }

  .event-notes {
    flex-direction: column;
    gap: 15px;
  }

  .daytime,
  .notes {
    width: 100%;
    flex: none;
  }

  .daytime p {
    font-size: 24px;
  }

  .notes {
    font-size: 16px;
    line-height: 1.6;
  }
}


@media (max-width: 480px) {
  .about h2 {
    font-size: 32px;
  }

  .daytime p {
    font-size: 20px;
  }

  .notes {
    font-size: 14px;
    line-height: 1.4;
  }
}




/*
news
*/
.news-section {
    max-width: 1200px;
    margin: 40px auto;
    padding: 30px;
}

.news h2 {
    font-size: 45px;
    font-weight: bold;
    letter-spacing: 1px;
    margin-bottom: 3px;
}

.news-list {
    width: 100%;
    text-align: left;
    margin: 40px 0;
    list-style: none;
    padding: 0;
}

.news-list .date {
    font-weight: bold;
    margin-right: 60px;
    margin-left: 30px;
    color: #f8698d; 
    display: inline-block; 
}

.news-list li {
    margin-bottom: 12px;
    font-size: 20px;
    border-bottom: 1px solid #f8a0b6;
    padding: 10px;
    background-color: #f9f9f9;
    border-radius: 6px;
    transition: background-color 0.3s;
}

.news-list li:hover {
    background-color: #fae0e7;
}


.news-list li::after {
  content: "＞";
  float: right;
  color: #f8698d;
  font-weight: bold;
  transition: transform 0.3s;
}

.news-list li:hover::after {
  transform: translateX(6px);
}



/* モーダル */
.modal {
  display: none; 
  position: fixed; 
  z-index: 1000;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background-color: rgba(0,0,0,0.6);
}

.modal-content {
  background: #fff;
  margin: 10% auto;
  padding: 20px;
  width: 70%;
  max-width: 600px;
  border-radius: 10px;
  position: relative;
}

.modal-content h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.modal-content .modal-date {
  color: #f8698d;
  font-weight: bold;
  margin-bottom: 15px;
}

.close {
  position: absolute;
  top: 12px; right: 15px;
  font-size: 24px;
  font-weight: bold;
  cursor: pointer;
}




@media (max-width: 1024px) {
  .news-section {
    max-width: 90%;
    padding: 20px;
    margin: 30px auto;
  }
  
  .news-list .date {
    margin-left: 15px;
    margin-right: 30px;
  }

  .news-list li {
    font-size: 18px;
    padding: 8px;
  }

  .more-button {
    padding: 8px 18px;
    font-size: 14px;
  }
}


@media (max-width: 600px) {
  .news-section {
    max-width: 95%;
    padding: 15px 10px;
    margin: 20px auto;
  }

  .news h2 {
    font-size: 32px;
  }

  .news-list .date {
    margin-left: 10px;
    margin-right: 15px;
    font-size: 14px;
  }

  .news-list li {
    font-size: 16px;
    padding: 6px 8px;
  }

  .more-button {
    padding: 6px 16px;
    font-size: 14px;
    border-radius: 20px;
  }
}





/*
access
*/
.access-section {
    max-width: 1200px;
    margin: 40px auto; 
    padding: 30px;
    margin-bottom: 30px;
}

.access h2 {
    font-size: 45px;
    font-weight: bold;
    letter-spacing: 1px;
    margin-bottom: 3px;
}    

.access-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.access-info {
    flex: 1 1 60%;
}

.school-name {
    font-size: 20px;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 5px;
}

.school-address {
    font-size: 16px;
    margin-bottom: 30px;
}

.map-container iframe {
    width: 80%;
    height: 300px;
    border: none;
}

.station-info {
    flex: 1 1 30%;
}

.station-info p {
    margin-bottom: 15px;
    font-size: 30px;
}

.highlight {
    color: #f8698d;
    font-weight: bold;
    font-size: 35px;
}


@media screen and (max-width: 768px) {
  .access-container {
    flex-direction: row;       
    flex-wrap: wrap;          
    gap: 20px;
  }

  .access-info {
    flex: 1 1 60%;            
  }

  .station-info {
    flex: 1 1 30%;            
  }

  .map-container iframe {
    width: 100%;
    height: 150px;
  }

  .station-info p {
    font-size: 18px;
  }

  .highlight {
    font-size: 24px;
  }

  .school-name {
    font-size: 16px;
  }

  .school-address {
    font-size: 14px;
  }

  .access h2 {
    font-size: 32px;
  }
}




/*
concept
*/
.concept-section {
    max-width: 1200px;
    margin: 40px auto 80px; 
    padding: 30px;
}

.concept h2 {
    font-size: 45px;
    font-weight: bold;
    letter-spacing: 1px;
    margin-bottom: 3px;
}

.concept-description {
    margin-top: 60px;
    font-size: 18px;
    line-height: 2;
    text-align: left;
}  


@media screen and (max-width: 768px) {
    .concept-section {
        padding: 15px 10px;
        margin: 10px 5px 30px;
    }

    .concept h2 {
        font-size: 32px;
        width: 100%;
        border-bottom-width: 1.5px;
    }

    .concept-description {
        font-size: 16px;
        text-align: left;
    }
}




/* 
footer
*/
.footer {
  background-color: #fe8ab1;
  display: flex;
  color: #ffffff;
  justify-content: center;
  align-items: center;
  padding: 30px 50px;
  border-radius: 0 0 8px 8px;
  flex-wrap: wrap;
  margin-top: 20px;
  transition: all 0.3s ease;
  position: static; 
  width: 100%;
  box-sizing: border-box;
  z-index: auto;
}

.footer.fixed {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  padding: 20px 15px;
  border-radius: 0;
  box-shadow: 0 -2px 5px rgba(0,0,0,0.2);
  z-index: 1000;
}

main.footer-fixed-padding {
  padding-bottom: 80px; 
}


@media (max-width: 600px) {
  .footer {
    padding: 20px 15px;
    font-size: 14px;
  }
  .footer.fixed {
    padding: 15px 10px;
  }
}

.footer-left {
    display: flex;
    flex-direction: row; 
    flex-direction: column;
    align-items: flex-start;
    margin-right: 200px;
}

.footer-right {
    text-align: center;
    margin-left: 200px;
}

.festival-title {
    font-size: 15px;
    margin: 0;
    margin-bottom: 0;
    font-family: 'Lora', serif;
    font-style: italic;
    font-weight: 700;
}

.festival-theme {
    color: #fff;
    font-family: 'Georgia', serif;
    font-size: 70px;
    padding: 0;
    margin: 0;
    border-bottom: 1px solid white;
}

.follow-us {
    font-size: 20px;
    margin-bottom: 10px;
}

.gradient-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background:linear-gradient(90deg, #24d7f286, #8a5cf682);
  color: white;
  padding: 12px 24px;
  border: none;
  border-radius: 30px;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  transition: 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.gradient-button .arrow {
  margin-left: 10px;
  font-size: 18px;
}

.gradient-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}


.copyright {
    font-size: 13px;
    color: #ffffff;
    margin: 5px 0;      /* 上下だけ余白 */
    text-align: center; /* 中央寄せ */
    width: 100%;        /* 横幅を全体に広げる */
}
.footer hr {
  border: none;
  border-top: 1px solid #ffffff;
  margin-bottom: 5px;
  margin-top: 50px;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}


@media screen and (max-width: 768px) {
    .footer {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 20px 10px;
    }

    .footer-left, .footer-right {
        margin: 0;
        align-items: center;
        text-align: center;
    }

    .footer-left {
        margin-bottom: 20px;
    }

    .festival-theme {
        font-size: 40px;
    }

    .social-icons img {
        width: 50px;
        height: 50px;
    }
}




/*
info
*/
.info-grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.rules h1 {
    font-size: 45px;
    font-weight: bold;
    letter-spacing: 1px;
    margin-bottom: 3px;
}

.info-card:hover {
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
    background-color: #fdf0f3;
}


.info-card {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  padding: 20px;
}

.info-card h2 {
  font-size: 1.2em;
  margin-bottom: 10px;
  color: #222;
  text-align: center;
}

.info-card p {
  font-size: 0.95em;
  color: #555;
  margin-bottom: 15px;
  text-align: left;
}


@media screen and (max-width: 768px) {
  .info-card {
    padding: 15px;
  }

  .info-card h2 {
    font-size: 1.05em;
  }

  .info-card p {
    font-size: 0.9em;
  }

  .rules h1 {
    font-size: 32px;
  }
}


@media screen and (max-width: 480px) {
  .info-card {
    padding: 10px;
  }

  .info-card h2 {
    font-size: 1em;
  }

  .info-card p {
    font-size: 0.85em;
  }

  .rules h1 {
    font-size: 32px;
    text-align: center;
  }

  .info-grid-container {
    gap: 15px;
  }
}




/*
messages
*/
.messages h1 {
    font-size: 45px;
    font-weight: bold;
    letter-spacing: 1px;
    margin-bottom: 3px;
}

.greeting-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  text-align: center;
}

.greeting-card {
  background-color: #f9f9f9;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  text-align: left;
  transition: transform 0.3s ease;
}

.greeting-card:hover {
  transform: translateY(-5px);
}

.greeting-card h3 {
  font-size: 18px;
  color: #2c3e50;
  margin-bottom: 8px;
}

.greeting-card .name {
  font-weight: bold;
  color: #555;
  margin-bottom: 12px;
}

.greeting-card .message {
  color: #444;
  font-size: 15px;
  line-height: 1.6;
}

@media screen and (max-width: 768px) {
  .messages h1 {
    font-size: 32px;
  }
  .greeting-card {
    padding: 16px;
  }

  .greeting-card h3 {
    font-size: 16px;
  }

  .greeting-card .name {
    font-size: 14px;
  }

  .greeting-card .message {
    font-size: 14px;
  }
}


@media screen and (max-width: 480px) {
  .messages h1 {
    font-size: 32px;
  }

  .greeting-card {
    padding: 12px;
  }

  .greeting-card h3 {
    font-size: 15px;
  }

  .greeting-card .name {
    font-size: 13px;
  }

  .greeting-card .message {
    font-size: 13px;
    line-height: 1.5;
  }

  .greeting-cards {
    gap: 20px;
  }
}




/*
contents
*/
.button-group {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    padding: 10px;
}

.button-group .btn {
    display: block; 
    text-decoration: none;
    background-color: transparent;
    border: 2px solid #fc93ae; 
    color: #000;
    align-items: center;  
    justify-content: center; 
    padding: 13px 38px;  
    font-size: 20px;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-top: 100px;
}


.button-group .btn.active {
    background-color: #fc93ae;
    color: white;
}

.event-list {
    max-width: 1100px;
    margin: 30px auto 0;
    padding: 20px;
}
.card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3列 */
    gap: 60px;
    margin-bottom: 30px;
}

.card-content {
    width: 100%;
    margin: 0 auto;
    min-height: 200px;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 15px;
    border-radius: 15px;
    background-color: #f9f9f9;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px; 
}

.card-header h2 {
    margin-bottom: 10px;
    margin-left: 15px;
    font-weight: 700;
    font-size: 23px;
}


.card-text {
    margin: 0;
    padding: 0;
    
}

.card-text p {
    margin-left: 15px;
    margin-right: 15px;
    font-size: 16px;
    line-height: 1.5em;
    text-align: left;
}


.thin-space {
    display: block;
    height: 0.5em; 
}

.midashi {
    font-size: 18px;  
    font-weight: bold;
}

.small-text {
    font-size: 14px;  
}

.most-small-text {
    font-size: 12px;  
    font-weight: 600;
}


.card-details {
    display: flex;
    flex-direction: column;
    gap: 10px; 
}

.view-more-wrapper {
    text-align: center;
    margin-top: 12px;
}

.view-more-btn {
    background-color: #e997ac;
    color: #fff;
    border: none;
    padding: 8px 16px;
    font-size: 1rem;
    border-radius: 4px;
    cursor: pointer;
    display: inline-block;
}

.more-text {
    display: none;
}

.card-description.expanded .more-text {
    display: inline;
}


.image-and-buttons {
    display: flex;
    align-items: center;
    gap: 30px; 
    margin: 0; 
    padding: 0;
}

.card-image {
    width: 80px;
    height: 80px;
    margin-left: 10px;
}

.card-location {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 18px;
    font-weight: bold;
}


.card-buttons button {
    font-size: 16px;
    padding: 8px 16px;
    margin-right: 10px;
    font-weight: 500;
    color: #333;
    align-self: flex-start;
}


@media screen and (max-width: 1024px) {
  .card-grid {
    grid-template-columns: repeat(2, 1fr); 
    gap: 40px;
  }

  .button-group {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-top: 70px;
  }

  .button-group .btn {
    font-size: 14px;
    margin: 5px 3px;
  }

  .card-header h2 {
    font-size: 18px;
  }

  .card-location {
    font-size: 16px;
  }

  .card-buttons button {
    font-size: 14px;
    padding: 6px 12px;
    color: #333;
  }
}

@media screen and (max-width: 600px) {
  .card-content {
    width: 70%;
  }

  .card-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .button-group {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-top: 70px;
    font-weight: 1.5em;
  }

  .button-group .btn {
    font-size: 14px;
    margin: 5px 3px;
  }
  
  .card-header h2 {
    font-size: 20px;
  }

  .card-image {
    width: 60px;
    height: 60px;
  }

  .card-location {
    font-size: 14px;
  }
  
  .card-buttons button {
    font-size: 13px;
    padding: 6px 10px;
    margin-right: 6px;
    color: #333;
  }

  .event-list {
    padding: 10px;
  }

  .card-content {
    padding: 12px;
  }

  .card-text p {
    margin-left: 10px;
    margin-right: 10px;
  }
}




/*
timetable
*/
main {
  flex: 1 0 auto; 
}

.timetable-title h1 {
    font-size: 45px;
    font-weight: bold;
    letter-spacing: 1px;
    margin-bottom: 3px;
}

.timetable-container {
    max-width: 1200px;
    margin: auto;
}

.timetable-button-group {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    padding: 10px;
    margin-top: 10px;
}

.timetable-button-group .btn {
    display: block; 
    text-decoration: none;
    background-color: transparent; 
    border: 2px solid #fc93ae;    
    color: #000;
    align-items: center;       
    justify-content: center; 
    padding: 13px 38px;          
    font-size: 20px;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s;
}


.timetable-button-group .btn.active {
    background-color: #fc93ae;
    color: white;
}

.timetable-scroll-wrapper {
  overflow-x: visible;
  width: 100%;
}

.timetable {
  position: relative;
  padding-left: 60px;
  height: 100%;
  border-left: 2px solid #ccc;
}


.time-guides {
  position: relative;
  width: 100%;
}

.time-label {
  position: absolute;
  left: -60px;  
  top: -6px;     
  width: 50px;
  text-align: right;
  padding-right: 10px;
  font-weight: bold;
  font-size: 12px;
  color: #444;
}


.time-line {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  z-index: 0;
  background-color: #000;
  height: 1px;
}


.time-row {
  position: absolute;
  left: 60px;
  width: 90%;
  background-size: 10px 1px;
  background-repeat: repeat-x;
  opacity: 0.5;
}


.dotted-line-row {
  position: absolute;
  left: 60px;
  width: 90%;
  height: 1px;
  background-image: linear-gradient(to right, #888 50%, transparent 0%);
  background-size: 10px 1px;
  background-repeat: repeat-x;
  opacity: 0.5;
}



.columns {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-left: 20px;
  margin-right: 40px;
  min-height: 1300px; 
  position: relative;
}

.column {
  position: relative;
}

.column-title {
  text-align: center;
  font-weight: bold;
  margin-bottom: 5px;
  border-bottom: 2px solid #ccc;
  margin-top: 25px;
}

/* イベントカード */
.event {
  position: absolute;
  width: calc(100% - 10px);
  left: 5px;
  background-color: white;
  border: 2px solid #fc93ae;
  border-radius: 8px;
  font-size: 13px;
  box-shadow: 1px 2px 6px rgba(0,0,0,0.1);
  box-sizing: border-box;
  justify-content: center;
  display: flex;
  flex-direction: column;
  align-items: center;    
  justify-content: center; 
  text-align: center;
}

.event .title {
  font-weight: 900;
  font-size: 15px;
}

.event .time {
  font-size: 13px;
  color: #666;
  font-weight: 700;
}

@media screen and (max-width: 1024px) {
  .timetable-title h1 {
    font-size: 32px;
  }
  .timetable-button-group .btn {
    padding: 10px 28px;
    font-size: 18px;
  }

}

@media screen and (max-width: 600px) {
  .timetable-title h1 {
    font-size: 32px;
 }
 .timetable-button-group {
    gap: 20px; 
    flex-wrap: wrap;
  }

  .timetable-button-group .btn {
    padding: 8px 20px;
    font-size: 16px;
    border-radius: 6px;
  }
}


@media screen and (max-width: 768px) {
  .timetable-container {
    overflow-x: auto; 
  }

  .timetable-title {
    font-size: 1em;
  }

  .timetable-scroll-wrapper {
    width: 100%;
    overflow-x: auto;
  }

  .timetable {
    min-width: 800px;  
    min-height: 1400px;  
  }

  .columns {
    grid-template-columns: repeat(4, 200px); 
    gap: 10px;
    margin-left: 10px;
    margin-right: 10px;
    min-height: 1000px;
  }

  .column-title {
    font-size: 14px;
  }

  .event {
    font-size: 11px;
    padding: 4px;
  }

  .event .title {
    font-size: 13px;
  }

  .event .time {
    font-size: 11px;
  }

  .time-label {
    font-size: 10px;
    left: -55px;
  }
}




/*
maps
*/
.maps h1 {
    font-size: 45px;
    font-weight: bold;
    letter-spacing: 1px;
    margin-bottom: 3px;
}

.wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1;
}

.maps-section img {
    display: block;          
    margin: 20px auto;      
    max-width: 90%;         
    height: auto;           
}


@media (max-width: 1024px) {
  .maps h1 {
    font-size: 32px;
  }

  .wrapper {
    padding: 0 20px;
  }
}


@media (max-width: 600px) {
  .maps h1 {
    font-size: 32px;
  }

  .wrapper {
    padding: 0 15px;
  }

  main {
    width: 100%;
  }
}




/*
FAQ
*/
.faq h1 {
    font-size: 45px;
    font-weight: bold;
    letter-spacing: 1px;
    margin-bottom: 3px;
}

.qa-6 {
    max-width: auto;
    margin-bottom: 5px;
    border-bottom: 2px solid #d6dde3;
    font-size: 16px;
}

.qa-6 summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 1em 2em 1em 3em;
    color: #333333;
    font-weight: 600;
    cursor: pointer;
}

.qa-6 summary::before,
.qa-6 p::before {
    position: absolute;
    left: 1em;
    font-weight: 600;
    font-size: 1.3em;
}

.qa-6 summary::before {
    color: #4781b8;
    content: "Q";
}

.qa-6 summary::after {
    transform: translateY(-25%) rotate(45deg);
    width: 7px;
    height: 7px;
    margin-left: 10px;
    border-bottom: 3px solid #333333b3;
    border-right: 3px solid #333333b3;
    content: '';
    transition: transform .5s;
}

.qa-6[open] summary::after {
    transform: rotate(225deg);
}

.qa-6 p {
    position: relative;
    transform: translateY(-10px);
    opacity: 0;
    margin: 0;
    padding: .3em 3em 1.5em;
    color: #333;
    transition: transform .5s, opacity .5s;
}

.qa-6[open] p {
    transform: none;
    opacity: 1;
}

.qa-6 p::before {
    color: #f788a4;
    line-height: 1.2;
    content: "A";
}


.faq-section h2 {
    position: relative;
    padding: 1rem 1rem 1rem 1.5rem;
    border-radius: 5px;
    border: 3px solid #5e94b4b4;
    box-shadow: -3px 3px 0 0 #5e94b4b4;
    font-weight: bold;
    font-size: 26px;
    margin-top: 50px;
}

.faq-section h2:before,
.faq-section h2:after {
    position: absolute;
    left: 30px;
    height: 0;
    width: 0;
    border: solid transparent;
    content: "";
}

.faq-section h2:before {
    top: 100%;
    margin-left: -12px;
    border-color: transparent;
    border-top-color: #5e94b4b4;;
    border-right-color: #5e94b4b4;
    border-width: 10px;
}

.faq-section h2:after {
    top: 99%;
    margin-left: -7px;
    border-color: transparent;
    border-top-color: white;
    border-right-color: white;
    border-width: 6.5px;
}


@media (max-width: 1024px) {
  .others-grid-container {
    grid-template-columns: repeat(2, 1fr); 
    gap: 16px;
  }

  .others h1,
  .faq h1 {
    font-size: 32px;
  }

  .others-card h2 {
    font-size: 20px;
  }

  .faq-section h2 {
    font-size: 22px;
    padding: 0.8rem 1rem 0.8rem 1.2rem;
  }
}


@media (max-width: 600px) {
  .qa-6 summary {
    padding: 0.8em 1.2em 0.8em 2.8em;
    font-size: 14px;
  }

  .qa-6 p {
    padding: 0.3em 2.8em 1em;
    font-size: 14px;
  }

  .qa-6 summary::before,
  .qa-6 p::before {
    font-size: 1.1em; 
  }
}


html, body {
  transform: none !important;
  zoom: 1 !important;
  font-size: 100% !important;
}