* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family:"Noto Serif JP", serif;
}
.t-center {
    text-align: center;
}
/* ヘッダーとナビゲーション */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.9);
    z-index: 1000;
}
.bg {
    height: 40vh;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}

.logo {
    width: 120px;
}

.nav-menu {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-item {
    position: relative;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 10px 0;
}

.contact-btn {
    background: #FF6B00;
    color: white;
    padding: 8px 20px;
    text-decoration: none;
    font-size: 16px;
    border-radius: 5px;
}

.dropdown-menu {
    position: fixed;
    left: 0;
    right: 0;
    top: 100px;
    background-color: rgba(255, 255, 255, 1);
    /*background: white;*/
    padding: 40px 0;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease-in-out;
    z-index: 1001;
}

.nav-item.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-container {
    max-width: 1200px;
    margin: 0 auto;
    gap: 30px;
    padding: 0 20px;
    position: relative;
    z-index: 1002;
}

.menu-category {
    display: grid;
    grid-template-columns: repeat(4, 2fr);
    gap: 15px;
}
.menu-category li { 
    list-style: none;
}
.menu-category > a > img {
    border-radius: 10px;
}
.menu-category-list {
    display: grid;
    grid-template-columns: repeat(8, auto);
    gap: 15px;
}
.menu-category-list li {
    list-style: none;
}
.menu-category-list li:nth-child(2) a {
    font-weight: bold;
}
.menu-category-list > a > img {
    border-radius: 10px;
}
.menu-link {
    text-decoration: none;
    color: #333;
    font-size: 14px;
    padding: 5px 0;
    position: relative;
    display: block;
}

.menu-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: #333;
    transition: width 0.3s ease;
}

.menu-link:hover::after {
    width: 100%;
}

.arrow {
    width: 10px;
    height: 10px;
    border-right: 1px solid #333;
    border-bottom: 1px solid #333;
    transform: rotate(45deg);
    transition: transform 0.3s ease;
    display: inline-block;
    margin-left: 5px;
}
.arrow-next {
    width: 10px;
    height: 10px;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: rotate(-45deg);
    transition: transform 0.3s ease;
    display: inline-block;
    margin-left: 5px;
}
.nav-item.active .arrow {
    transform: rotate(-135deg);
}

.overlay {
    position: fixed;
    top: 100px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.nav-item.active .overlay {
    opacity: 1;
    visibility: visible;
}
#navsub {
    display: grid;
    grid-template-columns: repeat(4, 2fr);
}
#navsub li {
    list-style: none;
}

/* サブカテゴリーの基本スタイル */
.sub-category {
    display: none;
    width: 100%;
    background: white;
}

.menu-category {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.back-button {
    grid-column: 1 / -1;
    margin-bottom: 20px;
}

.back-button .arrow.back {
    transform: rotate(45deg);
    margin-right: 10px;
}



/* メインビジュアル */
.main-visual {
    width: 100%;
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.main-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.animal-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 10px;
    padding: 20px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.9);
}

.animal-item {
    text-align: center;
}

.animal-item img {
    width: 100%;
    height: 80px;
    object-fit: cover;
    border-radius: 4px;
}

.animal-item p {
    font-size: 12px;
    margin-top: 5px;
}
/* ページ */
.page-visual {
    width: 100%;
    height: 60vh;
    position: relative;
    overflow: hidden;
}
.profile-flex {
    display: flex;
}
#imgarea {
    width: 60%;
}
#mainImage {
    width: 100%;
    height: 50vh;
    aspect-ratio: 1;
    object-fit: contain;
}
.thumbnail {
    width: 20%;
    height: auto;
    aspect-ratio: 1;
    object-fit: cover;
}
#txtarea {
    padding-left: 2%;
    width: 40%;
}
#txtarea h3 { 
    padding: 2rem 0 0 1rem; 
    font-size: 1.3rem;
}
.NameEN {
    padding: 1rem 0 1rem 1rem;
}
.Profile {
    width: 100%;
}
.Profile th, .Profile td{
    letter-spacing: 0.4rem;
    padding: 2%;
    text-align: left;
}
.Profile th {
    width: 40%;
}
#Form {
    padding: 2rem 0;
}
#Form .table {
    width: 100%;
}
#Form .table th {
    width: 30%;
    background: #9e9e9e;
    border-radius: 0.3rem;
}
#Form input,#Form textarea {
    width: 100%;
    max-width: 100%;
    border: none;
    margin: 0.5rem 0;
    padding: 0.5rem 1rem;
    border-radius: 0.3rem;
    background: #9e9e9e;
    color: #f9f9f9;
    
    &[type=submit] {
      background: #84AD47;
      color: #fff;
      width: auto;
    }
}
#Form input::placeholder ,#Form textarea::placeholder{
    color: #f9f9f9;
}
/* ニュースセクション */
.news-section {
    padding: 80px 20%;
    background: white;
}

