@charset "UTF-8";

body {
    font-family: "Noto Sans JP", sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/ Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
    background: #cbd5e0;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #a0aec0;
}

/* Animation */
.js-fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.165, 0.84, 0.44, 1), transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }

/* Radio Button Custom Styles */
/* ラジオボタンがチェックされた時の親要素（枠線） */
input[type="radio"]:checked + div {
    border-color: #3182ce !important; /* tm-blue */
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

/* ラジオボタンがチェックされた時のテキスト色 */
input[type="radio"]:checked + div span {
    color: #3182ce !important;
}

/* ラジオボタンがチェックされた時のチェックマーク円（背景色・枠線） */
input[type="radio"]:checked + div .check-circle {
    background-color: #3182ce !important;
    border-color: #3182ce !important;
    color: #ffffff !important;
}

/* Floating Animation for Hero Images */
@keyframes floating {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

.animate-floating {
    animation: floating 6s ease-in-out infinite;
}

/* アニメーションの開始タイミングをずらす */
.float-delay-1 { animation-delay: 0s; }
.float-delay-2 { animation-delay: 1.5s; }
.float-delay-3 { animation-delay: 3.0s; }
.float-delay-4 { animation-delay: 4.5s; }

/* ゆっくりフェードイン（移動なし） */
.js-fade-in {
    opacity: 0;
    transition: opacity 2.0s ease-out;
}

.js-fade-in.is-visible {
    opacity: 1;
}

/* 長めの遅延設定 */
.delay-1000 { transition-delay: 1.0s; }