@charset "UTF-8";

/*---------- COMMON ----------*/
html {
    font-size: 100%;
    margin: 0;
    padding: 0;
}
body { 
    font-family: 'Times New Roman', 'Hiragino Kaku Gothic Pro', sans-serif;   /* 日本語フォントをヒラギノ角ゴシックに設定 */
    line-height: 1.7;   /*  行間    */
    color: #423;
    padding-top: 0; /* 上部のパディングを削除 */
    margin: 0;
    min-width: 566px; /* 最小幅を566pxに設定 */
    overflow-x: auto; /* 横スクロールを許可 */
}

/* index.html以外のページにヘッダー分のパディングを追加 */
body:not(.home-page) {
    padding-top: 80px; /* Default header height */
}

/* Existing media queries for 768px and 600px will be adjusted or overridden below */
/* @media (max-width: 768px) {
    body:not(.home-page) {
        padding-top: 120px; 
    }
} */

/* 768px以下でメニューが2行になる場合の追加パディング */
@media (max-width: 768px) {
    body:not(.home-page) {
        padding-top: 120px; /* 2行分の高さに調整 */
    }
}

a {
    text-decoration: none;  /*  <a>タグの傍線なし   */
}
img {
    max-width: 100%;    /*  画像の大きさが親要素を超えないようにする    */
}
.wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 4%;
}
#scroll-to-top-btn{     /*画面上部へ自動スクロールするボタン*/
	position: fixed;
	bottom: 10px;
	right: 10px;
	height: 50px;
	width: 50px;
	color: #FFF;
    font-family: none;
	font-size:30px;
	font-weight: bold;
	background-color:#9E9E9E;
	border: none;
	border-radius: 50%;
	transform: rotate(-90deg);
	opacity: 0;
	transition-duration: 0.5s;
}



/*---------- HEADER ----------*/
.big-bg {
    background-image: url(../images/top-bg.jpg);
    height: 270px;
    margin-bottom: 40px;
    background-size: 110%; /* 背景画像を10%拡大 */
    background-position: center top;
}

/* ヘッダースタイルの修正 - 画面幅いっぱいに */
.page-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    min-height: 80px; /* Default height */
    height: auto; /* 高さを自動にして内容に追従 */
    background: rgba(255, 255, 255, 0.85); /* 半透明白（85%不透明） */
    z-index: 1000;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: center;
    align-items: flex-start; /* 上部に揃える */
    padding: 0;
    margin: 0;
}

/* スライドショーの上部マージンを動的に調整（CSSのみでの限界） */
.home-page .top-image.ken-burns-slider-container {
    margin-top: 80px; /* ヘッダーの高さ分 */
}
@media (max-width: 1200px) {
    .home-page .top-image.ken-burns-slider-container {
        margin-top: 130px; /* レスポンシブ時のヘッダー高さに合わせる */
    }
}
@media (max-width: 768px) {
    .home-page .top-image.ken-burns-slider-container {
        margin-top: 120px; /* 2行分の高さに調整 */
    }
}
@media (max-width: 600px) {
    .home-page .top-image.ken-burns-slider-container {
        margin-top: 120px; /* 600px以下も同じく */
    }
}
@media (max-width: 393px) {
    .home-page .top-image.ken-burns-slider-container {
        margin-top: 140px; /* さらに余裕を持たせる */
    }
}

/*
完全にズレをなくすにはJSで.page-headerの高さを取得し、.top-image.ken-burns-slider-containerのmargin-topに反映する方法が最適です。
例：
document.addEventListener('DOMContentLoaded', function() {
  var header = document.querySelector('.page-header');
  var slider = document.querySelector('.top-image.ken-burns-slider-container');
  if(header && slider) {
    slider.style.marginTop = header.offsetHeight + 'px';
  }
});
window.addEventListener('resize', function() {
  var header = document.querySelector('.page-header');
  var slider = document.querySelector('.top-image.ken-burns-slider-container');
  if(header && slider) {
    slider.style.marginTop = header.offsetHeight + 'px';
  }
});
*/