.section-title {
    font-size: 24px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.section-title::after {
    content: attr(data-jp);
    font-size: 14px;
    padding-top: 8px;
}

.news-content {
    line-height: 1.8;
    margin-bottom: 30px;
}

.news-date {
    color: #666;
    margin-bottom: 10px;
}

.view-all-btn {
    display: block;
    width: 200px;
    margin: 40px auto;
    padding: 15px;
    text-align: center;
    background: #f5f5f5;
    text-decoration: none;
    color: #333;
}

/* コンセプトセクション */
.concept-section {
    padding: 80px 20%;
    background: url(../images/bg1.jpg) repeat 0 0 ;
    position: relative;
}

.concept-text {
    text-align: right;
    line-height: 2;
    margin-bottom: 60px;
    margin-top: 100px;
}

.gecko-icon {
    width: 150px;
    display: block;
    margin: 80px auto 60px auto;
}

/* 生体紹介セクション */
.profile-section {
    padding: 80px 20%;
    background: white;
}

.profile-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.profile-card {
    background: #f9f9f9;
    padding: 20px;
}

.profile-card a {
    text-decoration: none;
}

.profile-card:hover img{
    transform: scale(1.5);
    transition-duration: 0.5s;
}

.profile-image {
    width: 100%;
    height: auto;
    aspect-ratio: 1;
    object-fit: cover;
    margin-bottom: 15px;
    border-radius: 15px;
}

.profile-name {
    font-size: 14px;
    margin-bottom: 15px;
    height: 2rem;
}

.profile-details {
    font-size: 12px;
    margin: 15px 0;
}
.profile-details dl {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    
}
.profile-details dt, .profile-details dd{
    background: #FFF;
    margin-bottom: 10px;
    padding: 10px;
}
.profile-details dt {
    border-radius: 10px 0 0 10px;
}
.profile-details dd {
    border-radius: 0 10px 10px 0;
}
.profile-details p {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 10px;
    background: #ffffff;
}
.price {
    text-align: right;
    font-size: 16px;
    margin-top: 15px;
}

/* フッター */
.footer {
    background: #000;
    color: white;
}
.shop-discription {
    background: url(../images/footbg.webp) no-repeat;
    padding: 60px 20%;
}
dl#shop {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    width: 60%;
    padding-top: 60px;
    font-size: 1.2rem;
    text-shadow: 2px 2px 2px black;
}
.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    padding: 60px 20%;
}
.footer-brand #footlogo{
    display: flex;
}
.footer-brand h1 {
    font-size: 3rem;
    padding-left: 1rem;
    padding-top: 1rem;
    font-weight: normal;
    letter-spacing: 0.1rem;
    text-shadow: 2px 2px 2px black;
}
.footer-brand h1 span{
    font-size: 1.2rem;
    display: block;
    letter-spacing: 0.4rem;
} 
.footer-brand img {
    width: 150px;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    font-size: 14px;
}

.footer-contact {
    text-align: right;
}

.footer-button {
    display: inline-block;
    padding: 26px 0;
    background: #FF6B00;
    color: white;
    text-decoration: none;
    margin-bottom: 10px;
    width: 300px;
    height: 75px;
    text-align: center;;
}

.line-button {
    display: inline-block;
    margin-top:55px;
    color: white;
    text-decoration: none;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 133px;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 1;
}

