@charset "UTF-8";

/* ==========================================================================
   1. Base Styles & Variables (Long-life Design / CTime-inspired)
   ========================================================================== */
:root {
    /* Colors */
    --primary-color: #ED9455;
    /* KANMO Orange */
    --primary-light: #FFBB70;
    --primary-lightest: #FFEC9E;
    --accent-color: #FFFBDA;

    --text-main: #333333;
    /* Dark Gray for text */
    --text-sub: #777777;
    /* Light Gray for subtext */
    --bg-white: #FFFFFF;
    --bg-light: #F9F9F9;
    /* Slightly off-white for sections */
    --border-color: #E0E0E0;
    /* Subtle border */

    /* Typography */
    --font-jp: "Noto Sans JP", sans-serif;
    --font-en: "Helvetica Neue", Helvetica, Arial, sans-serif;

    /* Spacing */
    --container-width: 1100px;
    --section-padding: 100px 0;
}

body {
    font-family: var(--font-jp);
    color: var(--text-main);
    background-color: var(--bg-white);
    line-height: 1.8;
    letter-spacing: 0.05em;
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

a:hover {
    opacity: 0.7;
}

img {
    max-width: 100%;
    height: auto;
}

/* ==========================================================================
   2. Layout & Container
   ========================================================================== */
.inunote-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

.inunote-section {
    padding: var(--section-padding);
}

.inunote-section--alt {
    background-color: var(--bg-light);
}

/* ==========================================================================
   3. Typography & Headings
   ========================================================================== */
.inunote-section__title {
    font-family: var(--font-en);
    font-size: 3.2rem;
    /* 英字を大きく */
    font-weight: 700;
    color: var(--text-main);
    text-align: center;
    margin-bottom: 60px;
    display: flex;
    flex-direction: column-reverse;
    /* 日本語を上に（順序逆転） */
    align-items: center;
    gap: 10px;
    text-transform: capitalize;
    /* "Service" のように頭大文字 */
    letter-spacing: 0.02em;
    line-height: 1.2;
}

.inunote-section__title span {
    font-family: var(--font-jp);
    font-size: 1rem;
    /* 日本語は小さく */
    font-weight: 500;
    color: var(--text-main);
    /* 色を少し濃く */
    letter-spacing: 0.1em;
    text-transform: none;
    margin-bottom: 5px;
    opacity: 0.8;
}

/* ==========================================================================
   4. Buttons
   ========================================================================== */
.inunote-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 48px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 100px;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
    min-width: 240px;
    text-decoration: none;
}

.inunote-btn-primary {
    background-color: var(--primary-color);
    color: var(--bg-white);
    border: 2px solid var(--primary-color);
}

.inunote-btn-primary:hover {
    background-color: var(--bg-white);
    color: var(--primary-color);
}

.inunote-btn-secondary {
    background-color: transparent;
    /* 背景透明 */
    color: var(--text-main);
    border: 1px solid var(--text-main);
    /* 枠線を黒に近く */
    font-size: 14px;
    position: relative;
    overflow: hidden;
}

.inunote-btn-secondary:hover {
    border-color: var(--primary-color);
    background-color: var(--primary-color);
    /* ホバーでプライマリー色 */
    color: var(--bg-white);
}

/* 矢印付きボタン用クラス */
.inunote-btn-arrow {
    padding-right: 60px;
    /* 矢印スペース確保 */
}

.inunote-btn-arrow::after {
    content: "";
    display: block;
    width: 8px;
    height: 8px;
    border-top: 2px solid currentColor;
    border-right: 2px solid currentColor;
    transform: rotate(45deg);
    position: absolute;
    top: 50%;
    right: 24px;
    margin-top: -5px;
    transition: right 0.3s ease;
}

.inunote-btn-arrow:hover::after {
    right: 18px;
    /* ホバーで少し右へ動く */
}

/* ==========================================================================
   5. ヒーローセクション (CTime風: 左右2カラム & イラスト)
   ========================================================================== */
/* Cocoonデフォルトのコンテンツ上部マージンを上書き */
.home .content,
.home #content {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

