@charset "utf-8";

:root{
    --link: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cg%3E%3Cpath fill='%23ffffff' d='M96,0v416h416V0H96z M472,376H136V40h336V376z'/%3E%3Cpolygon fill='%23ffffff' points='40,472 40,296 40,136 40,96 0,96 0,512 416,512 416,472 376,472'/%3E%3Cpolygon fill='%23ffffff' points='232.812,312.829 350.671,194.969 350.671,279.766 390.671,279.766 390.671,126.688 237.594,126.688 237.594,166.688 322.39,166.688 204.531,284.547'/%3E%3C/g%3E%3C/svg%3E");
    --link2: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cg%3E%3Cpath fill='%23333' d='M96,0v416h416V0H96z M472,376H136V40h336V376z'/%3E%3Cpolygon fill='%23333' points='40,472 40,296 40,136 40,96 0,96 0,512 416,512 416,472 376,472'/%3E%3Cpolygon fill='%23333' points='232.812,312.829 350.671,194.969 350.671,279.766 390.671,279.766 390.671,126.688 237.594,126.688 237.594,166.688 322.39,166.688 204.531,284.547'/%3E%3C/g%3E%3C/svg%3E");
    --link-hover:url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cg%3E%3Cpath fill='%23c2a13d' d='M96,0v416h416V0H96z M472,376H136V40h336V376z'/%3E%3Cpolygon fill='%23c2a13d' points='40,472 40,296 40,136 40,96 0,96 0,512 416,512 416,472 376,472'/%3E%3Cpolygon fill='%23c2a13d' points='232.812,312.829 350.671,194.969 350.671,279.766 390.671,279.766 390.671,126.688 237.594,126.688 237.594,166.688 322.39,166.688 204.531,284.547'/%3E%3C/g%3E%3C/svg%3E");


  /* ===== Base ===== */
  --color-bg: #ffffff;
  --color-text: #333333;
  --color-text-mid:#555555;
  --color-text-light: #888888;
  --color-line-dotted:#cccccc;

  /* ===== Brand ===== */
  --color-main: #5f7486;
  --color-accent: #c2a13d;

   /* ===== Overlay / Hover ===== */
   --color-overlay-clear:rgba(0,0,0,0);
   --color-overlay-strong: rgba(0,0,0,0.4);
   --color-hover-bg:rgba(0,0,0,0.02);

   /* ===== Borders & UI ===== */
  --color-border-mid: rgba(0,0,0,0.1);
  --color-border-light: rgba(0,0,0,0.05);

  /* ===== Header BG (SP) ===== */
  --color-header-bg: rgba(255,255,255,0.95);

  /* ===== Categoryバッジ ===== */
  --color-badge-bg: var(--color-main);
  --color-badge-text: var(--color-bg);






}


body{
    font-family: "Montserrat","M PLUS 1",sans-serif;
    font-size:18px;
    margin:0;
}





.container{
    display: flex;
    width:100%;
    height: 100vh;
    overflow:hidden;
}



/* 左　スライド */
.left-slide{
    width:45%;
    height:100vh;
    position:fixed;
    overflow: hidden;
    background-color: var(--color-bg);
    z-index: 10;
}

.slide-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 2s ease-in-out;
}

.slide-item::after {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: transparent;
    transition: background 0.5s;
    z-index: 1;
}


.slide-item.overlay::after {
    background: linear-gradient(to bottom, var(--color-overlay-clear) 60%, var(--color-overlay-strong) 100%);
}


.slide-item.active {
    opacity: 1;
}
.slide-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    z-index: 0;
}


.left-slide .n2-section-smartslider,
.left-slide .n2-ss-slider,
.left-slide .n2-ss-slider-wrapper{
  position:absolute !important;
  inset:0 !important;
  width:100% !important;
  height:100% !important;
}

.left-slide .n2-padding{
  padding:0 !important;
  height:100% !important;
}

.left-slide .n2-ss-slide-background-image,
.left-slide .n2-ss-slide-background-image picture,
.left-slide .n2-ss-slide-background-image img{
  position:absolute !important;
  inset:0 !important;
  width:100% !important;
  height:100% !important;
  display:block !important;
}
.left-slide .n2-ss-slide-background-image img{
  object-fit:cover !important;
}


