/* このCSSでは、サイト全体の色・余白・見た目を調整します */
:root {
    /* サイト全体の基本カラーです。色味を変えたい場合はここを編集してください。 */
    --bg-color: #fcfcfc;
    --text-main: #555;
    --accent: #8ec5fc;
    --accent-sub: #e0c3fc;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
    margin: 0;
    padding: 0;
    background-color: var(--bg-color);
    color: var(--text-main);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

body.modal-open {
    overflow: hidden;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

button,
input,
textarea,
select {
    font: inherit;
}

img {
    max-width: 100%;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes blurFadeIn {
    0% {
        opacity: 0;
        filter: blur(15px);
        transform: translateY(15px) scale(0.98);
    }

    100% {
        opacity: 1;
        filter: blur(0);
        transform: translateY(0) scale(1);
    }
}

@keyframes slideFadeIn {
    0% {
        opacity: 0;
        transform: translateX(-15px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes float {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(20px, 20px);
    }
}

@keyframes scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@keyframes scroll-reverse {
    from {
        transform: translateX(-50%);
    }

    to {
        transform: translateX(0);
    }
}

@keyframes spinZ {
    0% {
        transform: translate(-50%, -50%) rotateZ(0deg);
    }

    100% {
        transform: translate(-50%, -50%) rotateZ(360deg);
    }
}

@keyframes spinZMobile {
    0% {
        transform: translate(-50%, -50%) scale(0.7) rotateZ(0deg);
    }

    100% {
        transform: translate(-50%, -50%) scale(0.7) rotateZ(360deg);
    }
}

.background-blobs {
    pointer-events: none;
}

.blob {
    /* 背景の丸い装飾です。色や動きは .color-* と animation で調整できます。 */
    position: fixed;
    border-radius: 50%;
    filter: blur(5px);
    z-index: -1;
    opacity: 0.5;
    animation: float 25s infinite alternate ease-in-out;
}

.color-1 {
    background: #e0c3fc;
}

.color-2 {
    background: #8ec5fc;
}

.color-3 {
    background: #ffdee9;
}

.color-4 {
    background: #f6d365;
}

.color-5 {
    background: #b9fbc0;
}

.blob-1 {
    top: 5%;
    left: 5%;
    width: 20px;
    height: 20px;
    animation-duration: 20s;
}

.blob-2 {
    top: 15%;
    left: 25%;
    width: 12px;
    height: 12px;
    animation-duration: 25s;
    animation-delay: -2s;
}

.blob-3 {
    top: 8%;
    right: 10%;
    width: 25px;
    height: 25px;
    animation-duration: 30s;
    animation-delay: -5s;
}

.blob-4 {
    top: 40%;
    left: 8%;
    width: 15px;
    height: 15px;
    animation-duration: 22s;
    animation-delay: -8s;
}

.blob-5 {
    top: 35%;
    right: 25%;
    width: 18px;
    height: 18px;
    animation-duration: 28s;
    animation-delay: -10s;
}

.blob-6 {
    bottom: 30%;
    left: 15%;
    width: 22px;
    height: 22px;
    animation-duration: 24s;
    animation-delay: -12s;
}

.blob-7 {
    bottom: 10%;
    left: 5%;
    width: 10px;
    height: 10px;
    animation-duration: 26s;
    animation-delay: -15s;
}

.blob-8 {
    bottom: 20%;
    right: 5%;
    width: 28px;
    height: 28px;
    animation-duration: 32s;
    animation-delay: -3s;
}

.blob-9 {
    top: 50%;
    left: 50%;
    width: 14px;
    height: 14px;
    animation-duration: 29s;
    animation-delay: -7s;
}

.blob-10 {
    bottom: 45%;
    right: 15%;
    width: 16px;
    height: 16px;
    animation-duration: 23s;
    animation-delay: -1s;
}

.blob-11 {
    top: 20%;
    left: 80%;
    width: 12px;
    height: 12px;
    animation-duration: 27s;
    animation-delay: -9s;
}

.blob-12 {
    bottom: 5%;
    right: 40%;
    width: 20px;
    height: 20px;
    animation-duration: 31s;
    animation-delay: -4s;
}

.blob-13 {
    top: 10%;
    left: 40%;
    width: 8px;
    height: 8px;
    animation-duration: 21s;
    animation-delay: -11s;
}

.blob-14 {
    bottom: 60%;
    left: 5%;
    width: 18px;
    height: 18px;
    animation-duration: 25s;
    animation-delay: -6s;
}

.blob-15 {
    top: 80%;
    right: 50%;
    width: 10px;
    height: 10px;
    animation-duration: 28s;
    animation-delay: -13s;
}

.main-visual-wrapper {
    /* ファーストビュー全体の余白です。上部の見え方を変えたい場合はここを調整してください。 */
    width: 100%;
    display: block;
    margin: 0 0 10rem;
    padding: 0;
    position: relative;
    z-index: 10;
}

.mv-content-flex {
    display: block;
    width: 100%;
    height: 100vh;
    position: relative;
}

.main-visual {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.main-visual-img {
    /* メイン画像の表示方法です。トリミング感を変える場合は object-fit / object-position を調整してください。 */
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 10s ease;
}

.main-visual:hover .main-visual-img {
    transform: scale(1.02);
}

.main-visual-overlay {
    position: absolute;
    top: 35%;
    left: 10%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-align: left;
    z-index: 20;
    pointer-events: none;
}

.mv-title {
    /* メイン見出しの文字サイズと見た目です。 */
    font-family: "M PLUS Rounded 1c", sans-serif;
    font-size: 4.5rem;
    color: #fff;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.05em;
    font-weight: 400;
    margin: 0;
    opacity: 0;
    animation: blurFadeIn 3.5s cubic-bezier(0.2, 0.8, 0.2, 1) 0.5s forwards;
    line-height: 1.4;
    white-space: nowrap;
}

.mv-subtitle {
    /* メイン見出しの下に出る小さな文字です。 */
    font-family: "Quicksand", sans-serif;
    font-size: 1.1rem;
    color: #fff;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    padding: 0.5rem 1.2rem;
    margin: 1rem 0 0 0.5rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    opacity: 0;
    animation: slideFadeIn 3s cubic-bezier(0.2, 0.8, 0.2, 1) 1.5s forwards;
}

.global-nav {
    position: absolute;
    top: 50%;
    right: 10%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 2rem;
    opacity: 0;
    animation: fadeInUp 1s ease-out 1s forwards;
    z-index: 100;
}

.menu-btn {
    /* 右側メニューの見た目です。ボタン幅や文字サイズを変えたい場合はここを編集してください。 */
    padding: 15px 30px;
    position: relative;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-decoration: none;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
    font-family: "Quicksand", "M PLUS Rounded 1c", sans-serif;
    font-size: 1rem;
    display: inline-block;
    transition: color 0.2s ease, text-shadow 0.2s ease;
    text-align: center;
    white-space: nowrap;
}

.menu-btn::after,
.menu-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    border: 2px solid rgba(255, 255, 255, 0.8);
    transition: transform 0.2s;
}

.menu-btn::after {
    transform: translate(3px, 3px);
}

.menu-btn::before {
    transform: translate(-3px, -3px);
}

.menu-btn:hover::after,
.menu-btn:hover::before {
    transform: translate(0);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem 1rem;
}

section {
    margin-bottom: 8rem;
    position: relative;
}

#section-02 {
    margin-bottom: 2rem;
}

.section-header {
    /* 各セクション見出し周りの余白です。 */
    position: relative;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 6rem;
}

.emblem {
    /* 見出しの後ろで回転する円形テキストです。大きさは width / height で調整できます。 */
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120px;
    height: 120px;
    transform: translate(-50%, -50%);
    color: var(--accent);
    animation: spinZ 40s linear infinite;
    pointer-events: none;
    z-index: 0;
    opacity: 0.5;
}

.emblem-svg {
    width: 100%;
    height: 100%;
    display: block;
    overflow: visible;
}

.emblem-text {
    fill: currentColor;
    font-family: "Cormorant Garamond", serif;
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.section-title-jp {
    /* 各セクションの見出し文字です。 */
    font-size: 2.2rem;
    font-weight: 600;
    color: #444;
    position: relative;
    z-index: 1;
    display: inline-block;
    letter-spacing: 0.1em;
    background: rgba(255, 255, 255, 0.8);
    padding: 0.5rem 1rem;
    backdrop-filter: blur(2px);
}

.glass-card {
    background: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
    padding: 0;
    margin-bottom: 0;
    opacity: 0;
    animation: fadeInUp 1s ease-out forwards;
}

.content-layout {
    /* セクション2の3カラム配置です。 */
    display: flex;
    align-items: flex-start;
    gap: 3rem;
    text-align: left;
    padding: 2rem 0;
}

.content-visual {
    flex-shrink: 0;
    width: 220px;
    margin: 0;
    text-align: center;
}

.content-main {
    flex: 1;
    min-width: 0;
}

.content-side {
    flex: 1;
    min-width: 0;
    padding-left: 2rem;
    border-left: 1px solid #eee;
}

.content-image {
    /* セクション2の丸い画像です。サイズ変更はここで行います。 */
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.content-title {
    font-size: 2rem;
    margin: 0 0 1rem;
    color: #333;
    font-weight: 400;
    letter-spacing: 0.1em;
}

.content-kicker {
    font-weight: 500;
    color: var(--accent);
    margin: 0 0 2rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-size: 0.8rem;
}

.content-text,
.detail-text {
    font-size: 0.95rem;
}

.content-text {
    line-height: 2;
    color: #666;
    margin-bottom: 2.5rem;
}

.content-text p,
.detail-text p {
    margin: 0;
}

.detail-text {
    margin-top: 0;
    line-height: 2.2;
    color: #555;
}

.detail-title {
    font-size: 1.1rem;
    margin: 0 0 1.5rem;
    color: #444;
    font-weight: 600;
    letter-spacing: 0.05em;
}

.action-row {
    display: flex;
    justify-content: flex-start;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.glass-btn {
    /* セクション2やモーダルで使う共通ボタンです。 */
    background: transparent;
    padding: 10px 30px;
    border-radius: 50px;
    text-decoration: none;
    color: #333;
    font-size: 1.1rem;
    font-weight: 600;
    transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease;
    border: 1px solid #333;
    box-shadow: none;
    letter-spacing: 0.1em;
    display: inline-block;
    cursor: pointer;
    appearance: none;
}

.glass-btn:hover {
    transform: translateY(-2px);
    background-color: #333;
    color: #fff;
}

.section-list {
    /* セクション1のカード一覧の間隔です。 */
    display: flex;
    flex-direction: column;
    gap: 8rem;
}

.section-card {
    /* セクション1の1件分のカードです。 */
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8rem;
}

html.js .section-card {
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

html.js .section-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.section-card:nth-child(even) {
    flex-direction: row-reverse;
}

.section-media {
    flex: 1;
    position: relative;
}

.media-button {
    display: block;
    width: 100%;
    padding: 0;
    border: 0;
    background: none;
    cursor: pointer;
}

.section-image {
    /* セクション1の画像サイズとトリミングです。 */
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
    border-radius: 4px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25), 0 10px 20px -5px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease;
}

.image-fallback {
    display: none;
    width: 100%;
    aspect-ratio: 4 / 3;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    background: #eee;
    color: #777;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease;
}

[data-image-wrapper].is-fallback .section-image {
    display: none;
}

[data-image-wrapper].is-fallback .image-fallback {
    display: flex;
}

.section-card:hover .section-image,
.section-card:hover .image-fallback {
    transform: translateY(-5px);
}

.section-body {
    flex: 1;
    padding: 1rem;
}

.section-card-title {
    /* セクション1のカード見出しです。 */
    font-size: 1.5rem;
    margin: 0 0 1.5rem;
    color: #333;
    letter-spacing: 0.05em;
    position: relative;
    display: inline-block;
}

.section-card-title::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 40px;
    height: 1px;
    background-color: var(--accent);
}

.section-label {
    font-size: 0.8rem;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 0.5rem;
    display: block;
}

.section-description {
    color: #666;
    font-size: 0.95rem;
    line-height: 2;
    margin-bottom: 2rem;
}

.section-action {
    /* セクション1の詳細ボタンです。 */
    display: inline-block;
    padding: 0 0 5px;
    border: 0;
    border-bottom: 1px solid #333;
    background: none;
    font-size: 0.9rem;
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease, border-color 0.3s ease;
    cursor: pointer;
}

.section-action:hover {
    color: var(--accent);
    border-color: var(--accent);
}

.slider-section {
    /* 横に流れる画像エリアです。上下の余白を変える場合はここを編集してください。 */
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-top: 4rem;
    margin-bottom: 4rem;
    overflow: hidden;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.5s forwards;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 2rem 0;
}

.slider-track {
    /* 横スクロールの速さは animation の秒数で調整できます。 */
    display: flex;
    width: max-content;
    animation: scroll 60s linear infinite;
}

.slider-reverse {
    animation: scroll-reverse 60s linear infinite;
}

.slider-item {
    width: 200px;
    height: 200px;
    margin-right: 40px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 0;
    background: none;
    cursor: pointer;
}

.slider-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.slider-item:hover .slider-img {
    transform: scale(1.05);
}

#section-03 {
    position: relative;
    overflow: hidden;
    padding: 4rem 0 0;
}

.card-grid {
    /* セクション3のカード一覧です。列数やカード間の余白を調整できます。 */
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 5rem;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
}

.card-item {
    --card-surface: #fff;
    --icon-accent: #282828;
    display: flex;
    flex-direction: column;
}

.card-item--accent {
    --icon-accent: var(--accent);
}

.card-item--accent-sub {
    --icon-accent: var(--accent-sub);
}

.tag-list {
    margin: 0;
    padding: 0;
    list-style-type: none;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.625rem;
}

.tag {
    text-transform: uppercase;
    color: #282828;
    font-weight: 700;
    font-size: 0.8rem;
    padding: 0.375rem 0.625rem;
    border-radius: 0.188rem;
}

.tag--accent {
    background: var(--accent);
}

.tag--accent-sub {
    background: var(--accent-sub);
}

.tag--neutral {
    background: #eee;
}

.card-body {
    padding: 0.938rem 0.625rem;
}

.card-body h3 {
    text-transform: capitalize;
    font-size: 1.5rem;
    margin: 0;
    color: #333;
    font-family: "Quicksand", sans-serif;
}

.card-body p {
    margin: 0.625rem 0 1.25rem;
    color: #565656;
    line-height: 1.5;
    font-size: 0.95rem;
}

.card-item-inner {
    /* セクション3のカード本体です。高さを変える場合はここを編集してください。 */
    position: relative;
    width: 100%;
    height: 20rem;
    background: var(--card-surface);
    border-radius: 1.25rem;
    border-bottom-right-radius: 0;
    overflow: hidden;
}

.card-frame {
    width: 100%;
    height: 100%;
    background: var(--card-surface);
    border-radius: 1.25rem;
    overflow: hidden;
    position: relative;
}

.card-image-wrap {
    position: absolute;
    inset: 0;
}

.card-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.card-item:hover .card-image-wrap img {
    transform: scale(1.05);
}

.card-action {
    position: absolute;
    bottom: -0.375rem;
    right: -0.375rem;
    width: 6rem;
    height: 6rem;
    background: var(--card-surface);
    border-top-left-radius: 50%;
    z-index: 2;
}

.card-action::before {
    position: absolute;
    content: "";
    bottom: 0.375rem;
    left: -1.25rem;
    background: transparent;
    width: 1.25rem;
    height: 1.25rem;
    border-bottom-right-radius: 1.25rem;
    box-shadow: 0.313rem 0.313rem 0 0.313rem var(--card-surface);
}

.card-action::after {
    position: absolute;
    content: "";
    top: -1.25rem;
    right: 0.375rem;
    background: transparent;
    width: 1.25rem;
    height: 1.25rem;
    border-bottom-right-radius: 1.25rem;
    box-shadow: 0.313rem 0.313rem 0 0.313rem var(--card-surface);
}

.card-action-link {
    position: absolute;
    inset: 0.625rem;
    background: var(--icon-accent);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease;
    text-decoration: none;
}

.card-action-link span {
    color: #fff;
    font-size: 1.8rem;
}

.card-action:hover .card-action-link {
    transform: scale(1.1);
}

.modal-overlay {
    /* 画像拡大時の背景です。色の濃さは background で調整できます。 */
    position: fixed;
    inset: 0;
    background: rgba(252, 252, 252, 0.95);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    cursor: pointer;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    width: 90%;
    max-width: 900px;
    background: transparent;
    text-align: center;
    cursor: default;
}

.modal-image-button {
    display: block;
    width: 100%;
    padding: 0;
    border: 0;
    background: none;
    cursor: pointer;
}

.modal-img {
    max-width: 100%;
    max-height: 85vh;
    border-radius: 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

.modal-body {
    color: #555;
    margin-top: 1.5rem;
}

.modal-title {
    margin: 0 0 0.5rem;
    color: #333;
}

.modal-category {
    margin: 0;
    color: #888;
}

.modal-close-btn {
    margin-top: 1.5rem;
}

@media (max-width: 1024px) {
    /* タブレット向けの調整です。 */
    .container {
        padding: 0 2rem 3rem;
    }

    .mv-content-flex {
        display: flex;
        flex-direction: column;
        height: auto;
        gap: 3rem;
    }

    .main-visual-wrapper {
        margin-bottom: 8rem;
    }

    .main-visual {
        position: relative;
        width: 100%;
        height: 60vh;
    }

    .main-visual-overlay {
        top: 0;
        left: 0;
        right: 0;
        transform: none;
        padding: 5rem 2rem 2rem;
        justify-content: flex-start;
        align-items: center;
        text-align: center;
    }

    .mv-title {
        font-size: 3.5rem;
    }

    .global-nav {
        position: static;
        transform: none;
        flex-direction: row;
        justify-content: center;
        width: 100%;
        margin-top: 2rem;
    }

    .menu-btn {
        color: var(--text-main);
        text-shadow: none;
    }

    .menu-btn::after,
    .menu-btn::before {
        border: 2px solid var(--accent);
    }

    .card-grid {
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    /* スマホ向けの調整です。 */
    .main-visual-wrapper {
        margin-bottom: 2rem;
    }

    .global-nav {
        gap: 1rem;
        flex-wrap: wrap;
        padding: 0 1rem;
    }

    .menu-btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }

    .container {
        padding: 4rem 1.5rem 2rem;
    }

    .content-layout {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .action-row {
        justify-content: center;
    }

    .content-visual,
    .content-main,
    .content-side {
        width: 100%;
    }

    .content-visual {
        margin-bottom: 1rem;
    }

    .content-side {
        padding-left: 0;
        border-left: none;
        border-top: 1px solid #eee;
        padding-top: 2rem;
        margin-top: 1rem;
    }

    .main-visual {
        height: 70vh;
        border-radius: 0 0 24px 24px;
    }

    .main-visual-overlay {
        inset: 0;
        padding: 4rem 1.5rem;
    }

    .mv-title {
        font-size: 2.2rem;
        white-space: normal;
    }

    .mv-subtitle {
        margin-left: 0;
    }

    .section-list {
        gap: 5rem;
    }

    .section-card,
    .section-card:nth-child(even) {
        flex-direction: column;
        gap: 2rem;
    }

    .section-body {
        padding: 0;
        text-align: left;
    }

    .slider-item {
        margin-right: 20px;
    }

    .slider-img {
        max-height: 250px;
    }

    .section-header {
        height: 100px;
    }

    .section-title-jp {
        font-size: 1.5rem;
    }

    .emblem {
        width: 100px;
        height: 100px;
        animation: spinZMobile 40s linear infinite;
    }

    .emblem-text {
        font-size: 1.2rem;
    }

    #section-01 .section-header,
    #section-02 .section-header,
    #section-03 .section-header {
        margin-bottom: 3rem;
    }

    #section-03 {
        margin-bottom: 0;
    }

    .card-grid {
        grid-template-columns: 1fr;
        max-width: 100%;
        gap: 3rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    /* 動きを減らしたい利用者向けの設定です。通常は編集不要です。 */
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .blob,
    .slider-track {
        animation: none !important;
    }

    .mv-title,
    .mv-subtitle,
    .global-nav,
    .glass-card,
    .slider-section,
    .section-card {
        opacity: 1 !important;
        transform: none !important;
    }
}