.inunote-hero {
    position: relative;
    padding: 60px 0 100px;
    /* 120px -> 60px に短縮 */
    background-color: var(--bg-white);
    overflow: hidden;
}

.inunote-hero__container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

/* 左側: テキスト */
.inunote-hero__content {
    flex: 1;
    max-width: 540px;
    text-align: left;
    /* 左寄せ */
    z-index: 2;
}

.inunote-hero__title {
    font-size: 48px;
    /* 30px -> 48px に増大 */
    line-height: 1.4;
    letter-spacing: 0.08em;
    margin-bottom: 40px;
    font-weight: 700;
    color: var(--text-main);
    font-feature-settings: "palt";
    white-space: nowrap;
}

@media (max-width: 1200px) {
    .inunote-hero__title {
        white-space: normal;
        font-size: 38px;
        /* 32px -> 38px */
    }
}

.inunote-hero__lead {
    font-size: 16px;
    /* 16px (1.6rem) 固定 */
    line-height: 2.6;
    color: var(--text-main);
    margin-bottom: 50px;
    font-weight: 400;
    letter-spacing: 0.1em;
}

/* 右側: 画像エリア */
.inunote-hero__image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
}

.inunote-hero__image img {
    width: auto;
    /* width: 100% -> auto に変更（縦長対応） */
    height: auto;
    max-width: 100%;
    /* 親要素(flex:1)内に収める */
    max-height: 600px;
    /* 縦長画像が画面を埋め尽くさないよう制限 */
    display: block;
    /* 有機的なマスク（デザイン性） */
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    /* 動きは不要とのことで削除 */
    /* animation: floating 6s ease-in-out infinite; */
    object-fit: cover;
    /* 縦横比維持しつつ枠に収める */
}

@keyframes floating {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0);
    }
}

/* モバイル対応 */
@media (max-width: 768px) {
    .inunote-hero {
        padding: 80px 0 60px;
    }

    .inunote-hero__container {
        flex-direction: column;
        gap: 40px;
        padding: 0 20px;
    }

    .inunote-hero__content {
        text-align: left;
        max-width: 100%;
    }

    .inunote-hero__title {
        font-size: 34px;
        /* スマホでも少し大きく */
        margin-bottom: 30px;
        white-space: normal;
        /* スマホは折り返し必須 */
    }

    .inunote-hero__lead {
        font-size: 14px;
        margin-bottom: 40px;
    }

    .inunote-hero__image img {
        max-width: 80%;
    }
}

/* ==========================================================================
   6. Service Cards (Border Only, No Shadow)
   ========================================================================== */
.inunote-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 0;
    border-top: 1px solid var(--border-color);
    border-left: 1px solid var(--border-color);
}

.inunote-service-card {
    background: var(--bg-white);
    padding: 60px 40px;
    border-right: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    transition: background-color 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}




.inunote-services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    margin-top: 60px;
}

@media (min-width: 768px) {
    .inunote-services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
    }
}

.inunote-service-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    text-decoration: none;
    color: var(--text-main);
    transition: opacity 0.3s ease;
    /* 背景や枠線はなし */
    background: transparent;
    border: none !important;
    box-shadow: none !important;
    padding: 0;
    min-height: auto;
    overflow: visible;
}

.inunote-service-box:hover {
    transform: none;
    opacity: 0.8;
    box-shadow: none !important;
    border: none !important;
}

/* 以前の装飾（肉球、透かし）は削除 */
.inunote-service-box::before,
.inunote-service-box::after,
.inunote-service-box:nth-child(1)::after,
.inunote-service-box:nth-child(2)::after {
    content: none;
    display: none;
}

.inunote-service-box__num {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    font-family: var(--font-en);
    font-size: 100px;
    font-weight: 700;
    line-height: 1;
    color: var(--primary-color);
    /* いぬのてカラー */
    margin-bottom: -30px;
    /* 画像に少し重ねる */
    opacity: 1;
    z-index: 2;
    /* 画像より前面に */
}