.slide.active {
    opacity: 1;
    z-index: 2;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* スライダーのナビゲーション */
.slider-nav {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.slider-dot.active {
    background: white;
}

/* 動物グリッドのz-indexを調整 */
.animal-grid {
    z-index: 4;
}
#footmap { 
    width: 99vw;
    height: 600px;
    margin-bottom: -5px;
}
#copy { text-align: center;}

#seitailist{
    display: none;
}

#seitailist2 {
    display: none;
}
.contact-btn-sp {
    display: none;
}


#loading {
    text-align: center;
    padding: 20px;
    margin: 20px 0;
}

.loader {
    display: inline-block;
    width: 40px;
    height: 40px;
    border: 3px solid #f3f3f3;
    border-radius: 50%;
    border-top: 3px solid #333;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* トップへ戻るボタン */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

/* ページ情報 */
.page-info {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 14px;
    z-index: 1000;
}

/* リトライボタン */
.retry-button {
    position: fixed;
    bottom: 90px;
    right: 30px;
    background: #ff4444;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    display: none;
    z-index: 1000;
}

.floating-footer {
    display: none; /* デフォルトは非表示 */
}


/* ルート案内モーダル */
.route-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1001;
}

.route-modal.active {
    display: flex;
    justify-content: center;
    align-items: center;
}

.route-modal-content {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    width: 90%;
    max-width: 300px;
}

.route-modal-content h3 {
    text-align: center;
    margin-bottom: 20px;
}

.route-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 20px;
}

.route-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px;
    background: #f5f5f5;
    border-radius: 5px;
    text-decoration: none;
    color: #333;
}

.close-modal {
    width: 100%;
    padding: 10px;
    background: #333;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.closed > div {
    display: none;
}

#yoyaku {
    width: 100%;
    height: 100vh;
}
.guide {
    padding: 2rem 0;
}
/* テーブルの基本スタイル */
.guide table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
}

.guide th,
.guide td {
    padding: 1rem;
    border: 1px solid #ddd;
}
/* 送料表のスタイル */
#Yamato {
    font-size: 0.9rem;
}

#Yamato th,
#Yamato td {
    text-align: center;
    padding: 0.5rem;
}

