        html{
                          /* 固定ヘッダーの高さ分（＋少し余白）を指定 */
  scroll-padding-top: 90px; 
        }
        /* Custom Styles for nuances not covered by utilities */
        body {
            font-family: 'Noto Sans JP', sans-serif;
            color: #2a2a2a;
            -webkit-font-smoothing: antialiased;
        }

       /* Custom Colors */
        .color-japan-red { color: #bc002d; }
        .bg-japan-red { background-color: #bc002d; }
        .bg-german-black { background-color: #000000; }
        .bg-german-red { background-color: #dd0000; }
        .bg-german-gold { background-color: #ffcc00; }
        .text-german-gold { color: #ffcc00; }

        /* Fade In Animation Classes */
        .fade-up {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s ease-out, transform 0.8s ease-out;
        }

        .fade-up.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Swiper Customization */
        .swiper-slide {
            position: relative;
            overflow: hidden;
        }
        /* Update: pictureタグもフルサイズにする */
        .swiper-slide picture {
            display: block;
            width: 100%;
            height: 100%;
        }
        .swiper-slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 10s ease; /* Slow zoom effect */
        }
        .swiper-slide-active img {
            transform: scale(1.1);
        }
      
        /* Mobile Menu Transition */
        #mobile-menu {
            transition: transform 0.3s ease-in-out;
        }
        
        /* Sticky Header Glassmorphism */
        header.scrolled {
            background-color: rgba(255, 255, 255, 0.95);
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            padding-top: 10px;
            padding-bottom: 10px;
        }

        /* Plain Japanese Button Specifics */
        .btn-yasashii {
            position: relative;
            overflow: hidden;
        }
        .btn-yasashii::after {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: rgba(255,255,255,0.2);
            transform: skewX(-20deg);
            transition: left 0.5s;
        }
        .btn-yasashii:hover::after {
            left: 100%;
        }
        
        /* Quick Link Banner Hover */
        .quick-link-banner:hover i {
            transform: scale(1.2);
        }

        svg.svg-inline--fa {
            display: none;
    width: 20px !important;  /* 好みのサイズに調整 */
    height: 20px !important; /* 好みのサイズに調整 */
}

.sbi-screenreader{
    display: none;
}

/* トップへ戻るボタン */
#back-to-top {
    /* 配置と形状 */
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background-color: #0056b3; /* Primary Color */
    color: white;
    
    /* 内部レイアウト */
    display: flex;
    align-items: center;
    justify-content: center;
    
    /* 装飾 */
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    z-index: 50;
    cursor: pointer;
    border: none;
    outline: none;

    /* アニメーション初期状態（非表示） */
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
    transition: all 0.3s ease-in-out;
}

/* 表示状態（JSでクラス制御する場合の予備、またはホバー時） */
#back-to-top:hover {
    background-color: #1d4ed8; /* Darker Blue */
    transform: translateY(-4px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}
        /* Swiperのカスタマイズ */
        .swiper-pagination-bullet-active {
            background-color: #fff !important;
        }

                /* 画像ホバーエフェクト */
        .hover-zoom img {
            transition: transform 0.5s ease;
        }
        .hover-zoom:hover img {
            transform: scale(1.05);
        }

/* CMS */
.wp-block-button__link{
	background-color: rgba(0,86,179,1.00);
}

.wp-block-button__link::after {
  font-family: "Font Awesome 5 Free";   
  content: "\f061"; 
  font-weight: 900;
  color: #fff;
}

.wp-block-heading{
	color: #3a3a3a;
	font-weight: bold;
	font-size: 1.4rem;
	margin-bottom: 12px;
	border-left: 7px solid rgba(0,86,179,1.00);
	border-bottom: 1px solid rgba(0,86,179,1.00);
	padding-left: 16px;
}

.wp-singular p,
.wp-block-list{
	margin-bottom: 25px;
}