.inunote-service-box__image {
    width: 100%;
    max-width: 200px;
    /* 画像を縮小 */
    margin: 0 auto 30px;
    position: relative;
    z-index: 1;
}

.inunote-service-box__image img {
    width: 100%;
    height: auto;
    display: block;
}

/* クラス名変更に伴う修正: __en, __jp -> __title, __desc */
.inunote-service-box__title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #333;
    letter-spacing: 0.05em;
}

.inunote-service-box__desc {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    text-align: left;
    /* 説明文は左寄せ */
    margin-bottom: 30px;
    width: 100%;
}

.inunote-service-box__btn {
    display: inline-block;
    padding: 12px 40px;
    border: none;
    /* 枠線削除 */
    background: var(--bg-light);
    /* 背景色ありに変更（またはprimary-color） */
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 700;
    border-radius: 100px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.inunote-service-box:hover .inunote-service-box__btn {
    background-color: var(--primary-color);
    color: #fff;
}

/* ==========================================================================
   7. News & Knowledge (List Style)
   ========================================================================== */
.inunote-news-list {
    border-top: 1px solid var(--border-color);
}

.inunote-news-item {
    display: flex;
    align-items: baseline;
    padding: 24px 0;
    border-bottom: 1px solid var(--border-color);
    transition: background-color 0.3s ease;
    color: var(--text-main);
    text-decoration: none;
}


.inunote-news-item:hover {
    background-color: var(--bg-light);
}

.inunote-news-date {
    font-family: var(--font-en);
    font-size: 14px;
    color: var(--text-sub);
    width: 120px;
    flex-shrink: 0;
}

.inunote-news-cat {
    font-size: 12px;
    font-weight: 700;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    padding: 4px 10px;
    margin-right: 20px;
    border-radius: 100px;
    white-space: nowrap;
}

.inunote-news-title {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
}

/* ==========================================================================
   8. Animation (Simple Fade In)
   ========================================================================== */
.inunote-fade-in {
    animation: fadeIn 1.5s ease-out forwards;
    opacity: 0;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

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

/* About Page Specifics */
.inunote-profile-card {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    margin-top: 40px;
    padding: 40px;
    background: var(--bg-light);
}

@media (max-width: 768px) {
    .inunote-profile-card {
        flex-direction: column;
        padding: 20px;
    }
}

.inunote-profile-img {
    width: 200px;
    flex-shrink: 0;
}

.inunote-profile-img img {
    width: 100%;
    filter: grayscale(100%);
    transition: filter 0.3s;
}

.inunote-profile-img img:hover {
    filter: grayscale(0%);
}

.inunote-mv-box {
    margin-bottom: 60px;
    padding: 40px;
    border: 1px solid var(--border-color);
}

.inunote-mv-title {
    font-size: 1.4rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 20px;
    letter-spacing: 0.1em;
}

/* ==========================================================================
   9. Form Styles (WPForms / General)
   ========================================================================== */
/* フォームラッパー */
.inunote-contact-form-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

/* 入力フィールド */
.wpforms-field input,
.wpforms-field textarea,
input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
    width: 100%;
    padding: 16px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    background-color: var(--bg-light);
    font-size: 16px;
    font-family: var(--font-jp);
    margin-top: 8px;
    box-sizing: border-box;
}

.wpforms-field input:focus,
.wpforms-field textarea:focus {
    border-color: var(--primary-color);
    outline: none;
    background-color: var(--bg-white);
}

/* ラベル */
.wpforms-field-label {
    font-weight: 700;
    color: var(--text-main);
    display: block;
    margin-bottom: 4px;
}

/* 送信ボタン（コンテナ） */
.wpforms-submit-container {
    text-align: center;
    margin-top: 40px;
}

/* 送信ボタン本体 */
button.wpforms-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 60px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 100px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border: 2px solid var(--primary-color);
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 240px;
}

button.wpforms-submit:hover {
    background-color: var(--bg-white);
    color: var(--primary-color);
}

/* ==========================================================================
   10. CTA Section (Common Footer CTA)
   ========================================================================== */