/* 代引き手数料表のスタイル */
#Daibiki {
    max-width: 500px;
    margin: 1rem 0;
}
/* レスポンシブ対応のためのスタイル */
@media (max-width: 1200px) {
    .nav-container,
    .dropdown-container {
        max-width: 100%;
        padding: 20px;
    }

    .news-section,
    .concept-section,
    .profile-section {
        padding: 60px 10%;
    }

    .profile-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .animal-grid {
        grid-template-columns: repeat(4, 1fr);
        padding: 15px;
    }

    .profile-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    /* ヘッダーのモバイルメニュー */
    .header {
        height: 95px;
    }

    .nav-container {
        padding: 10px;
    }

    .logo {
        width: 100px;
    }

    .nav-menu {
        position: fixed;
        top: 60px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 60px);
        background: white;
        flex-direction: column;
        padding: 20px;
        transition: left 0.3s ease;
        overflow-y: auto; /* スクロール可能に */
    }
    .nav-menu.active {
        left: 0;
    }
    #navsub {
        grid-template-columns: repeat(3, 3fr);
        gap: 25px;
        margin-top:-30px
    }
    .menu-category-list {
        display: grid;
        grid-template-columns: repeat(4, auto);
        gap: 15px;
    }
    
    /* 生体一覧を常に表示 */
    #seitailist {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        padding: 10px 0;
        margin-bottom: 20px;
    }

    #seitailist li {
        list-style: none;
    }

    #seitailist li a {
        display: block;
        padding: 10px;
        text-decoration: none;
        background: #111;
        color: #FFF;
        text-align: center;
        border-radius: 5px;
    }
    .menu-toggle {
        display: block;
        width: 30px;
        height: 20px;
        position: relative;
        cursor: pointer;
    }

    .menu-toggle span {
        display: block;
        width: 100%;
        height: 2px;
        background: #333;
        position: absolute;
        transition: all 0.3s ease;
    }
    .sub-category {
        position: fixed; /* これを追加 */
        top: 95px; /* headerの高さと同じ値 */
        left: 0;
        width: 100%;
        height: calc(100vh - 200px); /* ビューポートの高さからヘッダーの高さを引く */
        max-height: none; /* 既存のmax-heightを削除 */
        overflow-y: auto;
        background: white; /* 背景色を追加 */
        z-index: 1000; /* 必要に応じて調整 */
        padding: 20px;
        padding-bottom: 60px; /* インジケーター用のスペース */
    }
    .scroll-indicator {
        position: fixed; /* absoluteからfixedに変更 */
        bottom: 80px; /* 値を調整 */
        left: 50%;
        transform: translateX(-50%);
        width: 40px;
        height: 40px;
        background: rgba(255, 255, 255, 0.9);
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* 視認性向上のための影を追加 */
        display: none;
        justify-content: center;
        align-items: center;
        pointer-events: none;
        z-index: 1001; /* sub-categoryより上に表示 */
        border-radius: 50%; /* 丸みを追加 */
    }
    
    .scroll-indicator::after {
        content: "";
        width: 12px;
        height: 12px;
        border-right: 2px solid #333;
        border-bottom: 2px solid #333;
        transform: rotate(45deg) translateY(0px);
    }
    
    /* スクロールバーのカスタマイズ（オプション） */
    .sub-category::-webkit-scrollbar {
        width: 6px;
    }
    
    .sub-category::-webkit-scrollbar-track {
        background: #f1f1f1;
    }
    
    .sub-category::-webkit-scrollbar-thumb {
        background: #888;
        border-radius: 3px;
    }
    .sub-category.active {
        grid-template-columns: repeat(2, 1fr);
    }
    .back-button {
        position: sticky;
        top: 0;
        background: white;
        padding: 10px 0;
        z-index: 1002;
        margin-bottom: 10px;
    }
    .contact-btn {
        display: none;
    }
    .contact-btn-sp{
        display: block;
        padding-top:31px;
    }
    .contact-btn-sp a {
        background: #FF6B00;
        color: white;
        padding: 27px 10px;
        text-decoration: none;
        font-size: 16px;
        border-radius: 5px;
    }
    
    .slide {
        height: 50%;
    }
    .slide img{
        height: 50%;
    }
    .menu-toggle span:nth-child(1) { top: 0; }
    .menu-toggle span:nth-child(2) { top: 9px; }
    .menu-toggle span:nth-child(3) { top: 18px; }

    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg);
        top: 9px;
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg);
        top: 9px;
    }

    /* ドロップダウンメニューのモバイル対応 */
   /* ドロップダウンメニューの調整 */
   .dropdown-menu {
    position: static;
    visibility: visible;
    opacity: 1;
    transform: none;
    box-shadow: none;
    padding: 0;
    background: transparent;
    }
    /* ドロップダウンの矢印アイコンを非表示 */
    .nav-item .arrow {
        display: none;
    }
    /* ドロップダウンコンテナのスタイル調整 */
    .dropdown-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        padding: 10px 0;
    }

    /* オーバーレイを非表示 */
    .nav-item .overlay {
        display: none;
    }