/* ナビゲーションの幅を100%に設定 */
nav {
    background: transparent; /* 完全透明 */
    width: 100%;
    display: flex;
    justify-content: flex-end; /* Right align by default */
    align-items: center;
    box-shadow: none;
}

/* ロゴとナビゲーションを含むコンテナ */
.header-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start; /* 上部に揃える */
    flex-wrap: nowrap; /* 折り返しを防止 */
    width: 100%;
    max-width: 1200px;
    padding: 0 20px;
    margin: 0 auto;
    box-sizing: border-box;
}

.logo {
    width: 210px;
    margin-left: 15px; /* 左側の余白を最小限に */
    margin-top: 0;
    margin-bottom: 0;
    padding: 0;
    transform: scale(1.54);
    flex-shrink: 0;
    align-self: flex-start; /* 上部に固定 */
}

/* メインナビゲーションスタイル */
.main-nav {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 0;
    margin: 0;
    flex-wrap: nowrap;
    gap: 18px; /* gapを18pxに統一 */
    list-style: none;
    overflow-x: auto;
    white-space: nowrap;
    background: none;
    font-size: 1em;
    height: auto;
}

.main-nav li {
    text-align: center;
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    height: 100%;
}

.main-nav a {
    font-size: 1em;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    height: 100%;
    line-height: 1.1;
    color: black;
    font-weight: bold;
    padding: 10px 0 0 0;
    transition: color 0.3s, background-color 0.3s;
}

.main-nav a:hover {
    color: #007BFF;
}

.nav-jp {
    display: block;
    font-size: 1em;
    line-height: 1.1;
    margin-bottom: 5px; /* 日本語と英語の間の隙間を5pxに固定 */
    font-weight: bold;
}

.nav-en {
    display: block;
    font-size: 0.7em;
    line-height: 1.1;
    font-weight: normal;
    letter-spacing: 0.05em;
    color: #555;
    margin: 0;
}

/* レスポンシブ対応 */

/* When screen width is 1200px or less, move nav below logo */
@media (max-width: 1200px) { /* ブレークポイントを1100pxから1200pxに変更 */
    .page-header {
        min-height: 130px; /* Adjusted height for stacked logo and nav, review needed */
    }
    body:not(.home-page) {
        padding-top: 130px; /* Match adjusted header height, review needed */
    }
    .header-container {
        flex-direction: column; /* Stack logo and nav */
        justify-content: flex-start; /* 上部に揃える */
        align-items: center; /* 中央揃え */
        padding: 10px 20px 0 20px;
    }
    .logo {
        margin: 0 0 0 0;
        padding: 0;
        align-self: flex-start;
    }
    nav {
        width: 100%; /* Nav takes full width of container */
        justify-content: center; /* Center the .main-nav within nav */
        margin-top: 0;
        padding-top: 0;
    }
    .main-nav {
        justify-content: center; /* Center nav items */
        flex-wrap: nowrap; /* Prevent wrapping */
        overflow-x: auto; /* Enable horizontal scrolling */
        padding: 5px 0 0 0; /* Padding above nav items */
        gap: 5px; /* Reduce gap between nav items from 10px to 5px */
    }
    .main-nav li {
        padding: 0 5px; /* Adjust padding for list items */
    }
    .main-nav a {
        padding: 8px 5px; /* Adjust padding for links from 8px 10px to 8px 5px */
    }
}

@media (max-width: 768px) {
    .main-nav {
        gap: 5px;
    }
}

@media (max-width: 600px) {
    .main-nav {
        gap: 2px;
    }
    .main-nav a {
        font-size: 0.9em;
        padding: 6px 2px;
    }
    .nav-jp {
        font-size: 0.95em;
        margin-bottom: 4px;
    }
    .nav-en {
        font-size: 0.65em;
    }
    .header-container {
        padding: 4px 4px 0 4px;
    }
    .logo {
        width: 160px;
        transform: scale(1.2);
    }
}
.page-title {
    text-align: center;
    color: #000;
    font-size: 5.0rem;
    font-weight: normal;
    margin-top: 20px;
    margin-bottom: 0;
    line-height: 1.1;
    /* text-shadowを削除して縁取りを無くす */
    /* 上下の余白を統一し、他ページと高さを揃える */
}
@media (max-width: 600px) {
    .page-title {
        font-size: 2.5rem;
        margin-top: 12px;
    }
}