.inunote-cta-section {
    background-color: #ED9455 !important;
    /* var(--primary-color) fallback */
    background-color: var(--primary-color);
    color: #FFFFFF;
    text-align: center;
    padding: 100px 0;
}

.inunote-cta-section .inunote-section__title {
    color: #FFFFFF !important;
    border-color: #FFFFFF !important;
}

.inunote-cta-section .inunote-section__title span {
    color: #FFFFFF !important;
    opacity: 0.9;
}

.inunote-cta-text {
    margin-bottom: 60px;
    font-size: 18px;
    line-height: 2.0;
    color: #FFFFFF;
}

.inunote-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.inunote-cta-btn-primary {
    background: #FFFFFF;
    color: #ED9455;
    /* primary-color */
    border: 2px solid #FFFFFF;
}

.inunote-cta-btn-primary:hover {
    background: transparent;
    color: #FFFFFF;
}

.inunote-cta-btn-secondary {
    border: 2px solid #FFFFFF;
    color: #FFFFFF;
    background: transparent;
}

.inunote-cta-btn-secondary:hover {
    background: #FFFFFF;
    color: #ED9455;
}


/* ==========================================================================
   11. Custom Header (header.php)
   ========================================================================== */
.inunote-header {
    background-color: var(--bg-white);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 999;
    height: 80px;
    /* 固定高さ */
    display: flex;
    align-items: center;
}

.inunote-header__container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* ロゴ */
.inunote-header__logo a {
    text-decoration: none;
    display: flex;
    align-items: center;
}

.inunote-logo-text {
    font-family: var(--font-en);
    font-weight: 700;
    font-size: 24px;
    letter-spacing: 0.05em;
    color: var(--primary-color);
}

/* PCナビゲーション */
.inunote-header__nav {
    display: none;
    /* デフォルト非表示、PCで表示 */
}

@media (min-width: 1024px) {
    .inunote-header__nav {
        display: block;
    }
}

.inunote-header__menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
    gap: 30px;
}

.inunote-header__menu>li>a {
    font-family: var(--font-jp);
    font-weight: 700;
    font-size: 15px;
    color: var(--text-main);
    text-decoration: none;
    transition: color 0.3s;
    padding: 10px 0;
}

.inunote-header__menu>li>a:hover {
    color: var(--primary-color);
}

/* 最後のメニュー項目（お問い合わせ）をボタン化 */
.inunote-header__menu>li:last-child>a {
    background-color: var(--primary-color);
    color: #fff;
    border-radius: 100px;
    padding: 10px 24px;
    border: 2px solid var(--primary-color);
    transition: all 0.3s ease;
}

.inunote-header__menu>li:last-child>a:hover {
    background-color: #fff;
    color: var(--primary-color);
}

/* ハンバーガーボタン (SPのみ) */
.inunote-header__burger {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    z-index: 1001;
    /* メニューより上 */
}

@media (min-width: 1024px) {
    .inunote-header__burger {
        display: none;
    }
}

.inunote-header__burger span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--text-main);
    transition: all 0.3s;
}

/* メニューオープン時のハンバーガー変形 */
body.is-menu-open .inunote-header__burger span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

body.is-menu-open .inunote-header__burger span:nth-child(2) {
    opacity: 0;
}

body.is-menu-open .inunote-header__burger span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}


/* ==========================================================================
   12. Custom Mobile Menu
   ========================================================================== */
.inunote-mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    pointer-events: none;
    /* 閉じているときは触れない */
}

.inunote-mobile-menu.is-active {
    pointer-events: auto;
}

.inunote-mobile-menu__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: opacity 0.3s;
}

.inunote-mobile-menu.is-active .inunote-mobile-menu__overlay {
    opacity: 1;
}

.inunote-mobile-menu__inner {
    position: absolute;
    top: 0;
    right: 0;
    width: 80%;
    max-width: 300px;
    height: 100%;
    background-color: var(--bg-white);
    padding: 20px;
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
}

.inunote-mobile-menu.is-active .inunote-mobile-menu__inner {
    transform: translateX(0);
}

.inunote-mobile-menu__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

