@charset "UTF-8";

/* color palette (Napkin AI配色データ / assets/colordata.txt)
--------------------------------------------------- */
:root {
    --color-text: #484848;
    --color-heading: #1a1a1a;
    --color-charcoal: #2c2c2c;
    --color-muted: #969696;
    --color-bg: #ffffff;
    --color-bg-alt: #f7f7f7;
    --color-border: #e5eaef;
    --color-brand: #ffe70a;
    --color-brand-strong: #edd711;
    --color-accent-purple: #cb6afb;
    --color-accent-purple-variant: #b960e2;
    --color-accent-green: #81cf33;
    --color-accent-orange: #f99539;
    --color-accent-blue: #1ac6ff;
    --color-accent-blue-tint: #e8f9ff;
    --color-brand-tint: #fdfbe8;
    --color-accent-purple-tint: #faf0fe;
    --color-accent-green-tint: #f2faea;
}

/* reset
--------------------------------------------------- */
*,*::before,*::after{box-sizing:border-box}body,h1,h2,h3,h4,p,figure,blockquote,dl,dd{margin:0}ul,ol,li{margin:0;padding:0;list-style:none}html{scroll-behavior:smooth}body{min-height:100vh;text-rendering:optimizeSpeed;line-height:1.5}a:not([class]){text-decoration-skip-ink:auto}img,picture{max-width:100%;display:block}input,button,select,textarea{-webkit-appearance:none;-moz-appearance:none;appearance:none;background:transparent;border:none;border-radius:0;font:inherit;outline:none}textarea{resize:vertical}input[type='checkbox'],input[type='radio']{display:none}input[type='submit'],input[type='button'],label,button,select{cursor:pointer}select::-ms-expand{display:none}

/* layout
--------------------------------------------------- */
html {
    height: 100%;
    font-size: 62.5%;
    overflow-x: hidden;
}
body {
    height: 100%;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    font-size: 1.4rem;
    line-height: 2;
    text-align: justify;
    overflow-x: hidden;
    overflow-y: scroll;
    color: #484848;
    background-color: #fff;
}
.font-min { font-family: 'Noto Sans JP', sans-serif; }
.font-mont { font-family: 'Montserrat', sans-serif; font-weight: 300; }
h1,h2,h3,h4,h5 { font-size: 100%; font-weight: normal; }
a { display: block; text-decoration: none; }
/* リンク・ボタン共通のホバー演出（個別にhover指定がある場合はそちらが優先される） */
a, button {
    transition: opacity .35s ease;
}
a:hover, button:hover {
    opacity: .5;
}
#wrapper {
    position: relative;
    width: 100%;
    min-width: 320px;
    height: auto !important;
    height: 100%;
    min-height: 100%;
    margin: auto;
}
@media screen and (min-width: 768px) {
    body { font-size: 1.5rem; }
}
@media screen and (min-width: 1024px) {
    body { font-size: 1.9rem; }
}