/*
    .menu-category {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }
*/
    .menu-category {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }
    .menu-category li a img {
        width: 100px;
    }
    /* メインコンテンツのモバイル調整 */
    .main-visual {
        height: 50vh;
    }

    .animal-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }

    .animal-item p {
        font-size: 10px;
    }

    .section-title {
        font-size: 20px;
    }

    .news-section,
    .concept-section,
    .profile-section {
        padding: 40px 10px;
    }
    
    .profile-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    .profile-card {
        padding: 10px;
    }
    .profile-details dl{
        grid-template-columns:35% 65%;
    }
    .profile-details dt, .profile-details dd {
        padding: 10px 6px;
    }
    .profile-details dd {
        text-align: right;
    }
    .profile-card:hover img{
        transform: none;
    }
    .view-all-btn {
        width: 100%;
    }
    .footer-brand h1 {
        font-size: 2rem;
    }
    .shop-discription {
        padding: 60px 5%;
        background-position: 20% 0;
    }
    dl#shop {
        width: 100%;
    }
    dl#shop a {
        color: #FFF;
        text-decoration: none;
    }
    .footer-links li {
        text-align: left;
    }
    .footer-links ul {
        padding-left: 2rem;
    }
    #seitailist2 {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
    #seitailist2 li {
        list-style: none;
        text-align: center;
        padding: 2px;
        
    }
    #seitailist2 li a {
        display: block;
        padding: 10px 0;
        text-decoration: none;
        background: #111;
        color: #FFF;
        border: solid 1px #222;
        outline: solid 1px #222;  
        outline-offset: 1px; 
        margin: 2px;
        border-radius: 10px;
    }
    .profile-flex {
        display: block
    }
    #imgarea {
        width: 100%;
    }
    #txtarea {
        width: 100%;
    }
    
    .back-to-top {
        bottom: 37px; /* reCAPTCHAの上に表示するため高さを調整 */
        right: 20px;
        width: 40px;
        height: 40px;
        font-size: 20px; /* 矢印サイズの調整 */
    }
    
    /* reCAPTCHAがある場合の追加の余白 */
    .grecaptcha-badge {
        margin-bottom: 100px; /* 必要に応じて調整 */
    }
    
    .page-info {
        bottom: 37px;
        left: 20px;
        font-size: 12px;
    }
    
    .retry-button {
        bottom: 70px;
        right: 20px;
        font-size: 12px;
    }
    
    .floating-footer {
        display: block;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background: #fff;
        box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
        z-index: 1000;
    }

    .floating-menu {
        display: flex;
        justify-content: space-around;
        padding: 10px 0;
    }

    .floating-menu-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-decoration: none;
        color: #333;
        padding: 5px;
    }

    .floating-menu-item i {
        font-size: 24px;
        margin-bottom: 5px;
    }

    .floating-menu-item span {
        font-size: 12px;
    }

    /* 予約 */
    .reserverlist li {
        list-style: none;
    }
    .reserverlist li div.schedulePulldownList {
        padding-left: 2rem;
    }
    /*土曜の文字色*/
    .youbi_6{
        color:#36F;
    }
    /*祝日と日曜の文字色*/
    .youbi_0,.shukujitu{
        color:red;
    }
    /*本日の背景色　※ただし設定ファイルでの設定が優先されます*/
    .today{
        background:#FF9;
    }
    /*休業日設定した日の背景色　※ただし設定ファイルでの設定が優先されます*/
    .holiday{
        background:#FDD;	
    }
    /*定休日設定した日の背景色　※ただし設定ファイルでの設定が優先されます*/
    .closed{
        background:#FDD;	
    }
    .closed::after{
        content: "お休み";
    }
    .closed > div {
        display: none;
    }
    .hidden{
        display:none;	
    }
    /*休業日テキスト部の左側の四角*/
    .holidayCube{
        display:inline-block;
        width:13px;
        height:13px;
        margin:3px 3px 0 3px;
        position:relative;
        top:2px;
    }
    /*定休日テキスト部の左側の四角*/
    .closedCube{
        display:inline-block;
        width:13px;
        height:13px;
        margin:3px 3px 0 3px;
        position:relative;
        top:2px;
    }
    .scheduleComment{
        font-size:80%;
        font-weight:normal;
        color:#333;
    }
    .schedulePulldownList{
        font-size:90%;
        font-weight:normal;
        color:#333;
        padding:5px 0 5px;
        border-bottom:2px dotted #aaa;
    }
    #formWrap{
        margin:0 10px;	
    }
    .borderless{
        border:0!important
    }
    #yoyaku {
        width: 100%;
        height: 100vh;
        margin: 0 auto;
        text-align: center;
    }
    .yoko {
        width: 98vw;
        overflow-y: auto;
    }
    .guide th,
    .guide td {
        padding: 0.5rem;
        font-size: 0.8rem;
        word-break: break-all;
    }
    #Daibiki {
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .animal-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 60px 10%;
    }

    .footer-contact {
        text-align: center;
    }

    .footer-button,
    .line-button {
        width: 100%;
        margin-bottom: 10px;
    }
}

/* タッチデバイス対応 */
@media (hover: none) {
    .menu-link:hover::after {
        width: 0;
    }

    .menu-link:active::after {
        width: 100%;
    }

    .nav-link:hover,
    .menu-link:hover {
        opacity: 0.7;
    }
}