/*  

.left-slide .n2-ss-slider {
  position: absolute !important;
  inset: 0 !important;
}

.left-slide .n2-ss-slider-wrapper{
  position: absolute !important;
  inset: 0 !important;
  height: 100% !important;
  min-height: 0 !important;
  padding: 0 !important;
}

.left-slide .n2-ss-slider-wrapper::before,
.left-slide .n2-ss-slider-wrapper::after{
  content: none !important;
  display: none !important;
}

.left-slide .n2-ss-slide-background,
.left-slide .n2-ss-slide-background > div{
  position: absolute !important;
  inset: 0 !important;
  height: 100% !important;
  width: 100% !important;
  background-size: cover !important;
  background-position: center !important;
}
.left-slide .n2-ss-slide-background{
  position: absolute !important;
  inset: 0 !important;
}
.left-slide svg{
  width: 100% !important;
  height: 100% !important;
}
 */


.left-slide .n2-section-smartslider,
.left-slide .n2-ss-align,
.left-slide .n2-ss-align > div,
.left-slide .n2-padding {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
  min-height: 0 !important;
}

.left-slide .n2-ss-align {
  width: 100% !important;
}

.left-slide .n2-ss-slider-wrapper {
  height: 100% !important;
  padding: 0 !important;
}

/* 中央 */

.center-content{
    width:45%;
    height:100vh;
    overflow-y: auto;
    background: var(--color-bg);
    padding: 0;
    scroll-behavior: smooth;
    margin-left:45%;
}


.center-content section {
    margin-bottom: 90px; 
}

.center-content section:not(.main-visual) {
    padding: 60px 60px;
}

.center-content h2 {
    font-size: 2.5rem;
    letter-spacing: 0.1em;
    margin-bottom: 40px;
    border-bottom: 1px solid var(--color-main);
    display: inline-block;
    padding-bottom: 10px;
    opacity: 0;
    text-transform: uppercase;
    transform: translateY(20px);
    transition: opacity 1s ease, transform 1s ease;
}

.center-content h2.show {
    opacity: 1;
    transform: translateY(0);
}


.center-content p {
    line-height: 2;
    color: var(--color-text);
    margin-bottom: 20px;
}