/*---------- FOOTER ----------*/
footer {
    background: rgb(228, 228, 228); /* フッターの背景色を変更 */
    text-align: center;
    padding: calc(26px * 0.7) 0; /* 現在の70%に */
}
footer p {
    color: rgb(153, 153, 153); /* フッターの文字色を変更 */
    font-family: 'Noto Sans JP', sans-serif; 
    font-size: 1rem;
}
footer h2 img {
    width: calc(30% * 0.7); /* 現在の70%に */
}



/*---------- HOME ----------*/
/* .top-image スタイルは .ken-burns-slider-container と統合されるため、後述のスタイルを参照 */

.anatamo-image {
    display: block;
    margin: 0; 
    padding: 0;
    background-color: #fff;
    width: 100%; 
    overflow: hidden; 
}

.anatamo-image img {
    width: 100%;
    height: auto;
    display: block; 
}

/* トップ画像のテキストオーバーレイスタイル */
.top-image-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 3.5rem; /* サイズ調整 */
    font-weight: bold;
    text-transform: uppercase;
    text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000, -2px 2px 3px rgba(0,0,0,0.5); /* 影を少し追加 */
    line-height: 1.2;
    z-index: 20; /* スライドやキャプションより手前に表示 */
    text-align: center; /* 中央揃え */
}

.home-contents {
    margin-bottom: 50px;
}
.latest-news h3{
    font-size: 2.5rem;
    text-align: center;
}
.latest-news p {
    overflow-wrap: break-word; 
}
.latest-news ul {
    list-style-type: none;
}
.item a:hover {
    color: #92cb97;
}
.latest-news time {
    font-size: 1.3rem;
}
.latest-news span {
    font-size: 1.7rem;
}
.item-imp {
    padding-left: 2.0rem;
    margin: 2.0rem 0;
    border-width: 4px;
    border-style: none none none solid;
    border-color: #dc143c;
}
.item-new {
    padding-left: 2.0rem;
    margin: 2.0rem 0;
    border-width: 4px;
    border-style: none none none solid;
    border-color: #92cb97;
}
.item-old {
    padding-left: 2.0rem;
    margin: 2.0rem 0;
    border-width: 4px;
    border-style: none none none solid;
    border-color: #ddd;
}

/* .gallery と .gallery h3 は削除されました */


/* Ken Burns Slideshow Styles for Top Image */
.top-image.ken-burns-slider-container {
    width: 100%;
    margin: 0; /* top margin is handled by margin-top: 80px below */
    padding: 0;
    position: relative;
    overflow: hidden;
    background-color: #000; /* Fallback */
    margin-top: 80px; /* ヘッダーの高さ分 */
    height: 35vh; /* ビューポートの高さの35%に設定。必要に応じて調整 */
    line-height: 0; /* Remove extra space for inline-block elements if any */
    z-index: 1; /* Ensure it's below the header if header has higher z-index */
}

/* .ken-burns-slider-container の古いスタイルは削除または .top-image.ken-burns-slider-container に統合 */

.ken-burns-slider { /* This class might not be strictly needed if .top-image itself is the direct container */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.ken-burns-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0; 
    transition: opacity 1.5s ease-in-out; /* クロスディゾルブ効果 */
}

.ken-burns-slide.active { 
    opacity: 1;
}

.ken-burns-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    transform-origin: center center; 
    /* animation-duration and animation-fill-mode are set in JS or can be here */
    animation-duration: 10s; /* Duration of one Ken Burns cycle */
    animation-fill-mode: forwards; /* Keep the state of the last keyframe */
    animation-iteration-count: 1; /* We change animation type via JS, so 1 iteration per type */
}