/* header
--------------------------------------------------- */
.header {
    z-index: 94;
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    transition: .3s;
}
.header.scroll { background-color: #fff; border-bottom: 1px solid #e5e5e5; }
.contents-header { background-color: #fff; border-bottom: 1px solid #e5e5e5; }
.header-inner {
    z-index: 95;
    display: flex;
    position: relative;
    width: 100%;
}

/* ロゴ（テキストベース）
--------------------------------------------------- */
.header-inner .logo {
    z-index: 96;
    position: relative;
    width: auto;
    min-width: 200px;
    height: 60px;
    display: flex;
    align-items: center;
}
.header-inner .logo .img {
    display: block;
    height: 60px;
    padding: 0 15px;
    overflow: hidden;
}
.header-inner .logo a {
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
}
.logo-mark {
    width: 40px;
    height: 40px;
    margin-right: 10px;
    flex-shrink: 0;
}
@media screen and (min-width: 1024px) {
    .logo-mark { width: 56px; height: 56px; margin-right: 14px; }
}
.debug-size {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    position: absolute;
    right: 0;
    top: 100%;
    padding: 4px 10px;
    font-size: 1.1rem;
    font-family: monospace;
    line-height: 1.4;
    white-space: nowrap;
    color: #fff;
    background-color: #455a64;
    border-radius: 4px;
    pointer-events: none;
}
.header.scroll .debug-size,
.contents-header .debug-size {
    color: #fff;
}
.logo-text-wrap {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}
.logo-en {
    font-size: 1.1rem;
    letter-spacing: .12em;
    text-indent: .12em;
    color: #fff;
    transition: color .3s;
}
.logo-jp {
    font-size: 1.4rem;
    font-weight: bold;
    font-family: 'Noto Sans JP', sans-serif;
    letter-spacing: .05em;
    color: #fff;
    transition: color .3s;
    white-space: nowrap;
}
.top-header:not(.scroll) .logo-en,
.top-header:not(.scroll) .logo-jp {
    text-shadow: 0 1px 4px rgba(0, 0, 0, .85), 0 4px 14px rgba(0, 0, 0, .55), 0 8px 30px rgba(0, 0, 0, .35);
}
.header.scroll .logo-en,
.header.scroll .logo-jp,
.contents-header .logo-en,
.contents-header .logo-jp {
    color: #5a6ba8;
}
@media screen and (min-width: 1024px) {
    .header-inner .logo {
        height: 80px;
        min-width: 260px;
    }
    .header-inner .logo .img {
        height: 80px;
    }
    .logo-en { font-size: 1.2rem; }
    .logo-jp { font-size: 1.6rem; }
}

/* ハンバーガーメニュー
--------------------------------------------------- */
.menu-btn {
    z-index: 99;
    position: absolute;
    top: 0;
    right: 15px;
    width: 44px;
    height: 60px;
    cursor: pointer;
}
.menu-btn span {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 24px;
    height: 1px;
    background: #fff;
    transform: translate(-50%, -50%);
    transition: transform .3s, opacity .3s, background-color .3s;
}
.header.scroll .menu-btn span,
.contents-header .menu-btn span { background-color: #242424; }
.menu-btn span:nth-of-type(1) { margin-top: -6px; }
.menu-btn span:nth-of-type(3) { margin-top: 6px; }
.menu-btn.active span { background: #fff; }
.header.scroll .menu-btn.active span { background: #fff; }
.menu-btn.active span:nth-of-type(1) { margin-top: 0; transform: translate(-50%, -50%) rotate(45deg); }
.menu-btn.active span:nth-of-type(2) { opacity: 0; }
.menu-btn.active span:nth-of-type(3) { margin-top: 0; transform: translate(-50%, -50%) rotate(-45deg); }

/* グローバルナビ
--------------------------------------------------- */
.g-navi-wrap {
    z-index: 98;
    display: block;
    position: fixed;
    top: 0;
    right: -100vw;
    width: 300px;
    height: 100%;
    transition: right .2s;
    background-color: #242424;
}
.g-navi-wrap.open { right: 0; overflow-y: auto; }
.g-navi { position: relative; width: 100%; }
.g-navi ul { display: flex; flex-wrap: wrap; padding-top: 80px; }
.g-navi ul li { width: 100%; border-bottom: 1px solid #444; }
.g-navi ul li a { padding: 16px 20px; font-size: 1.6rem; font-weight: normal; line-height: 1.2; color: #fff; }
.g-navi ul li ul {
    display: block;
    padding-top: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease;
}
.g-navi ul li ul li { display: block; }
.g-navi ul li.active ul {
    max-height: 600px;
    background-color: #242424;
}
.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.5);
    z-index: 97;
}
.overlay.active { display: block; }

@media screen and (max-width: 1023px) {
    .g-navi ul li.pc-has-child > a {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .g-navi ul li.pc-has-child > a::after {
        content: "";
        flex-shrink: 0;
        width: 8px;
        height: 8px;
        margin-right: 6px;
        border-right: 2px solid #fff;
        border-bottom: 2px solid #fff;
        transform: rotate(45deg);
        transition: transform .3s;
    }
    .g-navi ul li.pc-has-child.active > a::after { transform: rotate(-135deg); }
    .g-navi ul li ul li a {
        padding-left: 40px;
        font-size: 1.4rem;
        background-color: rgba(255, 255, 255, .04);
    }
}

@media screen and (min-width: 1024px) {
    .header { padding: 0 40px; }
    .menu-btn { display: none; }
    .g-navi-wrap {
        position: absolute;
        top: 0;
        right: 0;
        width: calc(100% - 260px);
        height: 80px;
        overflow: visible;
        background-color: transparent;
    }
    .g-navi ul { padding: 0; justify-content: flex-end; }
    .g-navi ul li { width: auto; border-bottom: 0; }
    .g-navi ul li a { padding: 0 0 0 15px; height: 80px; line-height: 80px; font-size: 1.8rem; color: #fff; }
    .top-header:not(.scroll) .g-navi ul li a {
        text-shadow: 0 1px 4px rgba(0, 0, 0, .85), 0 4px 14px rgba(0, 0, 0, .55), 0 8px 30px rgba(0, 0, 0, .35);
    }
    .header.scroll .g-navi ul li a,
    .contents-header .g-navi ul li a { color: #5a6ba8; }
    .g-navi ul li.pc-has-child { position: relative; }
    .g-navi ul li.pc-has-child > ul {
        position: absolute;
        top: 80px;
        left: 0;
        z-index: 100;
        height: auto;
        max-height: none;
        overflow: visible;
        background-color: rgba(90, 107, 168, .92);
        -webkit-backdrop-filter: blur(6px);
        backdrop-filter: blur(6px);
        display: none;
        width: auto;
        min-width: 200px;
    }
    .g-navi ul li.pc-has-child:hover > ul { display: block; }
    .g-navi ul li ul li { width: 100%; }
    .g-navi ul li ul li a,
    .header.scroll .g-navi ul li ul li a,
    .contents-header .g-navi ul li ul li a { height: 50px; line-height: 50px; padding: 0 20px; white-space: nowrap; color: #fff; transition: background-color .2s, color .2s; }
    .g-navi ul li ul li a:hover,
    .header.scroll .g-navi ul li ul li a:hover,
    .contents-header .g-navi ul li ul li a:hover { background-color: rgba(255, 255, 255, .12); opacity: 1; }
}
@media screen and (min-width: 1280px) {
    .g-navi ul li a { padding: 0 15px; }
}

/* contents
--------------------------------------------------- */
.contents {
    z-index: 50;
    position: relative;
    width: 100%;
    margin-top: -60px;
    overflow: hidden;
}
@media screen and (min-width: 1024px) {
    .contents { margin-top: -80px; }
}
.contents-inner {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}
@media screen and (min-width: 1280px) {
    .contents-inner {
        max-width: 1200px;
        margin: auto;
        padding: 0;
    }
}

/* contents-main（サイドバーなし・全幅）
--------------------------------------------------- */
.contents-main {
    position: relative;
    width: 100%;
}
.contents-main-full {
    width: 100%;
    padding: 0;
}
@media screen and (min-width: 1024px) {
    .contents-main-full {
        width: 100%;
        padding: 15px 0;
    }
}
@media screen and (min-width: 1280px) {
    .contents-main-full {
        padding: 40px 0;
    }
}
.home .contents-main-full { padding-bottom: 0; }

/* footer
--------------------------------------------------- */
.footer {
    position: relative;
    width: 100%;
    overflow: hidden;
    background-color: #5f6d89;
}

/* footer-inner
--------------------------------------------------- */
.footer-inner {
    display: flex;
    flex-wrap: wrap;
    position: relative;
    width: 100%;
    height: 100%;
}
@media screen and (min-width: 768px) {
    .pc-footer-inner {
        width: 100%;
        max-width: 950px;
        margin: auto;
        padding: 25px;
        font-size: 1.3rem;
    }
}
@media screen and (min-width: 1024px) {
    .pc-footer-inner { max-width: 950px; padding: 40px 0; }
}
@media screen and (min-width: 1280px) {
    .pc-footer-inner { max-width: 1200px; padding: 60px 40px; font-size: 1.4rem; }
}

/* フッター上段（ロゴ・テーマ）
--------------------------------------------------- */
.footer-top {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 20px;
    padding: 30px 20px 0;
}
@media screen and (min-width: 768px) {
    .footer-top {
        flex-direction: row;
        align-items: flex-start;
        justify-content: space-between;
        padding: 0 0 30px;
        border-bottom: 1px solid rgba(255, 255, 255, .25);
    }
}

/* フッターロゴ
--------------------------------------------------- */
.footer-logo a {
    display: flex;
    align-items: center;
}
.footer-contact {
    margin-top: 18px;
    padding-left: 44px;
}
.footer-contact-office {
    font-size: 1.3rem;
    line-height: 1.7;
    color: rgba(248, 250, 255, .94);
}
.footer-contact-link {
    display: inline-flex;
    align-items: center;
    margin-top: 8px;
    font-size: 1.3rem;
    line-height: 1.5;
    color: #f8faff;
    text-decoration: underline;
    text-decoration-color: rgba(248, 250, 255, .55);
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}
.footer-logo-mark {
    width: 32px;
    height: 32px;
    margin-right: 12px;
    flex-shrink: 0;
}
.footer-logo-text-wrap {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}
.footer-logo-en {
    font-size: 1.1rem;
    letter-spacing: .1em;
    color: rgba(248, 250, 255, .78);
}
.footer-logo-jp {
    font-size: 1.5rem;
    font-weight: bold;
    font-family: 'Noto Sans JP', sans-serif;
    letter-spacing: .05em;
    color: #f8faff;
    white-space: nowrap;
}

/* フッタークラブテーマ
--------------------------------------------------- */
.footer-clubtheme .year {
    text-align: center;
    font-size: 1.2rem;
    color: rgba(248, 250, 255, .78);
}
.footer-clubtheme .theme-text {
    font-size: 2rem;
    font-weight: 400;
    letter-spacing: .1em;
    color: #f8faff;
    margin-top: 5px;
}
.footer-clubtheme .theme-jp {
    font-size: 1.3rem;
    margin-top: 3px;
    color: rgba(248, 250, 255, .9);
}
@media screen and (min-width: 768px) {
    .footer-clubtheme .year { text-align: right; }
}

/* フッターナビ（カラム）
--------------------------------------------------- */
.footer-columns {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 30px;
    padding: 30px 20px;
}
.footer-column-title {
    margin-bottom: 14px;
    padding-bottom: 8px;
    border-bottom: 2px solid rgba(248, 250, 255, .72);
    color: #f8faff;
    font-size: 1.3rem;
    font-weight: bold;
    letter-spacing: .05em;
}
.footer-column ul li + li { margin-top: 10px; }
.footer-column ul li a {
    color: rgba(248, 250, 255, .92);
    font-size: 1.3rem;
    line-height: 1.5;
}
@media screen and (min-width: 768px) {
    .footer-columns {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 30px 20px;
        padding: 30px 0 0;
    }
    .footer-column { flex: 1 1 160px; }
}

/* footer copy
--------------------------------------------------- */
.footer p.copy {
    width: 100%;
    padding: 18px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 90%;
    font-weight: 400;
    color: #f5f7fb;
    background-color: #48546f;
    border-top: 1px solid rgba(255, 255, 255, .18);
}
.footer p.copy .copy-logo {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}
@media screen and (max-width: 767px) {
    .footer-contact {
        padding-left: 0;
    }
    .footer p.copy {
        padding: 18px 20px calc(18px + env(safe-area-inset-bottom));
        line-height: 1.6;
    }
    .page-top {
        bottom: 88px;
    }
}

/* page top
--------------------------------------------------- */
.page-top {
    z-index: 90;
    position: fixed;
    bottom: 40px;
    right: 15px;
    width: 50px;
    height: 50px;
    padding: 10px;
    background: #f5a800;
    border-radius: 100%;
    cursor: pointer;
    transition: background-color .35s, transform .35s;
}
.page-top:hover {
    background: #ffbd59;
    transform: translateY(-4px);
}
.page-top::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 12px;
    height: 12px;
    margin-top: 1px;
    border-top: 2px solid #fff;
    border-left: 2px solid #fff;
    transform: translate(-50%, -50%) rotate(45deg);
}
#js-page-top { opacity: 0; pointer-events: none; transition: .2s; }
#js-page-top.active { opacity: 1; pointer-events: auto; }
@media screen and (min-width: 768px) {
    .page-top { right: 20px; }
}
@media screen and (min-width: 1280px) {
    .page-top { right: 40px; }
}

/* visual
--------------------------------------------------- */
.visual {
    z-index: 1;
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background: #eee;
}
.visual::before {
    z-index: 1;
    content: "";
    position: absolute;
    top: 0;
    left: 30%;
    width: 0;
    height: 100%;
    background: #2d100f;
    animation-name: visualBg;
    animation-duration: .5s;
    animation-fill-mode: forwards;
    animation-timing-function: cubic-bezier(.8,0,.5,1);
}
@keyframes visualBg {
    0% { width: 0; }
    99.9%,to { width: 70%; }
}
.visual-inner {
    z-index: 2;
    position: relative;
    width: 100%;
    height: 100%;
}

/* slider
--------------------------------------------------- */
.mv-slider {
    z-index: 2;
    position: relative;
    width: 100%;
    height: 92%;
    background-color: #222;
}
.mv-slider .hero-slider {
    z-index: 3;
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.mv-slider .hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0;
    pointer-events: none;
    transition: opacity 1s ease;
}
.mv-slider .hero-slide.is-active {
    z-index: 2;
    opacity: 1;
    pointer-events: auto;
}
.mv-slider .slider-image {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.mv-slider .slider-image::before {
    z-index: 3;
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-color: rgba(0,0,0,0);
}
.mv-slider .slider-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 50%;
    transform: scale(1);
    will-change: transform;
}
@media screen and (min-width: 1024px) {
    .mv-slider { width: 100%; height: 100%; }
}

/* visual text / scrolldown / top-info
--------------------------------------------------- */
.visual-inner .text {
    z-index: 4;
    position: absolute;
    bottom: 180px;
    left: 50%;
    width: 100%;
    color: #fff;
    transform: translate(-50%, 0);
    overflow: visible;
    text-align: left;
}
.visual-inner .text span { display: block; width: fit-content; line-height: 1.3; }
.visual-inner .text span.catch-en {
    position: relative;
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    padding: 0 25px;
    font-size: 2rem;
    letter-spacing: .05em;
    text-indent: .05em;
    text-shadow: 0 1px 4px rgba(0, 0, 0, .85), 0 4px 14px rgba(0, 0, 0, .55), 0 8px 30px rgba(0, 0, 0, .35);
}
.visual-inner .text span.catch-jp {
    position: relative;
    margin-top: 12px;
    padding: 0 25px;
}
.visual-inner .text span.catch-jp-label {
    position: relative;
    z-index: 1;
    font-size: clamp(1.3rem, 7.4vw, 2.2rem);
    font-weight: bold;
    letter-spacing: .05em;
    text-indent: .05em;
    white-space: nowrap;
    text-shadow: 0 1px 4px rgba(0, 0, 0, .85), 0 4px 14px rgba(0, 0, 0, .55), 0 8px 30px rgba(0, 0, 0, .35);
    opacity: 0;
    transform: translateY(24px);
    animation: hero-jp-fade-up .6s cubic-bezier(.2, .8, .2, 1) 1.8s forwards;
}
.visual-inner .text span.catch-jp-brush-bg {
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    width: 156%;
    height: auto;
    aspect-ratio: 432 / 288;
    overflow: visible;
    transform: translate(-50%, -50%) rotate(7deg) scaleY(.52);
    pointer-events: none;
}
.catch-jp-brush-bg svg {
    display: block;
    width: 100%;
    height: 100%;
}
.catch-jp-brush-bg .hero-brush-path {
    stroke-dasharray: 5000;
    stroke-dashoffset: 5000;
    animation: hero-jp-brush-draw 2s linear 1.8s forwards;
}
.catch-jp-brush-bg .hero-brush-fill {
    opacity: 0;
    animation: hero-jp-brush-fill-in .45s ease 2.05s forwards;
}
@keyframes hero-jp-fade-up {
    to { opacity: 1; transform: translateY(0); }
}
@keyframes hero-jp-brush-draw {
    to { stroke-dashoffset: 0; }
}
@keyframes hero-jp-brush-fill-in {
    to { opacity: 1; }
}
.visual-inner .text span.catch-en-type {
    display: flex;
    align-items: center;
    column-gap: .3em;
}
.visual-inner .text span.catch-en-row2 {
    display: flex;
    align-items: center;
    column-gap: .08em;
}
.visual-inner .text span.catch-en-line {
    display: block;
    clip-path: inset(0 100% 0 0);
}
.catch-en-line1 { animation: hero-en-type 1s steps(14, end) .3s forwards; }
.catch-en-line2 { animation: hero-en-type .45s steps(6, end) 1.3s forwards; }
@keyframes hero-en-type {
    to { clip-path: inset(0 0% 0 0); }
}
.visual-inner .text span.catch-en-caret {
    display: inline-block;
    width: .07em;
    height: .9em;
    vertical-align: -.05em;
    background: #fff;
    opacity: 0;
    animation: hero-en-caret-blink .5s steps(1, end) .3s 4;
}
@keyframes hero-en-caret-blink {
    0%, 50% { opacity: 1; }
    50.01%, 100% { opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
    .visual-inner .text span.catch-jp { animation: none; opacity: 1; transform: none; }
    .catch-jp-brush-bg .hero-brush-path { animation: none; stroke-dashoffset: 0; }
    .catch-jp-brush-bg .hero-brush-fill { animation: none; opacity: 1; }
}
.scrolldown {
    z-index: 4;
    position: absolute;
    bottom: 100px;
    left: 50%;
    padding-bottom: 10px;
    color: #fff;
    font-size: 1.1rem;
    font-weight: bold;
    letter-spacing: .1em;
    text-indent: .1em;
    transform: translate(-50%, 0);
    text-align: center;
    text-shadow: 0 1px 4px rgba(0, 0, 0, .85), 0 4px 14px rgba(0, 0, 0, .55), 0 8px 30px rgba(0, 0, 0, .35);
}
.scrolldown::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 6px;
    height: 6px;
    border-bottom: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: translate(-50%, 0) rotate(45deg);
    filter: drop-shadow(0 1px 3px rgba(0, 0, 0, .85)) drop-shadow(0 4px 10px rgba(0, 0, 0, .5));
}
.top-info {
    z-index: 5;
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 12px;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
}
.top-info h3,
.top-info p {
    display: block;
    width: 260px;
    flex: 0 0 auto;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, .28);
    backdrop-filter: blur(6px) saturate(160%);
    -webkit-backdrop-filter: blur(6px) saturate(160%);
    overflow: hidden;
}
.top-info h3 { background-color: rgba(0, 36, 108, .65); }
.top-info p { background-color: rgba(245, 168, 0, .65); }
.top-info p.top-info-report { background-color: rgba(0, 0, 0, .65); }
.top-info h3 a,
.top-info p a {
    display: block;
    position: relative;
    color: #fff;
    text-decoration: none;
}
.top-info h3 span,
.top-info p span {
    display: block;
    width: 100%;
    height: 50px;
    line-height: 50px;
    padding: 0 32px 0 15px;
    text-align: center;
    font-size: 1.6rem;
    letter-spacing: .05em;
    transition: background-color .35s;
}
.top-info h3 a::after,
.top-info p a::after {
    content: "";
    position: absolute;
    right: 15px;
    top: 50%;
    width: 7px; height: 7px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: translateY(-50%) rotate(45deg);
    transition: transform .3s;
}
.top-info h3 a:hover::after,
.top-info p a:hover::after {
    transform: translateY(-50%) rotate(45deg) translate(2px, -2px);
}
.top-info h3 a:hover span,
.top-info p a:hover span {
    background-color: rgba(255, 255, 255, .14);
}
.rc-program-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 998;
    background-color: rgba(0, 0, 0, .7);
}
.rc-program-overlay.is-open { display: block; }
.rc-program-panel {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 999;
    width: 1200px;
    max-width: 92vw;
    max-height: 90vh;
    overflow-y: auto;
    padding: 14px;
    border-radius: 6px;
    background-color: #fff;
    box-shadow: 0 8px 30px rgba(0, 0, 0, .3);
}
.rc-program-panel.is-open { display: block; }
.rc-program-panel__close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    margin: 0 0 10px auto;
    border-radius: 50%;
    background-color: #f0f0f0;
    color: #333;
    font-size: 1.8rem;
    line-height: 1;
}
.rc-program-panel__body { display: flex; flex-direction: column; align-items: center; gap: 10px; }
.rc-program-panel__body img {
    display: block;
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 80vh;
    margin: 0 auto;
    border-radius: 4px;
}
.rc-program-panel__body img:not([src]),
.rc-program-panel__body img[src=""] { display: none; }
@media screen and (max-width: 1023px) {
    .mv-slider { height: 100%; }
}
@media screen and (max-width: 767px) {
    .hero-center {
        z-index: 4;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }
    .visual-inner .text {
        position: static;
        width: fit-content;
        max-width: 90%;
        transform: none;
        text-align: center;
    }
    .visual-inner .text span.catch-en,
    .visual-inner .text span.catch-jp {
        margin-left: auto;
        margin-right: auto;
    }
    .visual-inner .text span.catch-en {
        font-size: clamp(1.3rem, 7vw, 2.2rem);
        flex-wrap: nowrap;
        white-space: nowrap;
    }
    .visual-inner .text span.catch-jp-label {
        font-size: clamp(1rem, 4.5vw, 1.4rem);
    }
    .top-info {
        position: static;
        width: 100%;
        flex-direction: column;
        flex-wrap: nowrap;
        align-items: center;
        gap: 20px;
    }
    .scrolldown {
        bottom: 16px;
    }
}
@media screen and (min-width: 768px) {
    .visual-inner .text .sp-only { display: none; }
    .visual-inner .text {
        bottom: inherit;
        top: 50%;
        transform: translate(-50%, -50%);
        text-align: center;
    }
    .visual-inner .text span.catch-en { margin-left: auto; margin-right: auto; font-size: 6rem; color: #fff; }
    .visual-inner .text span.catch-jp { margin-left: auto; margin-right: auto; font-size: 1.8rem; margin-top: 20px; }
    .scrolldown { bottom: 200px; padding-bottom: 30px; }
    .scrolldown::before { width: 10px; height: 10px; }
    .top-info { bottom: 0; left: 50%; max-width: 1080px; transform: translate(-50%, 0); flex-wrap: wrap; row-gap: 12px; }
    .top-info h3,
    .top-info p { width: 320px; }
    .top-info h3 span,
    .top-info p span { height: 60px; line-height: 60px; padding: 0 40px 0 20px; font-size: 1.8rem; }
    .top-info h3 a::after,
    .top-info p a::after { right: 20px; }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
    .visual-inner .text span.catch-en-type {
        flex-direction: column;
        column-gap: 0;
        row-gap: 4px;
    }
    .visual-inner .text span.catch-en-row2 {
        justify-content: center;
    }
}
@media screen and (min-width: 1024px) {
    .visual-inner .text { top: 50%; transform: translate(-50%, -50%); }
    .visual-inner .text span.catch-en { font-size: 6rem; }
    .visual-inner .text span.catch-jp { font-size: 1.8rem; letter-spacing: .1em; text-indent: .1em; }
    .scrolldown { bottom: 180px; padding-bottom: 20px; }
    .top-info { bottom: 50px; left: 50%; max-width: 950px; transform: translate(-50%, 0); flex-wrap: nowrap; }
}
@media screen and (min-width: 768px) and (max-height: 750px) {
    .scrolldown { display: none; }
}
@media screen and (min-width: 1280px) {
    .top-info { max-width: 1000px; }
    .visual-inner .text span.catch-en { font-size: 7.5rem; color: #fff; }
    .visual-inner .text span.catch-jp { margin-top: 25px; font-size: 3rem; font-weight: bold; letter-spacing: .2em; text-indent: .2em; }
}
@media (prefers-reduced-motion: reduce) {
    .visual-inner .text span.catch-en-line { animation: none; clip-path: inset(0 0% 0 0); }
    .visual-inner .text span.catch-en-caret { display: none; }
}

/* charity section
--------------------------------------------------- */
.charity_section {
    width: 100%;
    position: relative;
    padding: 80px 20px;
    background-image: url('../images/charity-bg.webp');
    background-size: cover;
    background-position: center 30%;
    overflow: hidden;
}
.charity_section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(8, 12, 45, .83) 0%, rgba(12, 18, 60, .78) 100%);
}
.charity_section .charity_inner {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
}
.charity_section .charity_head {
    text-align: center;
    margin-bottom: 40px;
}
.charity_section .charity_head::before {
    content: "";
    display: block;
    width: 44px;
    height: 2px;
    background: linear-gradient(90deg, #FFE08A, #FFBD59);
    margin: 0 auto 22px;
    border-radius: 2px;
}
.charity_section .charity_head .charity_label {
    font-size: 1.3rem;
    color: rgba(200, 220, 255, .92);
    letter-spacing: .08em;
    margin-bottom: 12px;
    font-weight: 700;
    line-height: 1.6;
}
.charity_section .charity_head .charity_h2 {
    font-size: 2.2rem;
    font-weight: 700;
    background: linear-gradient(90deg, #FFE08A, #FFBD59);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.5;
}
.charity_section .charity_body {
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
    gap: 30px;
    width: 100%;
    margin-bottom: 40px;
}
.charity_section .charity_body .charity_text { width: 100%; }
.charity_section .charity_body .charity_balloon {
    position: relative;
    background: rgba(255, 255, 255, .10);
    border: 1px solid rgba(255, 255, 255, .28);
    border-radius: 12px;
    padding: 20px 22px;
    margin-bottom: 4px;
}
.charity_section .charity_body .charity_balloon::before {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    border: 0;
    border-left: 11px solid transparent;
    border-right: 11px solid transparent;
    border-bottom: 14px solid rgba(255, 255, 255, .40);
    z-index: 1;
}
.charity_section .charity_body .charity_balloon::after {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    top: -11px;
    left: 50%;
    transform: translateX(-50%);
    border: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 11px solid rgba(8, 12, 45, .90);
    z-index: 2;
}
.charity_section .charity_body .charity_balloon p {
    font-size: 1.6rem;
    color: rgba(255, 255, 255, .90);
    line-height: 2.1;
}
.charity_section .charity_body .charity_img_wrap {
    text-align: center;
    flex-shrink: 0;
}
.charity_section .charity_body .charity_img_wrap img {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    object-fit: cover;
    background-color: #c8d0e0;
    border: 3px solid rgba(255, 255, 255, .35);
    box-shadow: 0 8px 30px rgba(0, 0, 0, .55);
}
.charity_section .charity_body .charity_img_wrap .charity_caption {
    margin-top: 12px;
    font-size: 1.3rem;
    color: rgba(255, 255, 255, .68);
    line-height: 1.8;
}
.charity_section .charity_info {
    margin-top: 28px;
    display: flex;
    flex-flow: column nowrap;
    gap: 16px;
}
.charity_section .charity_info .charity_info_item {
    display: flex;
    flex-flow: row nowrap;
    gap: 14px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, .15);
}
.charity_section .charity_info .charity_info_item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}
.charity_section .charity_info .charity_info_item dt {
    display: flex;
    align-items: center;
    flex: none;
    width: 140px;
    font-size: 1.4rem;
    font-weight: 700;
    color: #FFE08A;
    line-height: 1.8;
    letter-spacing: .04em;
}
.charity_section .charity_info .charity_info_item dt::before {
    content: "";
    display: inline-block;
    width: 8px;
    height: 8px;
    margin-right: 10px;
    border: 2px solid #FFE08A;
    background: transparent;
    transform: rotate(45deg);
    flex-shrink: 0;
}
.charity_section .charity_info .charity_info_item dd {
    flex: 1;
    font-size: 1.5rem;
    color: rgba(255, 255, 255, .88);
    line-height: 1.9;
}
.charity_section .charity_info .charity_info_sub {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, .62);
}
.charity_section .charity_info .charity_map {
    margin-top: 12px;
    border-radius: 8px;
    overflow: hidden;
    height: 180px;
}
.charity_section .charity_info .charity_map iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
    filter: brightness(.9) saturate(.85);
}
.charity_section .charity_info .charity_price {
    font-size: 2rem;
    font-weight: 700;
    color: #FFE08A;
    letter-spacing: .02em;
}
.charity_section .charity_btn_wrap .charity_btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 40px;
    background: linear-gradient(90deg, #FFE08A, #FFBD59);
    color: #1a1a2e;
    border-radius: 4px;
    font-size: 1.5rem;
    font-weight: 700;
    transition: all .35s ease-in-out;
}
.charity_section .charity_btn_wrap .charity_btn::after {
    content: "";
    flex-shrink: 0;
    width: 8px;
    height: 8px;
    border-top: 2px solid currentColor;
    border-right: 2px solid currentColor;
    transform: rotate(45deg);
}
.charity_section .charity_btn_wrap .charity_btn:hover {
    opacity: .88;
    transform: translateY(-2px);
    box-shadow: 0 6px 22px rgba(255, 189, 89, .45);
}
@media screen and (min-width: 768px) {
    .charity_section { background-attachment: fixed; }
    .charity_section .charity_body { flex-flow: row-reverse nowrap; align-items: flex-start; gap: 40px; }
    .charity_section .charity_body .charity_text { flex: 1; }
    .charity_section .charity_body .charity_img_wrap { flex: none; width: 180px; }
    .charity_section .charity_body .charity_balloon::before {
        top: 21px; left: auto; right: -15px; transform: none;
        border-left: 15px solid rgba(255, 255, 255, .40);
        border-top: 11px solid transparent; border-bottom: 11px solid transparent; border-right: none;
    }
    .charity_section .charity_body .charity_balloon::after {
        top: 24px; left: auto; right: -12px; transform: none;
        border-left: 12px solid rgba(8, 12, 45, .90);
        border-top: 8px solid transparent; border-bottom: 8px solid transparent; border-right: none;
    }
    .charity_section .charity_info .charity_map { height: 200px; }
    .charity_section .charity_head .charity_h2 { font-size: 3rem; }
    .charity_section .charity_head .charity_label { font-size: 1.4rem; }
}

/* top news
--------------------------------------------------- */
.top-news { position: relative; width: 100%; }
.top-news-inner { width: 100%; padding: 40px 0; }
@media screen and (min-width: 1280px) {
    .top-news-inner { max-width: 1200px; margin: 0 auto; }
}
@keyframes brightRipple {
    0%   { transform: translateY(-50%) scale(.8); opacity: .9; }
    100% { transform: translateY(-50%) scale(1.5); opacity: .2; }
}
.section-header {
    position: relative;
    display: flex;
    justify-content: flex-start;
    text-align: left;
    padding-left: 0;
    padding-bottom: 20px;
    margin-bottom: 30px;
    border-bottom: none;
}
.section-header::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 2px;
    background:
        linear-gradient(90deg, rgba(248, 223, 92, .95) 0 84px, rgba(120, 194, 230, .78) 84px 170px, rgba(120, 194, 230, .16) 170px, rgba(120, 194, 230, 0) 100%);
}
.section-header::before {
    content: none;
}
#top-news .section-header {
    padding-bottom: 0;
    border-bottom: none;
}
#top-news .section-header::before,
#top-news .section-header::after {
    content: none;
}
@media screen and (min-width: 1024px) {
    #purpose .section-header {
        padding-bottom: 0;
        border-bottom: none;
    }
    #purpose .section-header::before,
    #purpose .section-header::after {
        content: none;
    }
}
.section-header__inner {
    position: relative;
    width: fit-content;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-left: 55px;
}
.section-header__inner::before {
    content: "";
    display: block;
    position: absolute;
    left: -30px;
    top: 50%;
    transform: translateY(-50%);
    width: 180px;
    height: 160px;
    background:
        radial-gradient(circle 42px at 45% 55%, rgba(226, 248, 255, .75), transparent),
        radial-gradient(circle 34px at 35% 35%, rgba(94, 200, 255, .55), transparent),
        radial-gradient(circle 20px at 60% 25%, rgba(41, 130, 235, .4), transparent);
    z-index: 1;
    pointer-events: none;
    animation: brightRipple 2.5s ease-out infinite;
}
.section-label {
    position: relative;
    z-index: 1;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: .22em;
    color: var(--color-accent-purple-variant);
    text-transform: uppercase;
    text-align: left;
    margin-bottom: 8px;
}
.section-title {
    position: relative;
    z-index: 1;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: bold;
    font-size: 1.92rem;
    letter-spacing: .1em;
    line-height: 1.3;
    color: var(--color-text);
    text-align: left;
}
@media screen and (max-width: 1279px) {
    .section-title { font-size: 2.2rem; }
}
.rc-category-buttons {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
}
.rc-category-btn {
    display: inline-flex;
    align-items: center;
    padding: 6px 18px;
    border-radius: 999px;
    background-color: var(--color-border);
    color: var(--color-muted);
    font-size: 1.3rem;
    letter-spacing: .03em;
    transition: background-color .2s, color .2s;
}
.rc-category-btn:hover { background-color: #d5dbe6; opacity: 1; }
.rc-category-btn.is-active { background-color: var(--color-accent-purple-variant); color: #fff; }
.rc-category-btn.is-active:hover { background-color: var(--color-accent-purple-variant); opacity: 1; }
.section-theme {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 4px 8px;
    margin-top: 10px;
}
.section-theme-label {
    font-size: 1.6rem;
    font-weight: 600;
    letter-spacing: .05em;
    color: var(--color-accent-purple-variant);
}
.section-theme-text {
    font-size: 1.6rem;
    font-weight: 600;
    letter-spacing: .04em;
    color: var(--color-text);
}
@media screen and (min-width: 1280px) {
    .section-title { font-size: 2.4rem; }
    .section-label { font-size: 1.2rem; }
    .section-theme-label { font-size: 1.8rem; }
    .section-theme-text { font-size: 1.8rem; }
}
.top-news-tabs { display: none; }
.top-news-columns {
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.top-news-activity { flex: 1; min-width: 0; border-top: 1px solid #eee; }
.top-news-facebook { flex: 1; min-width: 0; max-width: 400px; margin: 0 auto; }
.top-news-facebook .fb-page { max-width: 100%; }
.top-news-facebook .fb-xfbml-parse-ignore { display: none !important; }
@media screen and (min-width: 768px) {
    .top-news-columns { flex-direction: row; align-items: flex-start; gap: 40px; }
    .top-news-facebook { flex: 0 1 400px; margin: 0; }
}
@media screen and (max-width: 767px) {
    .top-news-tabs {
        display: flex;
        align-items: flex-end;
        gap: 4px;
        border-bottom: 2px solid #d7dde3;
    }
    .top-news-tab {
        flex: 1;
        margin-bottom: -2px;
        padding: 10px 12px 8px;
        border: 1px solid #d7dde3;
        border-bottom: none;
        border-radius: 8px 8px 0 0;
        background: #eef1f5;
        color: #7c8794;
        font-size: 1.3rem;
        font-weight: bold;
        text-align: center;
        cursor: pointer;
        transition: background-color .35s, color .35s, border-color .35s;
    }
    .top-news-tab.is-active {
        padding-top: 12px;
        padding-bottom: 10px;
        border-color: #d7dde3;
        border-bottom: 2px solid #fff;
        background: #fff;
        color: #5a6ba8;
    }
    .top-news-columns {
        border: 1px solid #d7dde3;
        border-top: none;
        padding: 20px;
    }
    .top-news-columns[data-active-panel="news"] .top-news-facebook,
    .top-news-columns[data-active-panel="facebook"] .top-news-activity {
        display: none;
    }
}
.top-news-post-item a {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    position: relative;
    padding: 14px 40px 14px 20px;
    border-bottom: 1px solid #eee;
    color: #444;
    transition: background-color .35s;
}
.top-news-post-item a:hover {
    background-color: #f7f7f7;
}
.top-news-post-item a:hover p.title {
    color: #5a6ba8;
}
.top-news-post-item a::before {
    content: "";
    position: absolute;
    right: 20px;
    top: 50%;
    width: 12px; height: 12px;
    border-top: 2px solid #5a6ba8;
    border-right: 2px solid #5a6ba8;
    transform: translateY(-50%) rotate(45deg);
    transition: transform .2s;
}
.top-news-post-item a:hover::before {
    transform: translateY(-50%) translateX(3px) rotate(45deg);
}
.top-news-post-item a .thumb {
    flex-shrink: 0;
    width: 120px;
    aspect-ratio: 16 / 9;
    margin-right: 20px;
    overflow: hidden;
    border-radius: 4px;
    background-color: #f0f0f0;
}
.top-news-post-item a .thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .3s;
}
.top-news-post-item a:hover .thumb img {
    transform: scale(1.06);
}
.top-news-post-item a .text {
    width: 100%;
    min-width: 0;
}
.top-news-post-item a .meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px 10px;
    margin-bottom: 6px;
}
.top-news-post-item a .meta .date {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    letter-spacing: .03em;
    color: #888;
    font-variant-numeric: tabular-nums;
}
.top-news-post-item a .meta .category {
    padding: 2px 10px;
    border-radius: 999px;
    font-size: 1.1rem;
    letter-spacing: .05em;
    background-color: #5a6ba8;
    color: #fff;
}
.top-news-post-item a p.title {
    width: 100%;
    margin: 0;
    font-size: 1.6rem;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    transition: color .35s;
}
.no-post { padding: 20px; text-align: center; color: #888; border-top: 1px solid #eee; }
.top-news-more { margin-top: 20px; text-align: right; }
.top-news-more a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #5a6ba8;
    font-weight: bold;
    font-size: 1.4rem;
    text-decoration: underline;
    transition: opacity .35s;
}
.top-news-more a:hover { opacity: .7; }
.top-news-more a::after {
    content: "";
    width: 7px; height: 7px;
    border-top: 2px solid #5a6ba8;
    border-right: 2px solid #5a6ba8;
    transform: rotate(45deg);
    transition: transform .2s;
}
.top-news-more a:hover::after {
    transform: rotate(45deg) translate(2px, -2px);
}
.rc-blog-grid { border-top: 1px solid #eee; }
@media screen and (min-width: 768px) {
    .rc-blog-grid {
        display: grid;
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        column-gap: 40px;
    }
    .rc-blog-grid > .top-news-post-item { min-width: 0; }
}
.rc-pagination { margin-top: 30px; }
.rc-pagination ul.page-numbers {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
}
.rc-pagination li { margin: 0; }
.rc-pagination .page-numbers {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    padding: 0 10px;
    border-radius: 4px;
    background-color: #f7f7f7;
    color: #484848;
    font-size: 1.4rem;
    transition: background-color .2s, color .2s;
}
.rc-pagination a.page-numbers:hover { background-color: #5a6ba8; color: #fff; opacity: 1; }
.rc-pagination .page-numbers.current { background-color: #5a6ba8; color: #fff; font-weight: bold; }
.rc-pagination .page-numbers.dots { background-color: transparent; }

.rc-404-text {
    margin-bottom: 30px !important;
    text-align: center;
    line-height: 1.9;
}
.rc-404-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}
.rc-404-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 220px;
    padding: 14px 24px;
    color: #5a6ba8;
    font-weight: bold;
    font-size: 1.5rem;
    border: 1px solid #5a6ba8;
    border-radius: 4px;
    transition: background-color .2s, color .2s;
}
.rc-404-btn:hover { background-color: #5a6ba8; color: #fff; opacity: 1; }
@media screen and (min-width: 600px) {
    .rc-404-links { flex-direction: row; justify-content: center; }
}

/* wave divider (between sections)
--------------------------------------------------- */
.wave-divider-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 64px;
    overflow: hidden;
    line-height: 0;
    z-index: 0;
    pointer-events: none;
}
.wave-divider-top svg {
    display: block;
    width: 100%;
    height: 100%;
}
.wave-divider-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 64px;
    overflow: hidden;
    line-height: 0;
    z-index: 0;
    pointer-events: none;
}
.wave-divider-bottom svg {
    display: block;
    width: 100%;
    height: 100%;
}

/* top outline
--------------------------------------------------- */
.top-outline {
    position: relative;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    background-color: var(--color-bg-alt);
}
.top-outline-inner { width: 100%; padding: 40px 0; }
@media screen and (max-width: 767px) {
    .top-outline-inner { padding-top: 70px; }
}
@media screen and (min-width: 1024px) {
    .top-outline-inner { padding-top: 115px; }
}
@media screen and (min-width: 1280px) {
    .top-outline-inner { max-width: 1200px; margin: 0 auto; }
}
.top-outline-content { display: flex; flex-direction: column; min-width: 0; }
.top-outline-inner .image { position: relative; min-width: 0; width: 100%; margin-bottom: 15px; }
.top-outline .top-outline-inner .image {
    z-index: 1;
    padding: 16px;
    border-radius: 4px;
    isolation: isolate;
}
.top-outline .top-outline-inner .image::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    border-radius: inherit;
    opacity: .9;
    background-image:
        linear-gradient(90deg, rgba(248, 223, 92, .88), rgba(248, 223, 92, .28)),
        linear-gradient(180deg, rgba(120, 194, 230, .82), rgba(120, 194, 230, .26)),
        linear-gradient(145deg, rgba(248, 223, 92, .12) 0%, var(--color-brand-tint) 56%, var(--color-accent-blue-tint) 100%);
    background-size: 100% 4px, 4px 100%, 100% 100%;
    background-position: top left, top left, center;
    background-repeat: no-repeat;
    box-shadow: 0 4px 14px rgba(26, 26, 26, .1);
}
.top-outline .top-outline-inner .image::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    border-radius: calc(4px * 1.15);
    transform: translate(5px, 5px);
    opacity: .72;
    background-image: conic-gradient(from var(--rc-card-angle), #cfdee8, var(--color-accent-blue-tint), #f5edb6, var(--color-brand), #f2e18a, var(--color-accent-blue-tint), #cfdee8);
    background-origin: border-box;
}
.top-outline .top-outline-inner .image img {
    position: relative;
    z-index: 1;
}
.top-outline .top-outline-inner .image-caption {
    z-index: 2;
}
@supports (corner-shape: notch) {
    .top-outline .top-outline-inner .image,
    .top-outline .top-outline-inner .image::before,
    .top-outline .top-outline-inner .image::after {
        corner-shape: notch;
    }
}
.top-outline-inner .image-caption {
    position: absolute;
    right: calc(16px + 6px);
    bottom: calc(16px + 6px);
    padding: 8px 16px;
    background-color: rgba(0, 0, 0, .55);
    color: #fff;
    font-size: 1.3rem;
    letter-spacing: .05em;
}
.top-outline-table { padding: 15px 20px 30px; }
.top-outline-table table { width: 100%; }
.top-outline-table table tr td {
    padding: 10px 0;
    line-height: 1.6;
    vertical-align: top;
}
.top-outline-table table tr td:nth-child(1) { white-space: nowrap; vertical-align: top; }
.outline-label {
    display: inline-flex;
    align-items: center;
    vertical-align: top;
    color: #5a6ba8;
    font-size: 1.8rem;
    font-weight: 600;
    letter-spacing: .1em;
}
.outline-label::before {
    content: "";
    display: inline-block;
    width: 9px;
    height: 9px;
    margin-right: 10px;
    border: 2px solid #5a6ba8;
    background-color: #fff;
    transform: rotate(45deg);
}
@media screen and (max-width: 1279px) {
    .top-outline-table { padding: 10px 20px 20px; }
    .top-outline-table table tr td {
        padding: 7px 0;
        font-size: 1.3rem;
    }
    .outline-label { font-size: 1.4rem; }
    .outline-label::before {
        width: 7px;
        height: 7px;
        margin-right: 8px;
    }
}
.top-outline-table table tr td a { display: inline; color: #444; }
.top-outline-links {
    display: flex;
    align-items: stretch;
    gap: 10px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #ddd;
}
.top-outline-links__stack {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-width: 0;
}
.top-outline-links__btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    color: #5a6ba8;
    font-weight: bold;
    font-size: 1.4rem;
    border: 1px solid #5a6ba8;
    border-radius: 4px;
    transition: background-color .2s, color .2s;
}
.top-outline-links__btn::after {
    content: "";
    flex-shrink: 0;
    width: 8px; height: 8px;
    margin-left: 10px;
    border-top: 2px solid currentColor;
    border-right: 2px solid currentColor;
    transform: rotate(45deg);
}
.top-outline-links__btn:hover {
    background-color: #5a6ba8;
    color: #fff;
    opacity: 1;
}
.top-outline-links__join {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-align: center;
    padding: 8px;
    color: #fff;
    font-weight: bold;
    font-size: 1.8rem;
    line-height: 1.4;
    background-color: #f5a800;
    border-radius: 4px;
    transition: opacity .35s;
}
.top-outline-links__join::after {
    content: "";
    flex-shrink: 0;
    width: 9px; height: 9px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: rotate(45deg);
}
.top-outline-links__join:hover { opacity: .85; }
@media screen and (max-width: 767px) {
    .top-news-inner { padding-left: 10px; padding-right: 10px; }
    .top-outline-inner { padding-left: 20px; padding-right: 20px; }
    .top-calendar-inner { padding-left: 10px; padding-right: 10px; }
    .top-slider-inner { padding-left: 10px; padding-right: 10px; }
    .top-news-post-item a { padding-left: 0; }
    .top-outline-table { padding-left: 0; padding-right: 0; }
}
@media screen and (min-width: 768px) {
    .top-news-inner { padding-left: 0; }
    .top-outline-inner { padding-left: 0; }
    .top-calendar-inner { padding-left: 0; }
    .top-slider-inner { padding-left: 0; }
    .top-outline-content {
        flex-direction: row;
        align-items: center;
        gap: 40px;
    }
    .top-outline-inner .image {
        flex: 0 0 45%;
        margin-bottom: 0;
    }
    .top-outline-table { flex: 1; padding: 0; }
}
@media screen and (min-width: 1024px) and (max-width: 1279px) {
    .top-news-inner { padding-left: 40px; padding-right: 40px; }
    .top-outline-inner { padding-left: 40px; padding-right: 40px; }
    .top-calendar-inner { padding-left: 40px; padding-right: 40px; }
    .top-slider-inner { padding-left: 40px; padding-right: 40px; }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
    .top-news-inner { padding-left: 30px; padding-right: 30px; }
    .top-outline-inner { padding-left: 30px; padding-right: 30px; padding-top: 105px; }
    .top-calendar-inner { padding-left: 30px; padding-right: 30px; }
    .top-slider-inner { padding-left: 30px; padding-right: 30px; }
    .top-info {
        bottom: 20px;
        flex-wrap: nowrap;
    }
    .top-info h3,
    .top-info p {
        width: 230px;
    }
    .top-info h3 span,
    .top-info p span {
        white-space: nowrap;
        height: 50px;
        line-height: 50px;
        padding: 0 20px 0 14px;
        font-size: 1.5rem;
    }
    .top-info h3 a::after,
    .top-info p a::after {
        right: 14px;
    }
}
@media screen and (min-width: 1280px) {
    .top-news-post-item a { padding: 18px 40px 18px 20px; }
    .top-news-post-item a .thumb { width: 160px; }
}

/* top calendar
--------------------------------------------------- */
.top-calendar,
.top-news,
.top-outline,
.top-slider {
    scroll-margin-top: 60px;
}
@media screen and (min-width: 1024px) {
    .top-calendar,
    .top-news,
    .top-outline,
    .top-slider {
        scroll-margin-top: 80px;
    }
}
.top-calendar {
    position: relative;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
}
.top-calendar-inner { width: 100%; padding-top: 40px; padding-bottom: 40px; }
@media screen and (max-width: 767px) {
    .top-calendar-inner { padding-top: 70px; }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
    .top-calendar-inner { padding-top: 105px; }
}
@media screen and (min-width: 1024px) {
    .top-calendar-inner { padding-top: 115px; }
}
@media screen and (min-width: 1280px) {
    .top-calendar-inner { max-width: 1200px; margin: 0 auto; }
}
.top-calendar-list { padding: 0 20px 30px; }
.top-calendar-item + .top-calendar-item { margin-top: 30px; }
.top-calendar-item h3 {
    margin-bottom: 10px;
    padding-left: 10px;
    border-left: 3px solid #5a6ba8;
    color: #4595c7;
    font-weight: bold;
    font-size: 1.6rem;
}
.top-calendar-item iframe { display: block; width: 100%; border: 1px solid #ddd; }
@media screen and (min-width: 768px) {
    .top-calendar-list {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 30px;
    }
    .top-calendar-item { width: calc(50% - 15px); }
    .top-calendar-item + .top-calendar-item { margin-top: 0; }
}
@media screen and (min-width: 1280px) {
    .top-calendar-list { padding: 0 20px 30px; }
}

/* top slider (gallery)
--------------------------------------------------- */
.top-slider {
    position: relative;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    background-color: var(--color-bg-alt);
}
.top-slider-inner { width: 100%; padding-top: 40px; }
@media screen and (max-width: 767px) {
    .top-slider-inner { padding-top: 70px; }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
    .top-slider-inner { padding-top: 105px; }
}
@media screen and (min-width: 1024px) {
    .top-slider-inner { padding-top: 115px; }
}
@media screen and (min-width: 1280px) {
    .top-slider-inner { max-width: 1200px; margin: 0 auto; }
}
.top-slider-carousel { width: 100%; padding: 30px 0 40px; }
.top-slider-slide {
    border-radius: 6px;
    overflow: hidden;
    aspect-ratio: 16 / 9;
}
.top-slider-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
#top-gallery-splide .splide__pagination {
    position: static;
    margin-top: 24px;
    display: flex;
    justify-content: center;
    gap: 8px;
}
#top-gallery-splide .splide__pagination__page {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #cdd6e2;
    opacity: 1;
    transition: background-color .3s ease, transform .3s ease;
}
#top-gallery-splide .splide__pagination__page.is-active {
    background: #5a6ba8;
    transform: scale(1.3);
}