/* 中央　メインビジュアル＆news */
.main-visual {
    width: 100%;
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.main-news {
    position: absolute;
    bottom: 30px;
    left: 40px;
    width: 80%;
    max-width: 600px;
    color: var(--color-text-mid);
    z-index: 10;
}
.news-title {
    color: var(--color-text-light);
    font-size: 20px;
    letter-spacing: 0.1em;
    margin-bottom: 10px;
    text-transform: uppercase;
    opacity: 0.8;
}
.news-list {
    border-top: 1px solid var(--color-border-mid);
}

.news-item {
    display: flex; 
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid var(--color-border-mid);
    color: inherit;
}

.news-item:hover {
    background: var(--color-hover-bg);
}

.news-item time {
    font-size: 13px;
    width: 100px;
    flex-shrink: 0;
}

.news-item span {
    font-size: 14px;
    flex-grow: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.news-item::after {
    content: '';
    width: 8px;
    height: 8px;
    border-top: 1px solid currentColor;
    border-right: 1px solid currentColor;
    transform: rotate(45deg);
    margin-left: 10px;
    opacity: 0.5;
}
.news-thumb{
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 16px;
}

.news-archive-item .thumb {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  margin-bottom:14px;
}

.news-archive-item .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}




/* 中央 about */
.about-flex{
    display: flex;
    flex-direction: column;
    gap:20px;
}

.about-text p {
    font-size: 16px;
    line-height: 2.2;
    letter-spacing: 0.05em;
}
.about-img img {
    width: 100%;
    max-width: 600px;
    height: auto;
    display: block;
    object-fit: contain;
}

/* 中央　menu */
.menu-category h3{
    font-size: 1.2rem;
    color: var(--color-main);
    margin: 40px 0 20px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}
.menu-list{
    width:100%;
}
.menu-item {
    display: flex;
    align-items: baseline;
    margin-bottom: 15px;
}

.menu-item dt {
    font-size: 15px;
    font-weight: 500;
    flex-shrink: 0;
}

.menu-item dd {
    font-size: 15px;
    margin-left: 0;
    flex-shrink: 0;
}

.menu-list .menu-item::after {
    content: "";
    flex-grow: 1;
    border-bottom: 1px dotted var(--color-line-dotted);
    margin: 0 10px;
}


.menu-item dt { order: -1;
}
.menu-item dd { order: 1;
}

.menu-featured {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 50px;
}
.menu-desc {
    font-size: 14px;
    color: var(--color-text-mid);
    line-height: 1.8;
    margin-bottom: 5px;
}

.menu-img-large {
    width: 100%;
    overflow: hidden;
}
.menu-img-large img {
    width: 100%;
    height: 300px; 
    object-fit: cover;
    border-radius: 2px;
}

/* 中央 access */

.access-container{
    display:flex;
    gap:40px;
    align-items: flex-start;
}
.access-map{
    flex:1.2;
    filter:grayscale(100%) contrast(0.8) opacity(0.8);
    transition: filter 0.5s ease;
}
.access-map:hover {
    filter: grayscale(40%) contrast(1) opacity(1);
}
.access-map iframe {
    width: 100%;
    height: 350px;
    border-radius: 2px;
}

.access-info {
    flex: 1;
}

.info-item {
    margin-bottom: 30px;
}
.info-item h3 {
    font-size: 14px;
    color: var(--color-main);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 10px;
    font-weight: 600;
}

.info-item p {
    font-size: 14px;
    line-height: 1.8;
    color: var(--color-text-mid);
    margin: 0;
}

/* 中央　フッター */
.center-footer{
    padding:20px 0;
    text-align: center;
    border-top: 1px solid var(--color-border-mid);
    margin:0 60px;
}

.center-footer p {
    font-size: 12px;
    color: var(--color-text-light);
    letter-spacing: 0.1em;
}


/* 右　ナビゲーション */

.right-nav {
    width: 10%;
    height: 100vh;
    background-color: var(--color-main);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 60px 0;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 100;
}

.right-nav nav ul {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.nav-top {
    margin-bottom: 40px; 
}

.nav-top a {
    color: var(--color-bg);
    font-weight: bold;
    letter-spacing: 2px;
}

.right-nav ul{
    padding: 0;
    margin:0;
    text-align: center;
}

.right-nav li{
    margin-bottom: 30px;
}

.right-nav a{
    color: var(--color-bg);
    font-size: 14px;
    letter-spacing: 0.2em;
    display: block;
    transition: color 0.3s;
}

.right-nav a:hover {
    color: var(--color-accent);
}

.nav-sns {
    margin-top: auto;
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 15px; 
    width: 100%; 
}
.nav-sns img {
    width: 20px;
    height: auto;
}
.nav-sns a:hover img {
    transform: scale(1.2);
    filter: drop-shadow(0 0 5px var(--color-accent));
}
.right-nav nav ul li a{
  padding-bottom: 6px;
}


.right-nav nav ul li a .menu-text{
  display: inline-block;
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: 0% 1px;
  padding-bottom: 6px;
}


.right-nav nav ul li.current-menu-item > a .menu-text,
.right-nav nav ul li.current_page_parent > a .menu-text,
.right-nav nav ul li.current-menu-parent > a .menu-text,
.right-nav nav ul li.current-menu-ancestor > a .menu-text,
.right-nav nav ul li.current_page_ancestor > a .menu-text,
.right-nav nav ul li.current-post-ancestor > a .menu-text{
  background-image: linear-gradient(var(--color-accent), var(--color-accent));
  background-position: left bottom;
  background-size: calc(100% - 0.2em) 1px;
}

.menu-external > a::after{
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-left: 6px;
  background-image: var(--link);
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: text-top;
  position: relative;
  top: -2px;
}

.menu-external > a:hover::after{
  background-image: var(--link-hover);
}


.home .right-nav nav ul li.current-menu-item:not(.menu-item-home) > a .menu-text{
  background-image: none;
}

/*newsページ　中央 */

.news-archive {
    padding: 60px 60px;
    display: flex;
    flex-direction: column;
    min-height: 100vh; 
    box-sizing: border-box;
}
.news-archive-item {
    margin-bottom: 60px;
    border-bottom: 1px solid var(--color-border-light);
    padding-bottom: 40px;
}
.news-archive-item a {
    text-decoration: none;
    color: inherit;
    display: block;
}
.news-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.news-meta time {
    font-size: 13px;
    color: var(--color-text-light);
}
.news-list-page {
    flex: 1;
}

.news-meta .category{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  background: none;
  padding: 0;
}

/* 1カテゴリ＝1バッジ */
.news-meta .category a{
  display: inline-flex;
  align-items: center;
  white-space: nowrap;

  font-size: 10px;
  background: var(--color-badge-bg);
  color: var(--color-badge-text);
  padding: 2px 8px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-decoration: none;
}

.news-meta .category a:hover{
  opacity: 0.7;
}

.news-archive-item h3 {
    font-size: 18px;
    margin-bottom: 15px;
    line-height: 1.5;
    transition: color 0.3s;
    padding-top: 15px;
}

.news-archive-item:hover h3 {
    color: var(--color-accent);
}

.news-archive-item p {
    font-size: 14px;
    color: var(--color-text-mid);
    line-height: 1.8;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.archive-title{
  margin-bottom: 40px;
  line-height: 1.2;
}


.archive-row{
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 0.25em;
  opacity: 0.35;
  color: var(--color-text-light);
  text-transform: uppercase;
}


.archive-slash{
  opacity: 0.6;
}


.archive-current{
  display:block;
  margin-top: 8px;
  font-size: 28px;
  letter-spacing: 0.05em;
  color:var(--color-text);
  text-transform: none; 
  opacity: 1;
}


/* ページネーション */

.pagination {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding-top: 40px;
    padding-bottom: 20px;
    margin-top: auto;
}

.pagination a, .pagination span {
    font-size: 14px;
    color: var(--color-text-light);
}

.pagination .current {
    color: var(--color-accent);
    font-weight: bold;
}

/* news投稿ページ */

.news-detail {
    padding: 100px 60px; 
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center; 
}
.detail-header {
    width: 100%;
    margin-bottom: 40px;
    text-align: left;
}

.detail-header h2 {
    opacity: 1;
    transform: none;
    border-bottom: none;
    font-size: 24px;
    line-height: 1.6;
    display: block;
}

.detail-main-img {
    width: 100%;
    max-width: 500px;
    margin: 0 auto 40px 0;
}

.detail-main-img img {
    width: 100%;
    height: auto;
    display: block;
}

.detail-content {
    width: 100%;
    margin-bottom: 100px; 
}

.detail-content p {
    font-size: 15px;
    line-height: 2;
    margin-bottom: 1.5em;
    color: var(--color-text-mid);
}

.single .center-content{
  display: flex;
  flex-direction: column;
}


.single .news-detail{
  flex: 1;
  display: flex;
  flex-direction: column;
}


.single .detail-footer{
  margin-top: auto;
}
/* news 戻るボタン */
.detail-footer {
    width: 100%;
    padding-top: 40px;
    margin-bottom: 10px; 
    display: flex;
    justify-content: center;
}

.back-to-list {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--color-text-mid);
    font-size: 13px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: color 0.3s;
}

.back-to-list:hover {
    color: var(--color-accent);
}
.arrow-left {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-top: 1px solid currentColor;
    border-left: 1px solid currentColor;
    transform: rotate(-45deg);
    margin-right: 15px;
}

.sp-top-hero {
    display: none;
    }

.sp-news{
    display:none;
}

    @media screen and (min-width: 769px) and (max-width: 1300px) {
    .access-container {
        flex-direction: column ;
        gap: 30px ;
    }

    .access-map {
        width: 100% ;
        flex: none ;
    }

    .access-map iframe {
        height: 300px ; 
        aspect-ratio: 4 / 3; 
    }

    .access-info {
        width: 100%;
        padding: 0 20px;
        box-sizing: border-box;
    }
}


@media screen and (max-width: 768px) {


    .container {
        display: block;
    }
    .left-slide {
        display: none;
    }


    .nav-top {
        margin: 0;
    }

    .nav-top a {
        color: var(--color-text);
    }


    .sp-top-hero {
        display: block; 
        position: relative;
        width: 100%;
        height: 100vh;
        height:100dvh;
        height:100svh;
        overflow: hidden;
    }

    .sp-slider-container{
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;

  }


/* 

    .sp-slider-container, .sp-slide, .sp-slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .sp-slide {
        position: absolute;
        top: 0; left: 0;
        opacity: 0;
        transition: opacity 1.5s ease;
    }

    .sp-slide.active {
        opacity: 1;
    }
 */



.sp-top-hero .n2-section-smartslider,
.sp-top-hero .n2-ss-slider,
.sp-top-hero .n2-ss-slider-wrapper{
  height:100% !important;
}


    .sp-hero-logo {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 10;
        width: 100%;
        max-width:800px;
        pointer-events: none;
    }
    .sp-hero-logo img {
        width: 100%;
        height:auto;
        filter: drop-shadow(0 0 10px var(--color-overlay-strong));
    }


.sp-top-hero .n2-padding{
  height: 100% !important;
  padding: 0 !important;
}


.sp-top-hero .n2-ss-align{
  width: 100% !important;
  max-width: 100% !important;
}

.sp-top-hero .n2-ss-slide-backgrounds{
  position: absolute !important;
  inset: 0 !important;
  z-index: 1 !important;
}


  .sp-top-hero .n2-section-smartslider,
  .sp-top-hero .n2-ss-slider,
  .sp-top-hero .n2-ss-slider-wrapper,
  .sp-top-hero .n2-ss-align,
  .sp-top-hero .n2-ss-align > div,
  .sp-top-hero .n2-padding{
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
  }


  .sp-top-hero .n2-ss-slide-background-image,
  .sp-top-hero .n2-ss-slide-background-image picture,
  .sp-top-hero .n2-ss-slide-background-image img{
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    display: block !important;
  }
  .sp-top-hero .n2-ss-slide-background-image img{
    object-fit: cover !important;
  }

    .main-visual, .main-img {
        display: none;
    }

  .sp-news{
    display:block;
    padding:40px 20px;
    margin-bottom:40px;
}

  .sp-news .main-news{
    position:static;
    width:100%;
    max-width:none;
    left:auto;
    bottom:auto;
}

.sp-news .news-title{
    color: var(--color-text);
    border-bottom: 1px solid var(--color-main);
}
  body.blog .news-archive{
    padding-top: 100px !important;
}

    .center-content {
        width: 100% ;
        padding: 0 ;
        margin: 0 ;
        height: 100vh;
        height: 100dvh;
  }

    /* ハンバーガーメニュー */

    .hg-menu {
        display: block ; 
        width: 30px;
        height: 24px;
        position: relative;
        z-index: 1100;
        cursor: pointer;
    }

    .hg-menu span {
        display: block;
        position: absolute;
        width: 100%;
        height: 2px;
        background-color: var(--color-text);
        transition: 0.3s;
    }
    

    .hg-menu span:nth-child(1) { top: 0; }
    .hg-menu span:nth-child(2) { top: 11px; }
    .hg-menu span:nth-child(3) { bottom: 0; }


    .hg-menu.active span:nth-child(1) {
        top: 11px;
        transform: rotate(45deg);
    }


    .hg-menu.active span:nth-child(2) {
        opacity: 0;
    }


    .hg-menu.active span:nth-child(3) {
        bottom: 11px;
        transform: rotate(-45deg);
    }

    .right-nav { 
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        height: 60px;
        position: fixed;
        top: 0px ;
        left: 0;
        z-index: 3000;
        background: var(--color-header-bg);
        padding: 0 20px;
        box-sizing: border-box;
        transition: top 0.4s ease;
        transform: translateY(-100%);
    }
    .right-nav.show,
    .subpage .right-nav{
    transform: translateY(0);
  }
  

    .right-nav nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: var(--color-bg);
        padding-top: 80px;
        transition: 0.4s;
        z-index: 1050;
        display: flex;
        flex-direction: column;
        align-items: center;
    }


    .right-nav nav ul {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 0;
    }

    .right-nav nav ul li {
        margin-bottom: 50px;
    }

    .right-nav nav ul li a {
        color: var(--color-text); 
        font-size: 20px;
        font-weight: 500;
    }


    .right-nav nav.active {
        right: 0;
    }



    .nav-sns {
        display: flex; 
        justify-content: center;
        gap: 20px;
        position: static;
        bottom: 50px;
        right:  auto; 
        width: 100%;
        transition: 0.4s;
        z-index: 1060;
        margin-top: 0;

    }
    .nav-sns img {
        width: 24px;
        height: auto;
        filter: grayscale(100%) brightness(0.5) !important; 
        opacity: 0.7;
    }
    .menu-external > a::after{
    background-image: var(--link2);
  }

  .menu-external > a:hover::after{
    background-image: var(--link-hover);
  }

/* access */
    .access-container {
        flex-direction: column;
        gap: 30px;
    }

    .access-map {
        width: 100%;
        filter: none; 
    }

    .access-map iframe {
        height: 250px; 
        aspect-ratio: 4 / 3; 
    }

    .access-info {
        width: 100%;
        padding: 0 20px;
        box-sizing: border-box;
    }

    

}