.slide-caption {
    position: absolute;
    bottom: 20px; /* Increased from 15px */
    left: 20px;   /* Increased from 15px */
    background-color: rgba(0, 0, 0, 0.7); /* Slightly more opaque */
    color: white;
    padding: 10px 15px; /* Increased padding */
    font-size: 1rem;  /* Increased font size */
    border-radius: 5px; /* Slightly more rounded */
    z-index: 10; /* Ensure caption is above the slide image */
    /* display: none; /* キャプションが不要な場合はコメント解除 */
}

/* Ken Burns Animations */
/* Type 1: Zoom in, pan slightly top-left */
@keyframes kenburns-1 {
    0% { transform: scale(1.0) translate(0, 0); }
    100% { transform: scale(1.15) translate(-3%, -2%); }
}

/* Type 2: Zoom in, pan slightly bottom-right */
@keyframes kenburns-2 {
    0% { transform: scale(1.0) translate(0, 0); }
    100% { transform: scale(1.2) translate(2%, 3%); }
}

/* Type 3: Zoom out, pan slightly top-right */
@keyframes kenburns-3 {
    0% { transform: scale(1.1) translate(1%, -1%); }
    100% { transform: scale(1.0) translate(0, 0); }
}

/* Type 4: Zoom out, pan slightly bottom-left */
@keyframes kenburns-4 {
    0% { transform: scale(1.25) translate(-2%, 2%); }
    100% { transform: scale(1.0) translate(0, 0); }
}


/*---------- PROJECT ----------*/
.project-contents {
    margin-bottom: 50px;
}
.project-contents h3 {
    font-size: 3.0rem;
    border-width: medium;
    border-style: none none solid none;
    border-color: #92cb97;
}
.project-contents h4 {
    font-size: 2.0rem;
}
.project-contents p{
    font-size: 1.3rem;
    text-align: justify;
    margin-top: 10px;
}
.project-contents ul {
    list-style-type: disc;
    list-style-position: inside;
    font-size: 1.3rem;
    text-indent: -1.4em;
    padding-left: 1.5em;
}

/*  Overview    */
.overview {
    margin-bottom: 3.0rem;
}

/*  Field   */
.field {
    margin-bottom: 3.0rem;
}
.field-item {
    margin: 2.0rem 0.0rem 2.0rem 0.0rem;
}
.field-photo {
    width: 80%;
    margin: 10px auto;
}



/*---------- ARCHIVE ----------*/
.archive-contents {
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
}
aside {
    width: 18%;
    order: 2;
}
article {
    width: 78%;
    order: 1;
}

/*  Sidebar */
.sidebar-item {
    position: sticky;
    top: 25px;
    z-index: 1;
}
.sub-title {
    font-size: 1.5rem;
    padding-bottom: 0.8rem;
    margin-bottom: 0.8rem;
    border-width: medium;
    border-style: none none solid none;
    border-color: #92cb97;
}
.sub-menu {
    margin-bottom: 60px;
    list-style: none;
}
.sub-menu li {
    font-size: 1.3rem;
    border-bottom: 1px #ddd solid;
}
.sub-menu a {
    color: #432;
    padding: 10px;
    display: block;
}
.sub-menu a:hover {
    color: #92cb97;
}

/*  Article */
.archive-item {
    margin-bottom: 2.0rem;
}
.archive-item h3 {
    font-size: 1.5rem;
    padding-bottom: 0.8rem;
    margin-bottom: 0.8rem;
    border-width: medium;
    border-style: none none solid none;
    border-color: #92cb97;
}
.archive-item ol {
    list-style-position: outside;
    text-align: justify;
    margin-left: 27px;
}
.archive-item li {
    font-size: 1.3rem;
    padding-bottom: 0.8rem;
}



/*---------- MEMBER ----------*/
.member-contents {
    margin-bottom: 50px;
}
.member-info {
    padding-left: 2.0rem;
    margin: 1.0rem 0 0 0;
    border-width: medium;
    border-style: none none none solid;
    border-color: #92cb97;
}
.member-contents h3 {
    text-align: center;
    font-size: 2.5rem;
}
.member-contents h4 {
    font-size: 1.7rem;
}
.member-contents p {
    font-size: 1.4rem;
}
.item-data {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}
.item {
    margin: 0 30px 0 0;
}