/* page: ロータリークラブとは (page-about-rotary.php)
--------------------------------------------------- */
.rc-hero {
    position: relative;
    width: 100%;
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    background: linear-gradient(135deg, var(--color-bg), var(--color-bg-alt));
    color: var(--color-text);
    text-align: center;
    overflow: hidden;
    border-bottom: 1px solid var(--color-border);
}
@media screen and (min-width: 1024px) {
    .rc-hero { min-height: 88px; padding: 16px 20px; }
}
.rc-hero-wheel {
    position: absolute;
    z-index: 0;
    top: 50%;
    right: -100px;
    width: 320px;
    height: 320px;
    opacity: .5;
    pointer-events: none;
    animation: rcWheelSpin 60s linear infinite;
}
@media screen and (min-width: 1024px) {
    .rc-hero-wheel {
        right: -80px;
        width: 460px;
        height: 460px;
    }
}
@keyframes rcWheelSpin {
    from { transform: translateY(-50%) rotate(0deg); }
    to   { transform: translateY(-50%) rotate(360deg); }
}
.rc-hero-inner { position: relative; z-index: 1; }
.rc-hero-title {
    font-size: 2rem;
    font-weight: 400;
    letter-spacing: .08em;
    line-height: 1.4;
    color: #5a6ba8;
}
@media screen and (min-width: 1024px) {
    .rc-hero-title { font-size: 2.6rem; }
}

