@charset "UTF-8";

:root {
    --neu-bg: #ffffff;
    /* カード地 */
    --neu-tint: #f8fff7;
    /* ごく薄い青み（好みで #fff9f5 などもOK） */
    --neu-hi: rgba(255, 255, 255, .95);
    --neu-lo: rgba(36, 56, 99, .14);
    /* 影は青グレーで清潔感 */
}

body {
    font-family: 'Noto Sans JP', "Meiryo";
    background: #f4f6fb;
}

main {
    padding-top: 60px;
}

/* グラスモーフィズム */
.glass {
    background: rgba(255, 255, 255, 0.548);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    display: block;
    margin: 0 auto;
}

.site-logo {
    font-weight: 900;
    /* 最も太いウェイト（ブラウザが対応する範囲で最大） */
    font-size: 2rem;
    /* 少し大きめにして存在感を出す */
    text-transform: uppercase;
    letter-spacing: .06em;

    /* 青系グラデーション */
    background: linear-gradient(135deg, #327ace 0%, #005eff 40%, #35a0ce 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;

    line-height: 1;
    /* 上下余白をタイトに */
}

/* セクション区切り */
.section-band {
    background: #f7f9fe;
    /* ほぼ白に近い */
    /* padding: clamp(36px, 7vh, 72px) 0; */
    box-shadow:
        inset 0 1px 0 rgba(36, 56, 99, .14),
        /* 上に筋 */
        inset 0 -1px 0 rgba(255, 255, 255, .85);
    /* 下にハイライト */
}





.site-heading {
    font-family: 'montserrat', sans-serif;
    font-weight: 600;
    /* 最も太いウェイト（ブラウザが対応する範囲で最大） */
    font-size: 2rem;
    color: #327ace;
}

/* メインビジュアル */
.main-visual {
    background-image: url(../img/main.jpg);
    background-size: cover;
}

/* 見出し下ライン */
.heading-underline {
    position: relative;
    padding: 0.25em 0;
}

.heading-underline:after {
    content: "";
    display: block;
    height: 4px;
    background: -webkit-linear-gradient(to right, rgb(115, 141, 255), #b2beff);
    background: linear-gradient(to right, rgb(115, 141, 255), #b2beff);
}

.neu-title {
    text-align: center;
    font-size: 1.6rem;
    position: relative;
}

.neu-title::after {
    content: "";
    display: block;
    width: 10rem;
    height: 4px;
    margin: .5rem auto 0;
    border-radius: 2px;
    background: #fff;
    box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.15),
        -2px -2px 4px rgba(255, 255, 255, 0.8);
}

.neumorphism-wh {
    padding: 1.5em 0.5em;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, .035);
    /* ほぼ見えない細線 */
    border-radius: .75rem;
    color: #444;
    font-size: 1rem;
    letter-spacing: .2rem;
    text-align: center;
    outline: none;
    box-shadow:
        -12px -12px 24px rgba(36, 56, 99, .08),
        /* 上・左方向の影 */
        12px 12px 24px rgba(36, 56, 99, .10);
    /* 下・右方向の影 */

    transition: box-shadow .2s ease, transform .2s ease;
}

.neu-service {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, .035);
    /* ほぼ見えない細線 */
    border-radius: .9rem;
    box-shadow:
        -12px -12px 24px rgba(36, 56, 99, .08),
        /* 上・左方向の影 */
        12px 12px 24px rgba(36, 56, 99, .10);
    /* 下・右方向の影 */

    transition: box-shadow .2s ease, transform .2s ease;
    letter-spacing: 0;
}

/* タイトルだけは少し強調（字間は見出しへ） */
.neu-service h3 {
    margin-bottom: .75rem;
    padding-bottom: .5rem;
    position: relative;
}

.neu-service h3::after {
    content: "";
    position: absolute;
    left: 10%;
    right: 10%;
    bottom: -.1rem;
    height: 1px;
    box-shadow: inset 0 1px 0 rgba(36, 56, 99, .10);
}

.neu-subtitle {
    font-size: 1.0rem;
    font-weight: 600;
    color: #327ace;
    /* 落ち着いた青 */
    text-align: center;
    margin: .5rem 0 1rem;
    /* タイトルと本文の間に余白 */
    position: relative;
    padding-bottom: .5rem;
}

.service-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    margin: 0 auto;
    /* 下に余白を追加 */
    border-radius: 16px;
    background: #fff;

    color: #6c757d;
    /* グレー系（Bootstrapのtext-secondary相当） */
    font-size: 3rem;
}

/* News */
.news-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 12px;
    grid-template-columns: 1fr;
}

@media (min-width:768px) {
    .news-list {
        grid-template-columns: 1fr 1fr;
    }
}

.news-card {
    background: #fff;
    border-radius: 14px;
    padding: 1rem 1.25rem;
    border: 1px solid rgba(0, 0, 0, .035);
    box-shadow: -8px -8px 18px rgba(255, 255, 255, .95), 14px 14px 28px rgba(36, 56, 99, .12);
    display: flex;
    gap: .75rem;
    align-items: flex-start;
}

.news-date {
    flex: 0 0 auto;
    color: #274372;
    font-weight: 700;
    letter-spacing: .02em;
}

.news-link {
    color: #0c49ff;
    text-decoration: none;
}

.news-link:hover {
    text-decoration: underline;
}

/* CTA glass */
.cta-glass {
    background: rgba(255, 255, 255, .65);
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(36, 56, 99, .15), inset 0 1px 0 rgba(255, 255, 255, .6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.btn-glass-primary {
    background: linear-gradient(135deg, #4da0ff, #005eff);
    color: #fff;
    border: none;
    border-radius: 999px;
    box-shadow: 0 10px 20px rgba(12, 73, 255, .20);
}

.btn-glass-primary:hover {
    filter: brightness(1.05);
}

.btn-glass-secondary {
    background: #fff;
    color: #274372;
    border: 2px solid rgba(0, 0, 0, .035);
    /* ほぼ見えない細線 */
    border-radius: 999px;
    box-shadow: -6px -6px 14px rgba(255, 255, 255, .95), 8px 8px 16px rgba(36, 56, 99, .12);
}

.btn-glass-secondary:hover {
    filter: brightness(1.02);
}

/* Back to top */
.back-to-top {
    position: fixed;
    right: 16px;
    bottom: 16px;
    z-index: 1040;
    width: 44px;
    height: 44px;
    border-radius: 999px;
    border: 0;
    background: #fff;
    color: #0c49ff;
    cursor: pointer;
    display: none;
    box-shadow: 0 10px 24px rgba(36, 56, 99, .18);
}

.back-to-top:hover {
    filter: brightness(1.03);
}

.btn-disabled {
    pointer-events: none;
    /* クリックできない */
    opacity: .6;
    /* 半透明に */
    cursor: not-allowed;
    /* 禁止カーソル */
    box-shadow: none !important;
    /* 立体感を消す */
}

.back-to-top {
    position: fixed;
    right: 16px;
    bottom: 16px;
    z-index: 1040;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: none;
    background: #fff;
    color: #0c49ff;
    /* ブルー系でブランドカラー */
    font-size: 2rem;
    /* アイコンを大きめに */
    display: none;
    /* 初期は非表示 */
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 6px 18px rgba(36, 56, 99, .2);
    transition: transform .2s ease, box-shadow .2s ease;
}

.back-to-top:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(36, 56, 99, .28);
}