.inunote-mobile-menu__title {
    font-family: var(--font-en);
    font-weight: 700;
    font-size: 18px;
    color: var(--text-main);
}

.inunote-mobile-menu__close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--text-main);
}

.inunote-mobile-menu__list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.inunote-mobile-menu__list>li {
    margin-bottom: 20px;
}

.inunote-mobile-menu__list>li>a {
    font-family: var(--font-jp);
    font-weight: 700;
    font-size: 16px;
    color: var(--text-main);
    text-decoration: none;
    display: block;
}

/* SPメニュー内のお問い合わせボタン */
.inunote-mobile-menu__footer {
    margin-top: auto;
    padding-top: 20px;
}

.inunote-mobile-menu__footer .inunote-btn {
    width: 100%;
    text-align: center;
}


/* ==========================================================================
   13. Custom Footer (footer.php)
   ========================================================================== */
.inunote-footer {
    background-color: var(--text-main);
    color: #fff;
    padding: 60px 0 20px;
}

.inunote-footer__container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.inunote-footer__top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 40px;
}

.inunote-footer__widget-area {
    flex: 1;
    min-width: 300px;
}

.inunote-footer__branding .inunote-footer__logo {
    font-family: var(--font-en);
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 0.05em;
    display: block;
    margin-bottom: 20px;
}

.inunote-footer__desc {
    font-size: 14px;
    line-height: 1.8;
    color: #ccc;
}

.inunote-footer__nav-area {
    flex: 0 0 auto;
}

.inunote-footer__menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

@media (min-width: 768px) {
    .inunote-footer__menu {
        flex-direction: row;
        gap: 30px;
    }
}

.inunote-footer__menu li a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.inunote-footer__menu li a:hover {
    color: #fff;
}

.inunote-footer__copyright {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    font-size: 12px;
    font-family: var(--font-en);
    color: #888;
}



/* ロゴ */
.logo-header {
    font-family: var(--font-en);
    font-weight: 700;
    letter-spacing: 0.05em;
}

.logo-header a {
    color: var(--primary-color);
    text-decoration: none;
    transition: opacity 0.3s;
}

.logo-header a:hover {
    opacity: 0.8;
}

/* グローバルナビゲーション */
#navi .navi-in>ul>li>a {
    font-family: var(--font-jp);
    font-weight: 700;
    font-size: 15px;
    color: var(--text-main);
    padding: 20px 15px;
    /* 上下余白広め */
    transition: color 0.3s;
}

#navi .navi-in>ul>li>a:hover {
    color: var(--primary-color);
    background-color: transparent;
    /* Cocoonのデフォルト背景を無効化 */
}

/* お問い合わせボタン化 (最後のメニュー項目) */
#navi .navi-in>ul>li:last-child>a {
    background-color: var(--primary-color);
    color: #fff !important;
    border-radius: 100px;
    padding: 10px 24px;
    margin-left: 15px;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color);
    display: inline-block;
    /* ボタン形状維持 */
    line-height: 1.5;
}

#navi .navi-in>ul>li:last-child>a:hover {
    background-color: #fff;
    color: var(--primary-color) !important;
}

/* スマホメニューなどでの調整が必要な場合はここに追記 */
@media (max-width: 1023px) {
    #navi .navi-in>ul>li:last-child>a {
        margin-left: 0;
        margin-top: 10px;
        display: block;
        text-align: center;
    }
}


/* ==========================================================================
   12. Rich Footer
   ========================================================================== */
.footer {
    background-color: var(--text-main);
    /* ダーク背景 */
    color: #fff;
    padding-top: 60px;
    padding-bottom: 20px;
}

.footer-widgets {
    color: #fff;
}

.footer-widgets a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-widgets a:hover {
    color: #fff;
    text-decoration: underline;
}

/* フッターメニュー（もしあれば） */
.menu-footer li a {
    color: #ccc;
}

.menu-footer li a:hover {
    color: #fff;
}

/* コピーライト */
.copyright {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 12px;
    color: #aaa;
    font-family: var(--font-en);
}