.rc-page .rc-section {
    position: relative;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    background-color: var(--color-bg);
}
.rc-page .rc-section--alt { background-color: var(--color-bg-alt); }
.rc-page .rc-section-inner {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 28px;
    scroll-margin-top: 60px;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
    .rc-page .rc-section-inner { padding: 60px 40px; }
}
@media screen and (min-width: 1024px) {
    .rc-page .rc-section-inner { padding: 80px 40px; scroll-margin-top: 80px; }
}
.rc-section-body { margin-top: 30px; text-align: left; }
.rc-section-body h3 {
    margin-top: 40px;
    margin-bottom: 16px;
    font-size: 1.8rem;
    font-weight: bold;
    letter-spacing: .05em;
    color: var(--color-text);
}
@media screen and (min-width: 768px) {
    .rc-section-body h3 { font-size: 2rem; }
}
@media screen and (min-width: 1024px) {
    .rc-section-body h3 { font-size: 2.4rem; }
}
.rc-section-body h3:first-child { margin-top: 0; }
.rc-section-body p { margin-bottom: 20px; line-height: 1.9; }
.rc-section-body p:last-child { margin-bottom: 0; }
.rc-subhead {
    font-size: 1.3rem;
    font-weight: 600;
    letter-spacing: .05em;
    color: var(--color-accent-purple-variant);
    margin-bottom: 10px !important;
}
@media screen and (min-width: 1024px) {
    .rc-subhead { font-size: 1.5rem; }
}
.rc-single-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 24px !important;
    font-family: 'Montserrat', sans-serif;
}
.rc-single-meta .date {
    font-size: 1.3rem;
    letter-spacing: .03em;
    color: var(--color-muted);
    font-variant-numeric: tabular-nums;
}
.rc-single-meta .category {
    padding: 2px 10px;
    border-radius: 999px;
    font-size: 1.2rem;
    letter-spacing: .05em;
    background-color: #5a6ba8;
    color: #fff;
    transition: background-color .2s;
}
.rc-single-meta a.category:hover { background-color: #414f80; opacity: 1; }
.rc-single-empty {
    padding: 50px 20px;
    border: 1px dashed var(--color-border);
    border-radius: 4px;
    text-align: center;
    color: var(--color-muted);
}
.rc-single-content img {
    display: block;
    width: 100%;
    max-width: 640px;
    height: auto;
    margin: 20px auto;
    border-radius: 4px;
}
.rc-org-heading {
    margin: 48px 0 16px;
    font-size: 2rem;
    font-weight: bold;
    color: var(--color-heading);
}
.rc-org-heading:first-child { margin-top: 0; }
.rc-org-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 24px;
    font-size: 1.6rem;
    table-layout: fixed;
}
.rc-goals-table {
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.8rem;
    table-layout: auto;
}
.rc-org-table.rc-goals-table th:first-child,
.rc-org-table.rc-goals-table td:first-child {
    width: 34%;
    white-space: nowrap;
}
.rc-org-table.rc-goals-table th:nth-child(2),
.rc-org-table.rc-goals-table td:nth-child(2) {
    width: 66%;
    text-align: left;
}
.rc-goals-table th,
.rc-goals-table td {
    padding: 16px 20px;
}
.rc-goals-table td:first-child {
    font-weight: 600;
    color: var(--color-heading);
    background-color: #fcfcfc;
}
.rc-goals-list {
    display: grid;
    gap: 10px;
}
.rc-goals-list li {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    padding-bottom: 10px;
    border-bottom: 1px dashed var(--color-border);
}
.rc-goals-list li:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}
.rc-goals-list span {
    flex: 1 1 auto;
    min-width: 0;
}
.rc-goals-list strong {
    flex: 0 0 12.5em;
    font-weight: 700;
    color: #5a6ba8;
    text-align: right;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
    .rc-goals-table {
        font-size: 1.5rem;
    }
    .rc-goals-table th,
    .rc-goals-table td {
        padding: 10px 14px;
    }
}
@media screen and (max-width: 767px) {
    .rc-goals-table {
        font-size: 1.3rem;
    }
    .rc-org-table.rc-goals-table th:first-child,
    .rc-org-table.rc-goals-table td:first-child {
        width: 38%;
        white-space: normal;
    }
    .rc-org-table.rc-goals-table th:nth-child(2),
    .rc-org-table.rc-goals-table td:nth-child(2) {
        width: 62%;
    }
    .rc-goals-table th,
    .rc-goals-table td {
        padding: 8px 10px;
    }
    .rc-goals-list li {
        display: grid;
        gap: 4px;
    }
    .rc-goals-list strong {
        flex: none;
        text-align: left;
    }
}
.rc-org-table th,
.rc-org-table td {
    border: 1px solid var(--color-border);
    padding: 12px 18px;
    text-align: left;
    vertical-align: top;
    line-height: 1.7;
    overflow-wrap: anywhere;
}
.rc-org-table:not(.rc-org-table--officers) th:first-child,
.rc-org-table:not(.rc-org-table--officers) td:first-child { width: 30%; }
.rc-org-table:not(.rc-org-table--officers) th:nth-child(2),
.rc-org-table:not(.rc-org-table--officers) td:nth-child(2) { width: 12%; }
.rc-org-table:not(.rc-org-table--officers) th:nth-child(3),
.rc-org-table:not(.rc-org-table--officers) td:nth-child(3) { width: 58%; }
.rc-org-table th {
    background-color: var(--color-bg-alt);
    font-weight: bold;
    color: var(--color-text);
    white-space: nowrap;
}
.rc-org-table td.rc-org-role {
    width: 90px;
    white-space: nowrap;
    text-align: center;
    font-weight: 600;
    color: #5a6ba8;
    letter-spacing: .08em;
}
.rc-org-table th:nth-child(2) { text-align: center; }
.rc-org-table--officers {
    table-layout: auto;
}
.rc-org-table--officers td.rc-org-role { text-align: left; }
.rc-org-table--officers td:nth-child(1) { width: 8%; }
.rc-org-table--officers td:nth-child(2) { width: 14%; }
.rc-org-table--officers td:nth-child(3) { width: 34%; }
.rc-org-table--officers td:nth-child(4) { width: 44%; }
@media screen and (max-width: 767px) {
    .rc-org-table {
        font-size: 1.3rem;
    }
    .rc-org-table th,
    .rc-org-table td {
        padding: 10px 12px;
        line-height: 1.8;
    }
    .rc-org-table:not(.rc-org-table--officers) th:first-child,
    .rc-org-table:not(.rc-org-table--officers) td:first-child { width: 34%; }
    .rc-org-table:not(.rc-org-table--officers) th:nth-child(2),
    .rc-org-table:not(.rc-org-table--officers) td:nth-child(2) { width: 14%; }
    .rc-org-table:not(.rc-org-table--officers) th:nth-child(3),
    .rc-org-table:not(.rc-org-table--officers) td:nth-child(3) { width: 52%; }
    .rc-org-table--officers td:nth-child(1) { width: 12%; }
    .rc-org-table--officers td:nth-child(2) { width: 18%; }
    .rc-org-table--officers td:nth-child(3) { width: 30%; }
    .rc-org-table--officers td:nth-child(4) { width: 40%; }
}
.rc-org-note {
    font-size: 1.4rem;
    color: var(--color-muted);
    margin-bottom: 16px;
}
.rc-page .rc-section--slogan {
    background: #1b2340 url('../images/fw.webp') center / cover no-repeat;
}
.rc-section--slogan::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background-color: rgba(0, 0, 0, .6);
}
.rc-section--slogan .rc-section-inner { padding-top: 120px; padding-bottom: 170px; }
.rc-page #belief .rc-section-inner { padding-top: 0; }
.rc-slogan {
    font-size: 2.2rem;
    font-weight: bold;
    line-height: 1.7;
    color: #fff;
    text-align: center;
    margin: 0;
}
.rc-slogan-line { display: block; }
.rc-slogan-line--sm { font-size: .8em; }
.rc-slogan-line--lg { font-size: 1.2em; margin-top: .5em; }
.rc-fade-up {
    opacity: 0;
    transform: translateY(30px);
    animation: rc-slogan-fade-up .6s cubic-bezier(.2, .8, .2, 1) forwards;
}
@keyframes rc-slogan-fade-up {
    to { opacity: 1; transform: translateY(0); }
}
.rc-slogan-type {
    display: inline-block;
    clip-path: inset(0 100% 0 0);
    animation: rc-slogan-type 1.44s steps(18, end) 1s forwards;
}
@keyframes rc-slogan-type {
    to { clip-path: inset(0 0% 0 0); }
}
.rc-slogan-caret {
    display: inline-block;
    width: .07em;
    height: .9em;
    margin-left: 4px;
    vertical-align: -.05em;
    background: #fff;
    visibility: hidden;
    animation:
        rc-slogan-caret-blink .5s steps(1, end) infinite,
        rc-slogan-caret-show 0s linear 1s forwards,
        rc-slogan-caret-hide 0s linear 2.44s forwards;
}
@keyframes rc-slogan-caret-blink { 50% { opacity: 0; } }
@keyframes rc-slogan-caret-show { to { visibility: visible; } }
@keyframes rc-slogan-caret-hide { to { visibility: hidden; } }
@media (prefers-reduced-motion: reduce) {
    .rc-fade-up { animation: none; opacity: 1; transform: none; }
    .rc-slogan-type { animation: none; clip-path: inset(0 0% 0 0); }
    .rc-slogan-caret { display: none; }
}
@media screen and (min-width: 1024px) {
    .rc-slogan { font-size: 2.8rem; }
}
@property --rc-card-angle {
    syntax: '<angle>';
    inherits: false;
    initial-value: 0deg;
}
.rc-president-card,
.rc-request-block,
.rc-person-card {
    --rc-card-line-x: linear-gradient(90deg, rgba(185, 96, 226, .9), rgba(185, 96, 226, .24));
    --rc-card-line-y: linear-gradient(180deg, rgba(120, 194, 230, .82), rgba(120, 194, 230, .26));
    --rc-card-surface: linear-gradient(145deg, rgba(250, 240, 254, .96) 0%, rgba(232, 249, 255, .92) 100%);
    --rc-card-orbit: conic-gradient(from var(--rc-card-angle), rgba(185, 96, 226, .28), var(--color-accent-purple-tint), var(--color-accent-blue-tint), rgba(120, 194, 230, .36), var(--color-accent-purple-tint), rgba(185, 96, 226, .28));
}
.rc-president-card {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 20px;
    text-align: left;
    width: fit-content;
    max-width: 100%;
    padding: 20px;
    border-radius: 4px;
    transform-style: preserve-3d;
}
.rc-president-card::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    border-radius: inherit;
    opacity: .97;
    background-image: var(--rc-card-line-x), var(--rc-card-line-y), var(--rc-card-surface);
    background-size: 100% 4px, 4px 100%, 100% 100%;
    background-position: top left, top left, center;
    background-repeat: no-repeat;
    box-shadow: 0 4px 14px rgba(26, 26, 26, .1), inset 0 0 0 1px rgba(229, 234, 239, .72);
}
.rc-president-card::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    border-radius: calc(4px * 1.15);
    transform: translate3d(5px, 5px, -1px);
    opacity: .72;
    background-image: var(--rc-card-orbit);
    background-origin: border-box;
    animation: rc-card-spin 8s linear infinite;
}
@supports (corner-shape: notch) {
    .rc-president-card,
    .rc-request-block,
    .rc-person-card,
    .rc-president-card::before,
    .rc-president-card::after,
    .rc-request-block::before,
    .rc-request-block::after,
    .rc-person-card::before,
    .rc-person-card::after {
        corner-shape: notch;
    }
}
@keyframes rc-card-spin {
    to { --rc-card-angle: 360deg; }
}
@media (prefers-reduced-motion: reduce) {
    .rc-president-card,
    .rc-request-block,
    .rc-person-card { animation: none; }
}
.rc-president-photo {
    flex-shrink: 0;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--color-bg-alt);
    box-shadow: 0 2px 8px rgba(26, 26, 26, .15);
}
@media screen and (min-width: 1024px) {
    .rc-president-photo { width: 140px; height: 140px; }
}
.rc-president-info { flex: 1; min-width: 0; }
.rc-president-info .rc-president-year {
    font-size: 1.6rem;
    line-height: 1.3;
    color: #5A6BA8;
    font-weight: 600;
    text-align: left;
    margin-bottom: 4px;
}
.rc-president-info .rc-president-org {
    font-size: 1.4rem;
    line-height: 1.3;
    color: #484848;
    text-align: left;
    margin-bottom: 12px;
    white-space: nowrap;
}
.rc-president-info .rc-president-name {
    display: inline-block;
    font-size: 1.9rem;
    font-weight: bold;
    color: #1A1A1A;
    letter-spacing: .05em;
    margin-bottom: 0;
    padding-bottom: 4px;
    background-image: linear-gradient(90deg, #2d3a63, #5a6ba8, var(--color-accent-blue));
    background-repeat: no-repeat;
    background-position: 0 100%;
    background-size: 100% 3px;
}
.rc-governor-profile {
    width: 100%;
}
.rc-governor-profile .rc-president-photo {
    width: 132px;
    height: 132px;
}
.rc-message-list {
    margin: 18px 0 22px;
    padding-left: 0;
    counter-reset: rc-message-item;
}
.rc-message-list li {
    position: relative;
    margin-bottom: 10px;
    padding-left: 42px;
    line-height: 1.9;
}
.rc-message-list li:last-child { margin-bottom: 0; }
.rc-message-list li::before {
    counter-increment: rc-message-item;
    content: counter(rc-message-item) ".";
    position: absolute;
    left: 0;
    top: 0;
    width: 30px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: var(--color-accent-purple-variant);
}
.rc-governor-belief {
    margin-bottom: 24px !important;
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: .05em;
    color: #5a6ba8;
}
@media screen and (min-width: 1024px) {
    .rc-governor-profile .rc-president-photo {
        width: 150px;
        height: 150px;
    }
    .rc-governor-belief { font-size: 2.1rem; }
}
.rc-message-source {
    margin-top: 24px !important;
    font-size: .9em;
    color: #666;
    text-align: right;
}
.rc-request-list {
    margin: 16px 0 30px;
    padding-left: 4px;
}
.rc-request-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding-top: 10px;
    padding-bottom: 10px;
    margin-bottom: 0;
    font-size: 1.4rem;
    line-height: 1.7;
    color: var(--color-text);
}
.rc-request-list li:first-child { padding-top: 0; }
.rc-request-list li:last-child { padding-bottom: 0; }
.rc-request-list li + li {
    border-top: 1px solid var(--color-border);
}
.rc-request-list li::before {
    content: "";
    flex: 0 0 auto;
    width: 3px;
    height: 14px;
    margin-top: 5px;
    border-radius: 2px;
    background-color: #5a6ba8;
}
@media screen and (min-width: 1024px) {
    .rc-request-list li { font-size: 1.5rem; }
}
.rc-request-block {
    position: relative;
    z-index: 1;
    break-inside: avoid;
    -webkit-column-break-inside: avoid;
    margin-bottom: 24px;
    padding: 24px 28px;
    background-color: transparent;
    border-radius: 4px;
    transform-style: preserve-3d;
}
.rc-request-block::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    border-radius: inherit;
    opacity: .97;
    background-image: var(--rc-card-line-x), var(--rc-card-line-y), var(--rc-card-surface);
    background-size: 100% 4px, 4px 100%, 100% 100%;
    background-position: top left, top left, center;
    background-repeat: no-repeat;
    box-shadow: 0 4px 14px rgba(26, 26, 26, .1), inset 0 0 0 1px rgba(229, 234, 239, .72);
}
.rc-request-block::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    border-radius: calc(4px * 1.15);
    transform: translate3d(5px, 5px, -1px);
    opacity: .72;
    background-image: var(--rc-card-orbit);
    background-origin: border-box;
    animation: rc-card-spin 8s linear infinite;
}
.rc-request-block h3 {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 0;
    font-size: 1.6rem;
    color: #5a6ba8;
}
.rc-request-num {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: var(--color-brand);
    color: #7a6300;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1.4rem;
}
.rc-request-num--icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(145deg, #f6ecff, #e6f7ff);
    border: 1px solid #d7e1ef;
    box-shadow: 0 3px 10px rgba(90, 107, 168, .2);
}
.rc-request-num--icon svg { width: 26px; height: 26px; color: #5a6ba8; }
@media screen and (min-width: 768px) {
    .rc-request-block h3 { font-size: 1.7rem; }
    .rc-request-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 24px 30px;
    }
    .rc-request-block { margin-bottom: 0; }
}
@media screen and (min-width: 1024px) {
    .rc-request-block h3 { font-size: 1.9rem; }
    .rc-request-num--icon { width: 54px; height: 54px; }
    .rc-request-num--icon svg { width: 30px; height: 30px; }
    .rc-request-grid {
        grid-template-columns: 1fr 1fr 1fr;
    }
}
.rc-person-card {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 20px;
    width: fit-content;
    max-width: 100%;
    margin: 30px auto;
    padding: 20px;
    border-radius: 4px;
    background-color: transparent;
    transform-style: preserve-3d;
}
.rc-person-card::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    border-radius: inherit;
    opacity: .97;
    background-image: var(--rc-card-line-x), var(--rc-card-line-y), var(--rc-card-surface);
    background-size: 100% 4px, 4px 100%, 100% 100%;
    background-position: top left, top left, center;
    background-repeat: no-repeat;
    box-shadow: 0 4px 14px rgba(26, 26, 26, .1), inset 0 0 0 1px rgba(229, 234, 239, .72);
}
.rc-person-card::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    border-radius: calc(4px * 1.15);
    transform: translate3d(5px, 5px, -1px);
    opacity: .72;
    background-image: var(--rc-card-orbit);
    background-origin: border-box;
    animation: rc-card-spin 8s linear infinite;
}
.rc-person-photo {
    flex: 0 0 auto;
    width: 88px;
    height: 88px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--color-bg-alt);
    box-shadow: 0 2px 8px rgba(26, 26, 26, .15);
}
@media screen and (min-width: 1024px) {
    .rc-person-photo { width: 110px; height: 110px; }
}
.rc-person-info { flex: 1; min-width: 0; }
.rc-person-info p { margin-bottom: 0; }
.rc-person-name { font-size: 1.5rem; font-weight: bold; letter-spacing: .05em; line-height: 1.5; color: var(--color-heading); }
.rc-person-role {
    margin-top: 4px;
    color: var(--color-accent-purple-variant);
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: .05em;
    line-height: 1.4;
}
.rc-person-desc { margin-top: 4px; font-size: 1.2rem; color: var(--color-muted); line-height: 1.4; }
@media screen and (min-width: 1024px) {
    .rc-person-name { font-size: 1.8rem; }
    .rc-person-role { font-size: 1.4rem; }
    .rc-person-desc { font-size: 1.4rem; }
}
.rc-member-row-title {
    margin: 40px 0 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--color-brand);
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: .05em;
    color: var(--color-heading);
}
.rc-member-filters {
    margin-bottom: 28px;
    padding: 18px 20px;
    border: 1px solid #dbe3ee;
    border-radius: 8px;
    background: linear-gradient(145deg, rgba(250, 240, 254, .62), rgba(232, 249, 255, .78));
}
.rc-member-filters__row {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.rc-member-filters__field {
    min-width: 0;
}
.rc-member-filters__label {
    display: block;
    margin-bottom: 6px;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: .08em;
    color: #5a6ba8;
}
.rc-member-filters input,
.rc-member-filters select {
    width: 100%;
    height: 46px;
    padding: 0 14px;
    border: 1px solid #cfd9e7;
    border-radius: 6px;
    background-color: rgba(255, 255, 255, .92);
    color: var(--color-text);
    font-size: 1.5rem;
}
.rc-member-filters__actions {
    display: flex;
    align-items: center;
    gap: 10px;
}
.rc-member-filters__submit,
.rc-member-filters__reset {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 112px;
    height: 46px;
    padding: 0 18px;
    border-radius: 6px;
    font-size: 1.4rem;
    font-weight: 700;
}
.rc-member-filters__submit {
    border: 1px solid #5a6ba8;
    background-color: #5a6ba8;
    color: #fff;
}
.rc-member-filters__reset {
    border: 1px solid #cfd9e7;
    background-color: rgba(255, 255, 255, .92);
    color: var(--color-text);
}
.rc-member-filters__rows {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 14px;
}
.rc-member-filter-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 0 14px;
    border: 1px solid #cfd9e7;
    border-radius: 999px;
    background-color: rgba(255, 255, 255, .88);
    color: #5a6ba8;
    font-size: 1.3rem;
    font-weight: 700;
}
.rc-member-filter-chip.is-active {
    border-color: #5a6ba8;
    background-color: #5a6ba8;
    color: #fff;
}
.rc-member-filter-summary {
    margin-bottom: 8px !important;
    font-size: 1.3rem;
    color: var(--color-muted);
}
.rc-member-row-title:first-child { margin-top: 0; }
.rc-member-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 10px;
}
.rc-member-card {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 22px 20px;
    border-radius: 4px;
    background-color: var(--color-bg-alt);
}
.rc-member-top {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}
.rc-member-photo {
    flex: 0 0 auto;
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    overflow: hidden;
    background-color: #fff;
}
.rc-member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.rc-member-photo--none {
    background: linear-gradient(145deg, rgba(250, 240, 254, .95), rgba(232, 249, 255, .98));
    border: 1px solid #dbe3ee;
}
.rc-member-photo--none img {
    width: 58%;
    height: 58%;
    object-fit: contain;
    opacity: .95;
}
.rc-member-heading { flex: 1; min-width: 0; }
.rc-member-name {
    margin-bottom: 6px !important;
    font-size: 1.6rem;
    font-weight: bold;
    letter-spacing: .05em;
    color: var(--color-heading);
    line-height: 1.45;
}
.rc-member-industry {
    margin-bottom: 8px !important;
    font-size: 1.4rem;
    font-weight: 600;
    color: #5a6ba8;
    line-height: 1.6;
}
.rc-member-meta {
    margin-top: -2px;
    padding-top: 10px;
    border-top: 1px solid #dbe3ee;
    font-size: 1.5rem;
    line-height: 1.9;
    color: #666;
}
.rc-member-meta li {
    word-break: break-word;
    overflow-wrap: anywhere;
}
.rc-member-meta li + li { margin-top: 4px; }
.rc-member-meta li:first-child {
    margin-bottom: 2px;
    font-weight: 600;
    color: var(--color-text);
}
.rc-member-meta a { display: inline; color: #5a6ba8; text-decoration: underline; }
.rc-member-sns {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    margin-bottom: 6px;
}
.rc-member-sns a,
.rc-member-sns span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
}
.rc-member-sns a {
    color: #7b8fbd;
    transition: filter .2s;
}
.rc-member-sns a:hover { filter: brightness(.8); opacity: 1; }
.rc-member-sns .is-disabled {
    color: var(--color-border);
}
.rc-member-sns svg { width: 26px; height: 26px; }
@media screen and (min-width: 600px) {
    .rc-member-grid { grid-template-columns: 1fr 1fr; }
}
@media screen and (min-width: 768px) {
    .rc-member-filters__row {
        flex-direction: row;
        align-items: end;
    }
    .rc-member-filters__field--keyword { flex: 2; }
    .rc-member-filters__field--category { flex: 1; }
    .rc-member-filters__actions { flex: 0 0 auto; }
}
@media screen and (min-width: 1024px) {
    .rc-member-row-title { font-size: 2.4rem; }
    .rc-member-grid { grid-template-columns: 1fr 1fr 1fr; gap: 24px; }
    .rc-member-photo { width: 88px; height: 88px; }
    .rc-member-name { font-size: 1.8rem; }
    .rc-member-industry { font-size: 1.5rem; }
    .rc-member-meta { font-size: 1.6rem; }
}
.rc-test-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin: 30px 0;
}
@media screen and (min-width: 600px) {
    .rc-test-list { grid-template-columns: 1fr 1fr; }
}
.rc-test-list li {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background-color: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: 8px;
}
.rc-page .rc-section--alt .rc-test-list li { background-color: var(--color-bg); }
.rc-test-num {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: var(--color-brand);
    color: #7a6300;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}
.rc-test-text { font-weight: bold; letter-spacing: .05em; }
.rc-split {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.rc-split .section-header,
.rc-split > h3,
.rc-split__aside h3 { margin-top: 0; margin-bottom: 0; }
.rc-split__body { min-width: 0; }
@media screen and (min-width: 1024px) {
    .rc-split {
        flex-direction: row;
        align-items: flex-start;
        gap: 60px;
    }
    .rc-split__aside,
    .rc-split > .section-header,
    .rc-split > h3 {
        flex: 2;
        min-width: 0;
    }
    .rc-split__body { flex: 3; min-width: 0; }
}
.rc-split > h3,
.rc-split__aside h3,
.rc-split .section-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: .02em;
}
@media screen and (max-width: 1023px) {
    #purpose .section-title { font-size: 2.2rem; }
    #t_houshi .rc-split__aside h3 { font-size: 2rem; }
}
@media screen and (min-width: 1024px) {
    .rc-split > h3,
    .rc-split__aside h3,
    .rc-split .section-title {
        font-size: 4rem;
    }
}
.rc-avenue-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 30px;
}
@media screen and (min-width: 768px) {
    .rc-avenue-grid { grid-template-columns: 1fr 1fr; }
}
.rc-avenue-grid--stacked,
.rc-avenue-grid--stacked.rc-avenue-grid {
    margin-top: 0;
}
@media screen and (min-width: 768px) {
    .rc-avenue-grid--stacked { grid-template-columns: 1fr; }
}
.rc-avenue-card {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 24px 28px;
    background-color: var(--color-bg);
    border-radius: 16px;
    box-shadow: 0 2px 16px rgba(26, 26, 26, .07);
}
.rc-avenue-num {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--color-brand);
    color: #7a6300;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1.5rem;
}
.rc-avenue-body { flex: 1; min-width: 0; }
.rc-avenue-title {
    margin-bottom: 8px;
    font-weight: bold;
    font-size: 1.6rem;
    color: #5a6ba8;
}
@media screen and (min-width: 768px) {
    .rc-avenue-title { font-size: 1.8rem; }
}
@media screen and (min-width: 1024px) {
    .rc-avenue-title { font-size: 2.1rem; }
}
.rc-avenue-body p:last-child { margin-bottom: 0; line-height: 1.8; }
.rc-purpose-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 30px;
}
.rc-purpose-list li {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 24px 28px;
    background-color: var(--color-bg);
    border-radius: 16px;
    box-shadow: 0 2px 16px rgba(26, 26, 26, .07);
}
.rc-purpose-num {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--color-brand);
    color: #7a6300;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1.5rem;
}
.rc-purpose-list p { margin: 0; line-height: 1.8; padding-top: 4px; }
.rc-purpose-lead--blue { color: #5a6ba8; font-weight: bold; }

.rc-party-lead {
    margin-bottom: 26px !important;
    font-size: 1.7rem;
    font-weight: 600;
    line-height: 1.8;
    color: #5a6ba8;
}
.rc-party-join-card {
    padding: 28px;
    border-radius: 16px;
    background: linear-gradient(145deg, rgba(250, 240, 254, .62), rgba(232, 249, 255, .78));
    box-shadow: 0 2px 16px rgba(26, 26, 26, .06);
}
.rc-party-join-card__actions {
    margin-top: 24px;
}
.rc-party-join-card__btn.top-outline-links__join {
    width: fit-content;
    min-width: 220px;
    margin: 0 auto;
}