/* 2025年度の見出しに緑の下線を追加 */
.member-year {
    /* text-decoration: underline; */ /* 下線を削除 */
    /* text-decoration-color: green; */ /* 下線の色を削除 */
    /* text-decoration-thickness: 2px; */ /* 下線の太さを削除 */
    /* text-underline-offset: 5px; */ /* 下線とテキストの間隔を削除 */
    border-bottom: none; /* border-bottom を削除 */
    padding-bottom: 0; /* padding-bottom を削除 */
}

.path-contents {
    margin-bottom: 50px;
}
.path-contents h3 {
    font-size: 2.5rem;
    text-align: center;
    padding-bottom: 0.8rem;
    margin-bottom: 0.8rem;
    border-width: medium;
    border-style: none none solid none;
    border-color: #92cb97;
}
.path-contents p {
    font-size: 1.4rem;
}
.education {
    margin-bottom: 50px;
}



/*---------- INTRODUCTION ----------*/
.Introduction-contents {
    margin-bottom: 50px;
    text-align: center;
}
.professor {
    text-align: center;
    width: 100%;
    display: flex;
    justify-content: center;
}
.professor-contents {
    display: flex;
    padding: 50px 0;
    justify-content: center;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
    width: fit-content;
}
.professor-discription {
    flex: 1;
    padding-left: 2.0rem;
    margin: 1.0rem 0 0 0;
    border-width: medium;
    border-style: none none none solid;
    border-color: #92cb97;
    text-align: center;
    max-width: 400px;
}
.professor-discription h4 {
    font-size: 2.0rem;
}
.country {
    height: 1.5rem;
}
.professor-contents p {
    font-size: 1.5rem;
}
.professor-photo {
    padding: 0 50px;
    flex-shrink: 0;
}

/* 教授情報のレスポンシブ対応 */
@media (max-width: 768px) {
    .professor-contents {
        flex-direction: column;
        padding: 30px 0;
    }
    
    .professor-photo {
        padding: 20px 0;
        order: -1; /* 写真を上に表示 */
    }
    
    .professor-discription {
        padding-left: 0;
        margin: 20px 0 0 0;
        border-style: solid none none none;
        border-width: medium 0 0 0;
        padding-top: 20px;
        max-width: 100%;
    }
}

@media (max-width: 600px) {
    .professor-discription h4 {
        font-size: 1.5rem;
    }
    
    .professor-contents p {
        font-size: 1.2rem;
    }
}

.biography {
    margin-bottom: 5.0rem;
}
.biography h3 {
    font-size: 2.0rem;
    text-align: center;
    padding-bottom: 0.8rem;
    margin-bottom: 0.8rem;
    border-width: medium;
    border-style: none none solid none;
    border-color: #92cb97;
}
.biography td {
    font-size: 1.3rem;
    padding: 0 3.0rem 1.0rem 0;
}

.belief h3 {
    font-size: 2.0rem;
    text-align: center;
    padding-bottom: 0.8rem;
    margin-bottom: 0.8rem;
    border-width: medium;
    border-style: none none solid none;
    border-color: #92cb97;
}
.belief ol {
    list-style-position: outside;
    margin-left: 27px;
}
.belief li {
    font-size: 1.3rem;
    padding-bottom: 1.5rem;
}



/*---------- ALBUM ----------*/
.album-grid {
    display: grid;
    gap: 26px;
    grid-template-columns: 1fr 1fr 1fr;
    margin-top: 6%;
    margin-bottom: 50px;
}
.item p {
    text-align: center;
    font-size: 1.7rem;
    margin-bottom: 1.7rem;
}



/*---------- CONTACT ----------*/
.info-title {
    font-size: 2.0rem;
    text-align: center;
    padding: 0 8px 8px;
    border-bottom: 2px #92cb97 solid;
    font-weight: normal;
}
.location-info p {
    font-size: 1.5rem;
    padding: 12px 10px;
}
.location-image {
    margin-top: 20px;
}
.location-image img {
    width: 100%;
    max-width: 800px;
    height: auto;
    display: block;
    margin: 0 auto;
}
.location-map {
    margin-top: 20px;
}
.location-map iframe {
    width: 100%;
    max-width: 800px;
    height: 400px;
    display: block;
    margin: 0 auto;
}

/* メニューバーを二段にしない設定 */
.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap; /* 折り返しを防止 */
}

.main-nav {
    display: flex;
    justify-content: flex-end;
    flex-wrap: nowrap; /* 折り返しを防止 */
    overflow-x: auto; /* 横スクロールを許可 */
    white-space: nowrap; /* テキストの折り返しを防止 */
}

/* 小画面でフォントサイズを縮小するギミックを削除 */
/*
@media (max-width: 393px) {
    ...existing code for 393px media query...
}

@media (max-width: 577px) {
    ...existing code for 577px media query...
}
*/

/* Junior.html の画像とコンテンツを横幅750pxに固定 */
.project-contents {
    max-width: 750px;
    margin: 0 auto;
    font-size: 16px; /* フォントサイズを固定 */
    line-height: 1.5; /* 行間を調整 */
}

.project-contents img {
    width: 100%;
    max-width: 750px;
    height: auto;
    display: block;
    margin: 0 auto;
}

/*---------- ALBUM CONTENTS ----------*/
.album-contents {
    max-width: 900px;
    margin: 0 auto 50px auto;
    padding: 0 4%;
    text-align: center;
    font-size: 2.2rem;
    font-family: 'M PLUS Rounded 1c', 'Noto Sans JP', sans-serif;
    font-weight: bold;
    color: #432;
}
.album-contents b, .album-contents strong {
    font-size: 2.2rem;
    color: #432;
    font-weight: bold;
}
@media (max-width: 600px) {
    .album-contents {
        max-width: 100%;
        font-size: 1.3rem;
        padding: 0 2%;
    }
    .album-contents b, .album-contents strong {
        font-size: 1.3rem;
    }
}

/* index.html（.home-page）でヘッダー下部とスライドショー上部が常にくっつくように調整 */
.home-page .top-image.ken-burns-slider-container {
    margin-top: 80px; /* デフォルトのヘッダー高さ */
}
@media (max-width: 1200px) {
    .home-page .top-image.ken-burns-slider-container {
        margin-top: 130px; /* レスポンシブ時のヘッダー高さに合わせる */
    }
}
@media (max-width: 768px) {
    .home-page .top-image.ken-burns-slider-container {
        margin-top: 120px; /* 2行分の高さに調整 */
    }
}
@media (max-width: 600px) {
    .home-page .top-image.ken-burns-slider-container {
        margin-top: 120px; /* 600px以下も同じく */
    }
}
@media (max-width: 393px) {
    .home-page .top-image.ken-burns-slider-container {
        margin-top: 140px; /* さらに余裕を持たせる */
    }
}

/* aboutus.pngをウィンドウ幅いっぱいに表示し、左右端にくっつける */
.aboutus-fullwidth-img {
  width: 100vw;
  min-width: 0;
  max-width: 100vw;
  display: block;
  margin: 0;
  padding: 0;
  height: auto;
  border-radius: 0;
  object-fit: cover;
  position: relative;
  left: 0;
  transform: none;
  box-sizing: border-box;
}

.aboutus-fullwidth-img-wrapper {
  width: 100vw;
  max-width: 100vw;
  min-width: 0;
  margin: 0;
  padding: 0;
  overflow: hidden;
  position: relative;
  left: 0;
  transform: none;
}
@media (max-width: 600px) {
  .aboutus-fullwidth-img-wrapper {
    width: 100vw;
    max-width: 100vw;
    min-width: 0;
    left: 0;
    transform: none;
  }
  .aboutus-fullwidth-img {
    width: 100vw;
    max-width: 100vw;
    min-width: 0;
    left: 0;
    transform: none;
  }
}