:root {
    /* Primary Colors */
    --color-primary: #9DC04C;
    --color-primary-dark: #4BBD4F;

    /* Secondary Colors */
    --color-secondary: #F6AD48;
    --color-secondary-dark: #FF7E37;

    /* Tertiary Colors */
    --color-tertiary: #64A8EB;

    /* Neutral Colors */
    --color-white: #FFFFFF;
    --color-background: #F3F7EB;
    --color-black: #322A1C;
    --color-gray: #3C3C3C;
}

body {
    margin: 0;
    background-color: var(--color-background);
    color: var(--color-black);
    overflow-x: scroll;
    overflow-y: hidden;
}

body.index-body {
    background-size: cover;
    background-repeat: no-repeat;
}

@media screen and (max-width: 767px) {
    body {
        padding-top: 0;
        margin: 0;
        overflow-y: auto !important;
        overflow-x: scroll !important;
    }

    body.index-body {
        background-image: none;
    }
}

body::-webkit-scrollbar{
    height: 0px;
    display: none;
}

h1 {
    font-size: 40px;
    font-weight: 900;
}

h2 {
    font-size: 32px;
    font-weight: bold;
}

h3 {
    font-size: 24px;
    font-weight: bold;
}

h4 {
    font-size: 20px;
    font-weight: bold;
}

h5 {
    font-size: 18px;
    font-weight: bold;
}


header {
    margin: clamp(8px, 1.5vw, 12px) clamp(12px, 2vw, 18px);
    display: flex;
    justify-content: space-between;
    position: fixed;
    top: 0;
    width: calc(100vw - clamp(24px, 4vw, 36px));
    height: clamp(60px, 10vh, 79px);
}

.header-logo a {
    color: var(--color-gray);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: clamp(8px, 1.5vw, 12px);
    height: 100%;
}

.header-logo img {
    width: clamp(40px, 7vw, 54px);
}

.header-logo p {
    font-size: 12px;
    font-family: 'Zen Maru Gothic';
    font-weight: medium;
    margin: 0;
}

.header-logo p span {
    color: var(--color-secondary-dark);
}

.header-menu {
    display: flex;
    gap: clamp(24px, 5vw, 48px);
    font-family: 'Zen Maru Gothic';
}

.header-menu-nav {
    display: flex;
    align-items: center;
    gap: clamp(24px, 5vw, 48px);
    list-style: none;
    padding: 0;
    color: var(--color-gray);
    margin: 0;
}

.header-menu-nav a {
    text-decoration: none;
    color: var(--color-gray);
    position: relative;
    padding-bottom: 8px;
}

.header-menu-nav a:hover {
    font-weight: bold;
    color: var(--color-primary-dark);
}

.header-menu-nav a::before {
    background: var(--color-black);
    border-radius: 40px;
    content: '';
    width: 100%;
    height: 2px;
    position: absolute;
    bottom: 0;
    transform-origin: center top;
    transform: scale(0, 1);
    transition: transform .3s;
}

.header-menu-nav a:hover::before {
    transform-origin: center top;
    transform: scale(1, 1);
}

.header-menu-btn {
    display: flex;
    align-items: center;
    gap: clamp(16px, 3vw, 24px);
    list-style: none;
    padding: 0;
}

.header-menu-btn a {
    text-decoration: none;
    color: var(--color-background);
}

.header-donate-btn {
    padding: clamp(8px, 1.5vw, 12px) clamp(16px, 3vw, 24px);
    margin: 0;
    min-width: clamp(100px, 15vw, 140px);
    background-color: var(--color-primary);
    border-radius: 40px;
    text-align: center;
    font-weight: bold;
}

.header-donate-btn:hover {
    background-color: var(--color-primary-dark);
    color: var(--color-background);
}

.header-donate-btn:active {
    background-color: var(--color-background);
    outline: solid 2px var(--color-primary-dark);
    color: var(--color-primary-dark);
}

.header-contact-btn {
    padding: clamp(8px, 1.5vw, 12px) clamp(16px, 3vw, 24px);
    margin: 0;
    min-width: clamp(100px, 15vw, 140px);
    background-color: var(--color-secondary);
    border-radius: 40px;
    text-align: center;
    font-weight: bold;
}

.header-contact-btn:hover {
    background-color: var(--color-secondary-dark);
    color: var(--color-background);
}

.header-contact-btn:active {
    background-color: var(--color-background);
    outline: solid 2px var(--color-secondary-dark);
    color: var(--color-secondary-dark);
}

/* ハンバーガーメニュー */
.hamburger-menu {
    display: none;
}

.drawer_hidden {
    display: none;
}

.drawer_open {
    display: flex;
    height: 60px;
    width: 60px;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 100;
    cursor: pointer;
}

.drawer_open span,
.drawer_open span:before,
.drawer_open span:after {
    content: '';
    display: block;
    height: 3px;
    width: 25px;
    border-radius: 3px;
    background: var(--color-secondary-dark);
    transition: 0.5s;
    position: absolute;
}

.drawer_open span:before {
    bottom: 8px;
}

.drawer_open span:after {
    top: 8px;
}

#drawer_input:checked ~ .drawer_open span {
    background: rgba(255, 255, 255, 0);
}

#drawer_input:checked ~ .drawer_open span:before {
    bottom: 0;
    transform: rotate(45deg);
    background: var(--color-secondary-dark);
}

#drawer_input:checked ~ .drawer_open span:after {
    top: 0;
    transform: rotate(-45deg);
    background: var(--color-secondary-dark);
}

.nav_content {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 100%;
    z-index: 99;
    background: rgba(243, 247, 235, 0.95);
    transition: 0.5s;
    padding-top: 100px;
}

#drawer_input:checked ~ .nav_content {
    left: 0;
}

.nav_list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.nav_item a {
    display: block;
    text-decoration: none;
    color: var(--color-gray);
    font-family: 'Zen Maru Gothic';
    font-weight: bold;
    font-size: 18px;
    padding: 12px 24px;
    transition: 0.3s;
}

.nav_item a:hover {
    color: var(--color-primary-dark);
}

.nav_cta_buttons {
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
    padding: 0 18px;
}

.nav_cta_buttons a {
    text-decoration: none;
    color: var(--color-background);
    width: 100%;
}

@media screen and (max-width: 767px) {
    header {
        border-radius: 0px 0px 24px 24px;
        background: linear-gradient(180deg, var(--color-white) 0%, var(--color-background) 100%);
        box-shadow: 0px 0px 4px 0px rgba(50, 42, 28, 0.05);
        margin: 0;
        width: calc(100vw - 18px);
        position: fixed;
        top: 0;
        left: 0;
        padding: 20px 0px 18px 18px;
        z-index: 999;
    }

    .header-logo a {
        gap: 8px;
    }

    .header-logo img {
        width: 36px;
    }

    .header-menu-nav {
        display: none;
    }

    .header-menu-btn {
        display: none;
    }

    .hamburger-menu {
        display: block;
        padding: 0;
        align-content: center;
    }
}

.container {
    display: flex; /* 要素を横並びにする */
    height: 100vh; /* 縦幅をviewportの高さに合わせる */
    align-items: center;
}

.index-container{
    width: 8720px;
}

.about-container {
    width: 8924px;
}

.news-container {
    width: 2920px;
}

.gaiyou-container {
    width: 7900px;
}

.donation-container {
    /* width: 7480px; */
    width: 6080px;
}

.single-news-container {
    width: 2600px;
}

.section {
    display: flex;
    flex-direction: column;
    width: 1400px;
    margin-top: 120px;
    height: calc(100% - 120px);
}

main {
    display: flex;
    height: 100%;
}

@media screen and (max-width: 767px) {
    .container {
        display: block;
        width: auto;
        height: auto;
    }

    main {
        display: block;
    }

    .section {
        width: calc(100% - 36px);
        height: auto;
        padding: 0 18px;
    }
}

.FV-wrapper {
    margin-right: 0;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: right center;
    padding-left: 48px;
    background-image: url(/wp-content/themes/posloch/sozai/fv-land.png);
}

.FV-copy {
    margin-top: 240px;
    font-family: "Zen Kaku Gothic New"
}

.FV-copy h2 {
    font-size: 48px;
    margin-bottom: -14px;
    color: var(--color-black);
}

.FV-copy h1 {
    font-size: 96px;
    margin-top: 0;
    margin-bottom: 0px;
    color: var(--color-black);
}

.FV-copy h4 {
    font-family: 'Zen Maru Gothic';
    margin: 0;
}

.FV-copy span {
    color: var(--color-background);
}

.FV-news {
    display: flex;
    gap: 80px;
    align-items: center;
    margin: 48px auto 40px auto;
    font-family: 'Zen Maru Gothic';
}

.FV-news-in {
    display: flex;
    flex-direction: column;
}

.FV-news-in a {
    text-decoration: none;
    color: var(--color-gray);
    display: flex;
    gap: 32px;
    line-height: 16px;
}

.FV-news-in a:hover {
    font-weight: 700;
}

.FV-sun {
    position: absolute;
    left: 1000px;
    top: 240px;
}

.sun {
    width: 160px;
}

@media screen and (max-width: 767px) {
    .FV-wrapper {
        margin: 0;
        padding: 0 18px;
    }

    .FV-copy h2 {
        font-size: 24px;
    }

    .FV-copy h1 {
        font-size: 11.6vw;
        letter-spacing: -4px;
    }

    .FV-copy h4 {
        font-size: 14px;
    }

    .FV-copy span {
        color: var(--color-secondary-dark);
    }

    .FV-news {
        font-size: 16px;
        flex-direction: column;
        gap: 32px;
        margin: 0;
        margin-top: 80px;
    }

    .FV-news h4 {
        margin: 0;
    }

    .FV-news-in {
        gap: 24px;
    }

    .FV-news-con p {
        margin: 0;
        font-family: "Zen Kaku Gothic New";
    }
}

.section-title {
    text-align: center;
    height: 10%;
    margin-bottom: 32px;
}

.section-title h3 {
    color: var(--color-secondary);
    font-size: 20px;
    font-family: "Zen Kaku Gothic New";
    margin-bottom: 0;
    margin-top: 0;
}

.section-title h2 {
    font-family: "Zen Kaku Gothic New";
    margin-top: 0;
    margin-bottom: 0;
    color: var(--color-gray);
}

.page-btn {
    display: block;
    width: 160px;
    margin: 0 auto;
    border: solid 1.5px var(--color-gray);
    border-radius: 100px;
    padding: 12px 24px;
    color: var(--color-gray);
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
    text-align: center;
    font-family: "Zen Kaku Gothic New";
}

.page-btn:hover {
    color: var(--color-white);
    background-color: var(--color-gray);
}


@media screen and (max-width:767px) {
    .section-title {
        margin-bottom: 36px;
    }
    
    .section-title h3 {
        font-size: 18px;
    }

    .section-title h2 {
        font-size: 20px;
    }

    .page-btn {
    margin-top: 32px;
    }
}

.content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 80%;
    font-family: "Zen Kaku Gothic New";
}

.page-btn-con {
    height: 10%;
}

.hello-wrapper {
    text-align: center;
}

.hello-wrapper p {
    line-height: 240%;
    font-family: "Zen Kaku Gothic New";
}

.hello-wrapper span {
    font-weight: 700;
    font-size: 24px;
}

.hello-text {
    width: 80%;
    margin: 0 auto;
}

@media screen and (max-width:767px) {
    .hello-text {
        width: 100%;
    }

    .hello-wrapper {
        margin-top: 80px;
    }

    .hello-wrapper p {
        margin: 0;
    }

    .hello-wrapper span {
        font-size: 18px;
    }
}

.about-wrapper {
    font-family: "Zen Kaku Gothic New";
    text-align: center;
}

@media screen and (min-width: 768px) {
    .about-wrapper {
        padding-left: 80px;
    }
}

@keyframes graphAnim {
    0% {
    transform: translateX(-100%);
    }
    100% {
    transform: translateX(0);
    }
}

.donate-con {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 40px 0;
}

.donate-card {
    background: var(--color-white);
    border-radius: 12px;
    width: 340px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.donate-card-header {
    padding: 20px;
    text-align: center;
    color: var(--color-white);
}

.donate-card-header h3 {
    margin: 0;
    font-size: 18px;
    font-weight: bold;
}

.donate-card-header.orange {
    background-color: var(--color-secondary);
}

.donate-card-header.green {
    background-color: var(--color-primary);
}

.donate-card-header.blue {
    background-color: var(--color-tertiary);
}

.donate-card-body {
    padding: 30px 20px;
    font-family: "Zen Kaku Gothic New";
}

.donate-card-btn {
    display: block;
    width: 100%;
    padding: 12px 20px;
    margin-bottom: 8px;
    text-align: center;
    text-decoration: none;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    background-color: var(--color-white);
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.donate-card-btn.orange-btn {
    border: 2px solid var(--color-secondary);
    color: var(--color-secondary);
    font-weight: bold;
    font-family: 'Zen Kaku Gothic New';
}

.donate-card-btn.orange-btn:hover {
    background-color: var(--color-secondary);
    color: var(--color-white);
}

.donate-card-btn.green-btn {
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
    font-weight: bold;
    font-family: 'Zen Kaku Gothic New';
}

.donate-card-btn.green-btn:hover {
    background-color: var(--color-primary);
    color: var(--color-white);
}

.donate-card-btn.blue-btn {
    border: 2px solid var(--color-tertiary);
    color: var(--color-tertiary);
    font-weight: bold;
    font-family: 'Zen Kaku Gothic New';
}

.donate-card-btn.blue-btn:hover {
    background-color: var(--color-tertiary);
    color: var(--color-white);
}

.donate-card-desc {
    font-size: 12px;
    color: var(--color-gray);
    text-align: center;
    margin: 0 0 20px 0;
}

.donate-wrapper {
    user-select: none;
    cursor: default;
}

@media screen and (max-width:767px) {
    .donate-wrapper {
        margin-top: 80px;
    }

    .bar-graph-wrap {
        width: 300px;
        margin: 0;
    }

    .bar-graph-wrap .graph {
        height: 24px;
    }

    .donate-con {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        margin: 20px 0;
    }

    .donate-card {
        width: 100%;
        max-width: 320px;
    }

    .donate-card-header h3 {
        font-size: 16px;
    }

    .donate-card-body {
        padding: 20px 15px;
    }

    .donate-card-btn {
        font-size: 13px;
        padding: 10px 15px;
    }

    .donate-card-desc {
        font-size: 11px;
        margin-bottom: 15px;
    }
}

.about-con {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    text-align: left;
}

.about-in {
    background-color: var(--color-white);
    border-radius: 12px;
    width: 620px;
    padding: 24px 32px;
    display: flex;
    font-family: "Zen Kaku Gothic New";
    gap: 16px;
}

.about-num {
    color: var(--color-secondary);
    font-size: 14px;
    margin-bottom: 8px;
}

.about-inner h4 {
    font-size: 20px;
    margin: 8px 0;
}

.about-inner p {
    margin: 0;
}

.about-in img {
    width: 300px;
    object-fit: cover;
}

@media screen and (max-width:767px) {
    .about-wrapper {
        margin-top: 80px;
    }

    .about-in {
        flex-direction: column;
    }
}

.news-wrapper {
    text-align: center;
    margin-top: 0;
    padding-top: 120px;
}

.news-con {
    display: flex;
    justify-content: center;
    gap: 64px;
}

.news-in {
    text-align: left;
    width: 360px;
}

.news-in a {
    text-decoration: none;
    color: var(--color-gray);
    font-family: "Zen Kaku Gothic New";
    display: flex;
    flex-direction: column;
}

.news-in h3 {
    font-size: 24px;
    margin: 0;
    font-family: "Zen Kaku Gothic New";
}

.news-in p {
    margin: 0;
    color: var(--color-black);
    margin-top: 8px;
}

.news-in img {
    border-radius: 8px;
}

.home-new-btn {
    height: 10%;
}

.be-a1 {
    font-size: 80px;
    font-family: "Zen Kaku Gothic New";
    color: var(--color-background);
    opacity: .3;
    margin: 0;
    -webkit-text-stroke: 2px var(--color-primary);
}

.be-a2 {
    font-size: 80px;
    font-family: "Zen Kaku Gothic New";
    text-align: right;
    color: var(--color-background);
    opacity: .3;
    margin: 0;
    -webkit-text-stroke: 2px var(--color-primary);
}

@media screen and (min-width: 768px) {
    .footer {
        margin-right: 40px;
    }
}

.footer-logo {
    color: var(--color-gray);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 16px;
}

.footer-logo img {
    width: 72px;
}

.footer-logo p {
    font-size: 16px;
    font-family: 'Zen Maru Gothic';
    font-weight: 700;
    margin: 0;
}

.footer-logo p span {
    color: var(--color-secondary-dark);
}

.footer-inner {
    display: flex;
    gap: 40px;
    font-family: 'Zen Kaku Gothic New';
}

.footer-menu-con {
    display: flex;
    gap: 64px;
    justify-content: center;
    width: 100%;
    align-items: center;
}

.footer-menu-in {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    width: 45%;
    text-align: center;
}

.footer-menu-in h4 {
    font-family: "Zen Kaku Gothic New";
}

.footer-menu-cta {
    width: 55%;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.footer-sns {
    display: flex;
    gap: 24px;
    margin-top: 40px;
}

.sns-icon {
    width: 24px;
    height: 24px;
}

.footer-sns a {
    text-decoration: none;
    color: var(--color-gray);
    background-color: var(--color-white);
    padding: 10px 12px;
    border-radius: 100px;
    font-family: 'Zen Kaku Gothic New';
    font-weight: bold;
    text-align: center;
    display: flex;
    gap: 8px;
    justify-content: center;
    align-items: center;
}

.footer-menu-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    font-family: "Zen Kaku Gothic New";
}

.footer-menu-link a{
    border: solid 2px var(--color-black);
    border-radius: 8px;
    padding: 12px;
    text-decoration: none;
    color: var(--color-gray);
    font-family: 'Zen Kaku Gothic New';
    font-weight: bold;
    width: 25%;
}

.footer-menu-link a:hover {
    color: var(--color-background);
    background-color: var(--color-black);
}

.footer-menu-link .footer-menu-line {
    color: #06c755;
    border-color: #06c755;
}

.footer-menu-link .footer-menu-line:hover {
    color: var(--color-background);
    background-color: #06c755;
}

.footer-con {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.footer-cta1 {
    background-color: var(--color-secondary);
    padding: 24px 40px;
    border-radius: 24px;
}

.footer-menu-cta a {
    text-decoration: none;
    display: flex;
    justify-content: space-between;
}

.footer-cta1:hover {
    background-color: var(--color-secondary-dark);
    .cta-1 {
        color: var(--color-secondary-dark);
    }
}

.footer-cta2 {
    background-color: var(--color-primary);
    padding: 24px 40px;
    border-radius: 24px;
}

.footer-cta2:hover {
    background-color: var(--color-primary-dark);
    .cta-2 {
        color: var(--color-primary-dark);
    }
}

.cta-in {
    display: flex;
    flex-direction: column;
    gap: 8px;
    color: var(--color-background);
    font-family: 'Zen Maru Gothic';
    justify-content: center;
}

.cta-in h3 {
    margin: 0;
}

.cta-in p {
    margin: 0;
}

.cta-btn {
    padding: 20px 24px;
    border-radius: 12px;
    background-color: var(--color-background);
    text-align: center;
}

.cta-btn h4 {
    margin: 0;
}

.cta-1 {
    text-decoration: none;
    color: var(--color-secondary);
    background-color: var(--color-white);
    font-weight: bold;
    font-family: 'Zen Maru Gothic';
}

.cta-2 {
    text-decoration: none;
    color: var(--color-primary);
    background-color: var(--color-white);
    font-weight: bold;
    font-family: 'Zen Maru Gothic';
}

.footer-inner {
    display: flex;
    align-items: center;
    font-size: 14px;
}

.footer-right  ul {
    display: flex;
    list-style: none;
    gap: 24px;
    font-family: "Zen Kaku Gothic New";
}

.footer-right a {
    color: var(--color-primary);
}

.footer-right p {
    font-size: 12px;
    text-align: end;
    font-family: "Zen Kaku Gothic New";
}

@media screen and (max-width:767px) {
    .footer {
        display: none;
    }

    .footer-sns {
        flex-direction: column;
    }
}

.page-title {
    position: absolute;
    bottom: 240px;
    margin-left: 40px;
}

.page-title h1 {
    color: var(--color-gray);
    margin: 0;
    margin-bottom: 0;
    font-family: "Zen Kaku Gothic New";
    font-weight: bold;
}

.page-title h3 {
    color: var(--color-primary);
    margin: 0;
    font-family: "Zen Kaku Gothic New";
}

.about-top-pic {
    width: 960px;
    max-width: 100%;
    height: auto;
    margin-top: 80px;
    margin-left: 180px;
}

.concept-pic-con {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: clamp(20px, 3vw, 40px);
}

.concept-pic {
    width: clamp(250px, 30vw, 380px);
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.explain-wrapper {
    margin-top: 180px;
    margin-right: 48px;
}

@media screen and (min-width: 768px) {
    .explain-wrapper {
        width: 1200px;
    }
}

.explain-wrapper p {
    font-family: "Zen Kaku Gothic New";
}

.hospice-explain-con p{
    line-height: 240%;
}

.hospice-explain-con .section-title-left{
    height: auto;
}

.hospice-explain-con span {
    font-weight: 700;
    font-size: 24px;
}

.hospice-links-container {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    margin-top: 24px;
}

.hospice-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border: 1px solid var(--color-secondary-dark);
    border-radius: 8px;
    color: var(--color-secondary-dark);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    font-family: "Zen Maru Gothic";
}

.hospice-link .link-icon-orange {
    width: 20px;
    height: 20px;
    display: inline-block;
}

.hospice-link .link-icon-white {
    width: 20px;
    height: 20px;
    display: none;
}

.hospice-link:hover {
    background-color: var(--color-secondary-dark);
    color: var(--color-white);
}

.hospice-link:hover .link-icon-orange {
    display: none;
}

.hospice-link:hover .link-icon-white {
    display: inline-block;
}

.concept-wrapper {
    margin-top: 180px;
    margin-right: 48px;
}

@media screen and (min-width: 768px) {
    .concept-wrapper {
        width: 1200px;
    }

    .explain-con {
        width: 1000px;
    }

    .section-title-explain {
        display: flex;
        align-items: flex-end;
        gap: 24px;
    }
}

.explain-con {
    display: flex;
    flex-direction: column;
}

.explain-con span {
    font-weight: 700;
    font-size: 24px;
}

.explain-con p {
    line-height: 240%;
    font-family: "Zen Kaku Gothic New";
}

.section-title-explain h3 {
    color: var(--color-secondary);
    font-family: "Zen Kaku Gothic New";
}

.explain-con {
    font-family: "Zen Kaku Gothic New";
}

.explain-con p {
    margin: 0;
}

.explain-logo {
    width: clamp(200px, 25vw, 300px);
    height: auto;
}

@media screen and (max-width:767px) {
    .page-title {
        bottom: 0;
        top: 140px;
    }

    .page-title h1 {
        font-size: 24px;
    }

    .page-title h3 {
        font-size: 20px;
    }

    .about-top-pic {
        width: 100%;
        max-width: 100%;
        height: auto;
        margin: 0;
        margin-top: 200px;
    }

    .explain-con {
        flex-direction: column;
        gap: 36px;
    }

    .section-title-explain h3 {
        font-size: 18px;
        margin: 0;
        padding: 0;
    }

    .explain-logo {
        width: 100%;
        max-width: 400px;
    }

    .mission-vision {
        flex-direction: column;
        gap: 24px;
        margin-top: 32px;
    }

    .vision {
        margin-top: 0;
    }

    .concept-pic-con {
        flex-direction: column;
        gap: 24px;
        margin-bottom: 40px;
    }

    .concept-pic {
        width: 100%;
    }
}

.about-wrapper-about {
    background-color: var(--color-secondary);
    width: 1448px;
    border-radius: 40px 40px 0 0;
}

.section-title-white {
    padding-top: 20px;
    text-align: center;
    margin-bottom: 32px;
}

.section-title-white h3 {
    color: var(--color-background);
    font-size: 20px;
    font-family: "Zen Kaku Gothic New";
    margin-bottom: 0;
    margin: 0;
}

.section-title-white h2 {
    font-family: "Zen Kaku Gothic New";
    margin: 0;
}

.about-in-orange {
    background-color: var(--color-white);
    border-radius: 12px;
    width: 620px;
    padding: 24px 32px;
    display: flex;
    gap: 16px;
}

.about-in-orange img {
    width: 300px;
    object-fit: cover;
}

.section-title-left {
    margin-bottom: 32px;
}

.section-title-left h3 {
    color: var(--color-secondary);
    font-size: 20px;
    font-family: "Zen Kaku Gothic New";
    margin-bottom: 0;
    margin-top: 0;
}

.section-title-left h2 {
    font-family: "Zen Kaku Gothic New";
    margin-top: 0;
}

@media screen and (max-width:767px) {
    .about-wrapper-about {
        margin-top: 80px;
        margin-left: 18px;
        margin-right: 18px;
        width: calc(100% - 36px);
        border-radius: 24px;
        padding: 0;
        box-sizing: border-box;
        overflow-x: hidden;
    }

    .about-con {
        padding: 0;
        margin-bottom: 32px;
    }

    .about-in-orange {
        flex-direction: column;
    }

    .section-title-white {
        margin-bottom: 36px;
        padding-top: 32px;
        padding-left: 18px;
        padding-right: 18px;
    }

    .section-title-white h3 {
        font-size: 18px;
    }

    .section-title-white h2 {
        font-size: 20px;
    }

    .section-title-left {
        margin-bottom: 36px;
    }

    .section-title-left h3 {
        font-size: 18px;
    }

    .section-title-left h2 {
        font-size: 20px;
    }

    .container-wide {
        display: block;
        width: auto;
    }

    .about-in img {
        width: 100%;
    }
}


.donate-top {
    margin-top: 180px;
    margin-left: 480px;
    height: calc(100% - 180px);
}

.donate-top p {
    color: var(--color-gray);
    font-family: 'Zen Maru Gothic';
    font-weight: 500;
    width: 760px;
    line-height: 220%;
}

.donate-top-1 {
    margin: 0;
}

.donate-top-2 {
    margin-top: 120px;
    margin-left: 400px;
    margin-bottom: 0;
}

.donate-voice-wrapper {
    background-color: var(--color-secondary);
    width: 1348px;
    border-radius: 40px 40px 0 0;
    margin-right: 100px;
}

.slider-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 40px;
    height: 90%;
}

.slider-track-wrapper {
    overflow: hidden;
    flex: 1;
}

.slider-track {
    display: flex;
    transition: transform 0.4s ease;
    padding: 0;
    margin: 0;
    list-style: none;
}

.slider-track li {
    flex: 0 0 33.3333%; /* 3枚ずつ表示 */
    padding: 10px 22px;
    box-sizing: border-box;
}

.slider-btn {
    background-color: transparent;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    padding: 0 10px;
    color: var(--color-gray);
    user-select: none;
}

.message-card {
    background-color: rgb(255, 255, 255, .7);
    border-radius: 12px;
    padding: 40px 20px;
}

.message-pic {
    width: 120px;
    margin: 0 auto;
}

.message-name {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.message-card h4 {
    font-family: 'Zen Maru Gothic';
    margin: 0;
}

.message-card p {
    margin: 0;
    font-family: 'Zen Maru Gothic';
}

.page-title-news {
    text-align: center;
    bottom: 240px;
}

.page-title-news h1 {
    color: var(--color-gray);
    margin-top: 0;
    margin-bottom: 0;
    font-family: "Zen Kaku Gothic New";
    font-weight: bold;
}

.page-title-news h3 {
    color: var(--color-primary);
    margin-top: 0;
}

.page-title-news p {
    font-family: 'Zen Kaku Gothic New';
    margin-top: 40px;
}

.wave {
    width: 1000px;
    margin: 40px auto;
    margin-bottom: 80px;
}


.news-in-news {
    text-align: left;
    width: 360px;
}

.news-in-news a {
    text-decoration: none;
    color: var(--color-gray);
    font-family: "Zen Kaku Gothic New";
    display: flex;
    flex-direction: column;
}

.news-in-news h4 {
    margin: 0;
}

.news-in-news p {
    margin: 0;
    color: var(--color-black);
    margin-top: 8px;
}

.news-pic {
    overflow: hidden;
    border-radius: 8px;
}

.news-pic img {
    width: 360px;
    transition: 1s all;
}

.news-pic img:hover {
    transform: scale(1.2,1.2);
    transition: 1s all;
}

@media screen and (max-width:767px) {
    .news-wrapper {
        margin-top: 0;
        padding: 100px 18px 0 18px;
    }

    .news-in {
        width: auto;
    }


    .news-con {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }

    .news-in h3 {
        font-size: 18px;
    }

    .news-in-news {
        width: 100%;
        max-width: 360px;
    }

    .news-pic img {
        margin-bottom: 12px;
        width: 100%;
    }
}

.news-list-wrapper {
    display: flex;
    flex-wrap: wrap;
}

/* 3列×2行のグリッドレイアウト */
.news-grid-3x2 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 64px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

/* グリッドセクションのスタイル */
.news-grid-section {
    text-align: center;
    padding: 0 32px;
    width: 100%;
    max-width: none;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* グリッド内のニュースアイテム */
.news-grid-3x2 .news-in-news {
    width: auto;
}

.news-grid-3x2 .news-pic img {
    width: 100%;
    height: auto;
    object-fit: cover;
    aspect-ratio: 16/9;
}

@media screen and (max-width: 767px) {
    .wave {
        width: 370px;
    }

        .page-title {
        bottom: 0;
        top: 140px;
    }

    .page-title-news h1 {
        font-size: 24px;
    }

    .page-title-news h3 {
        font-size: 20px;
    }
    
    /* モバイルでは1列表示 */
    .news-grid-3x2 {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 40px;
    }
    
    .news-grid-section {
        padding: 0 16px;
    }
}

.gaiyou-top {
    margin-left: 800px;
    margin-top: 120px;
    height: calc(100% - 120px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.gaiyou-top p {
    font-family: 'Zen Maru Gothic';
    line-height: 160%;
    color: var(--color-gray);
    font-weight: 500;
}

.daihyou-jiro-description {
    display: flex;
    align-items: center;
    margin-top: 0;
    align-self: flex-end;
    position: relative;
    margin-bottom: 0;
}

.daihyou-text {
    text-align: right;
}

.daihyou-text p {
    margin: 0;
    font-size: 14px;
    color: var(--color-gray);
}

.daihyou-text h4 {
    margin: 8px 0 0 0;
    font-size: 24px;
    color: var(--color-gray);
}

.daihyou-img {
    width: 700px;
    height: auto;
    flex-shrink: 0;
}

.members-wrapper {
    display: flex;
    align-items: center;
    width: 1500px
}

.member-con {
    display: flex;
    flex-wrap: wrap;
    width: 1500px;
    gap: 24px;
}

.member-card {
    display: flex;
    background-color: var(--color-white);
    border-radius: 12px;
    padding: 20px 24px;
    gap: 20px;
    width: 420px;
    align-items: center;
}

.member-con img {
    width: 80px;
}

.member-card-in {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-family: 'Zen Maru Gothic';
}

.member-card-in h4 {
    margin: 0;
}

.member-position {
    font-size: 14px;
    font-weight: 700;
}

.member-card-in p {
    margin: 0;
    font-size: 14px;
}

.members-wrapper h5 {
    margin: 0 auto;
}

.donation-explain-wrapper {
    justify-content: center;
    align-items: center;
}

.donation-ex-con {
    display: flex;
    flex-direction: column;
    gap: 32px;
    width: 1000px;
    font-family: 'Zen Kaku Gothic New';
}

.donation-ex-in {
    display: flex;
    flex-direction: column;
}

.donation-ex-con h4 {
    margin: 0;
    background-color: #DDEADB;
    padding: 12px 24px 12px 24px;
    border-radius: 24px 24px 0 0;
}

.donation-ex-con h5 {
    margin: 0;
}

.dontation-ex-in-txt {
    margin: 0;
    background-color: var(--color-white);
    padding: 16px 24px;
    border-radius: 0 0 24px 24px;
}

.media-wrapper {
    width: 1200px;
    align-items: center;
}

.media-con {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 1000px;
    padding: 32px 24px;
    border-radius: 24px;
    background-color: rgb(255, 255, 255, 0.7);
    max-height: calc(100vh - 240px);
    overflow-y: auto;
    height: calc(90% - 32px);
    margin-top: 32px;
}

.media-in {
    display: flex;
    gap: 24px;
    align-items: center;
}

.media-in a {
    color: var(--color-primary);
}

.media-in a:hover {
    color: var(--color-secondary-dark);
}

.media-inner p {
    margin: 0;
}

.section-title-white-left {
    padding-top: 20px;
}

.section-title-white-left h3 {
    color: var(--color-background);
    font-size: 20px;
    font-family: "Zen Kaku Gothic New";
    margin-bottom: 0;
}

.section-title-white-left h2 {
    font-family: "Zen Kaku Gothic New";
    margin-top: 0;
}

.profile-wrapper {
    background-color: var(--color-primary);
    border-radius: 40px 40px 0 0;
    padding: 0 120px 80px;
    font-family: "Zen Kaku Gothic New";
    gap: 72px;
    width: 1200px;
    margin-right: 200px;
}

.profile-wrapper h2{
    margin: 0;
}

.profile-wrapper h3{
    margin: 0;
}

.profile-con{
    display: flex;
    gap: clamp(32px, 8vw, 80px);
}

.profile-in {
    display: flex;
    flex-direction: column;
    gap: clamp(16px, 2vw, 24px);
}

.profile-in-group {
    display: flex;
    flex-direction: column;
    gap: clamp(32px, 4vw, 48px);
}

.profile-inner {
    display: flex;
    align-items: center;
    gap: 48px;
}

.profile-inner ul {
    padding: 0;
}

.profile-in h5 {
    margin: 0;
}

.profile-in p {
    margin: 0;
    font-size: 20px;
}

.profile-in a {
    color: var(--color-gray);
}


.profile-document ul {
    display: flex;
    gap: 40px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.profile-document a {
    margin: 0;
}

.daihyou-shape {
    width: 180px;
    position: absolute;
    left: 650px;
    top: 120px;
    z-index: -999;
}

.sp-footer {
    display: none;
}

.sp-footer-menu-con {
    display: flex;
    justify-content: center;
    font-family: "Zen Kaku Gothic New";
}

.sp-footer-menu-in {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    font-family: "Zen Kaku Gothic New";
}

.sp-footer-menu-inner {
    text-decoration: none;
    color: var(--color-background);
    background-color: var(--color-secondary);
    padding: 16px 40px;
    border-radius: 100px;
    font-family: 'Zen Maru Gothic';
    font-weight: bold;
    text-align: center;
    width: 240px;
}

.sp-be-a1 {
    font-size: 56px;
    font-family: "Zen Kaku Gothic New";
    color: var(--color-background);
    opacity: .3;
    margin: 0;
    -webkit-text-stroke: 2px #B0C68C;
}

.sp-be-a2 {
    font-size: 56px;
    font-family: "Zen Kaku Gothic New";
    text-align: right;
    color: var(--color-background);
    opacity: .3;
    margin: 0;
    -webkit-text-stroke: 2px #B0C68C;
}

.sp-footer-logo {
    color: var(--color-gray);
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
}

.sp-footer-logo img {
    width: 36px;
    height: fit-content;
}

.sp-footer-logo p {
    font-size: 12px;
    font-family: 'Zen Maru Gothic';
    font-weight: 700;
    margin: 0;
}

.sp-footer-logo p span {
    color: var(--color-secondary-dark);
}

.sp-footer-menu-btn {
    margin-top: 20px;
    font-family: "Zen Kaku Gothic New";
}

.sp-footer-menu-btn ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 20px;
    justify-content: space-between;
    font-family: "Zen Kaku Gothic New";
}

.sp-footer-menu-btn a {
    text-decoration: none;
    color: var(--color-background);
    width: 180px;
    font-family: "Zen Kaku Gothic New";
}

.footer-donate-btn {
    padding: 12px 24px;
    margin: 0;
    background-color: var(--color-secondary);
    border-radius: 12px;
    height: 40px;
    text-align: center;
    font-weight: bold;
    align-content: center;
    font-family: "Zen Kaku Gothic New";
}

.footer-contact-btn {
    padding: 12px 24px;
    margin: 0;
    background-color: var(--color-primary);
    border-radius: 12px;
    height: 40px;
    text-align: center;
    font-weight: bold;
    align-content: center;
    font-family: "Zen Kaku Gothic New";
}

.sp-footer-right ul {
    padding: 0;
    list-style: none;
    text-align: center;
    margin: 0;
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-family: "Zen Kaku Gothic New";
}

.sp-footer-right a {
    color: var(--color-gray);
    font-family: "Zen Kaku Gothic New";
}

.sp-footer-address {
    text-align: center;
    margin-top: 24px;
    font-family: "Zen Kaku Gothic New";
}

.sp-footer-address p {
    margin: 0;
    font-family: "Zen Kaku Gothic New";
}

.copyright {
    font-size: 10px;
    margin: 0;
    margin-top: 24px;
    margin-bottom: 8px;
    text-align: center;
} 

@media screen and (max-width:767px) {
    .sp-footer {
        display: block
    }
}

.our-journey-wrapper{
    display: flex;
    justify-content: center;
    flex-direction: row;
    width: 2400px;
    max-width: 100%;
}

.our-journey-con {
    display: flex;
    gap: -20px;
    height: 508px;
    align-self: center;
    position: relative;
}

.our-journey-con::before {
    width: 1500px;
    height: 2px;
    left: 40px;
    content: '';
    position: absolute;
    top: 254px;
    background-color: var(--color-primary);
}

.our-journey-con::after {
    width: 12px;
    height: 12px;
    left: 34px;
    content: '';
    position: absolute;
    top: 249px;
    background-color: var(--color-primary);
    border-radius: 50%;
}

.our-journey-year {
    width: 480px;
    align-self: flex-start;
    display: flex;
    flex-direction: column;
}

.our-journey-year-bottom {
    align-self: flex-end;
}

.our-journey-year-negative {
    margin-left: -120px;
}

.our-journey-year h3 {
    color: var(--color-secondary);
    margin: 16px 0;
    display: none;
}

.our-journey-year-negative h3 {
    display: block;
    font-family: 'Zen Maru Gothic';
}

.our-journey-year-con {
    background-color: var(--color-white);
    display: block;
    padding: 20px 24px;
    border-radius: 8px;
}

.our-journey-year-con h4 {
    margin: 0 0 12px;
    font-size: 20px;
    font-family: 'Zen Kaku Gothic New';
}

.our-journey-year-con p {
    margin: 0;
    font-size: 16px;
    font-family: 'Zen Kaku Gothic New';
}

.our-journey-year-con .our-journey-date {
    margin-top: 16px;
}

@media screen and (max-width:767px) {
    .our-journey-wrapper {
        width: calc(100% - 36px);
        flex-direction: column;
    }

    .our-journey-con {
        width: 100%;
        height: auto;
        flex-direction: column;
        align-items: center;
        padding: 0 16px;
        width: calc(100% - 32px);
    }

    .our-journey-con::before {
        width: 2px;
        height: 1016px;
        left: 0;
        top: 0;
    }

    .our-journey-con::after {
        left: -6px;
        top: -6px;
    }

    .our-journey-year {
        width: 100%;
        align-self: center;
    }

    .our-journey-year-negative {
        margin-left: 0;
    }

    .our-journey-year h3 {
        display: block;
        order: 1;
    }

    .our-journey-year-con {
        order: 2;
    }
}

/* ページネーションスタイル */
.pagination {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 8px !important;
    margin-top: 48px !important;
    font-family: 'Zen Kaku Gothic New', sans-serif !important;
}

.pagination a,
.pagination span,
.pagination .page-numbers {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-width: 40px !important;
    height: 40px !important;
    padding: 0 12px !important;
    border: 1.5px solid var(--color-gray) !important;
    border-radius: 25px !important;
    background-color: var(--color-white) !important;
    color: var(--color-gray) !important;
    font-size: 14px !important;
    font-weight: bold !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    cursor: pointer !important;
    box-sizing: border-box !important;
}

.pagination a:hover,
.pagination .page-numbers:hover {
    background-color: var(--color-secondary) !important;
    border-color: var(--color-secondary) !important;
    color: white !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1) !important;
}

.pagination .current,
.pagination span.current {
    background-color: var(--color-secondary) !important;
    border-color: var(--color-secondary) !important;
    color: white !important;
    cursor: default !important;
    font-weight: bold !important;
    transform: scale(1.1) !important;
    box-shadow: 0 4px 12px rgba(246, 173, 72, 0.4) !important;
}

.pagination .current:hover,
.pagination span.current:hover {
    transform: scale(1.1) !important;
    box-shadow: 0 4px 12px rgba(246, 173, 72, 0.4) !important;
}

.pagination .prev,
.pagination .next,
.pagination a.prev,
.pagination a.next {
    min-width: auto !important;
    padding: 0 16px !important;
    font-size: 18px !important;
    font-weight: normal !important;
    line-height: 1 !important;
}

.pagination .dots,
.pagination span.dots {
    border: none;
    background: none;
    color: var(--color-gray);
    cursor: default;
}

.pagination .dots:hover,
.pagination span.dots:hover {
    background: none;
    border: none;
    color: var(--color-gray);
    transform: none;
    box-shadow: none;
}

/* 現在のページ番号の強調表示 */
.pagination .page-numbers.current {
    position: relative !important;
    background-color: var(--color-secondary) !important;
    border-color: var(--color-secondary) !important;
    color: white !important;
    transform: scale(1.15) !important;
    z-index: 1 !important;
}

.pagination span[aria-current="page"] {
    background-color: var(--color-secondary) !important;
    border-color: var(--color-secondary) !important;
    color: white !important;
    transform: scale(1.15) !important;
    box-shadow: 0 4px 12px rgba(246, 173, 72, 0.5) !important;
    font-weight: bold !important;
}

@media screen and (max-width: 767px) {
    .pagination {
        margin-top: 32px;
    }

    .pagination .page-numbers {
        min-width: 36px;
        height: 36px;
        font-size: 13px;
        padding: 0 10px;
    }

    .pagination .prev,
    .pagination .next {
        padding: 0 12px !important;
        font-size: 16px !important;
    }

    /* donation.html レスポンシブ対応 */
    .donate-top {
        margin: 0;
        margin-top: 280px;
        padding: 0 18px;
        height: auto;
    }

    .donate-top p {
        width: 100%;
        font-size: 14px;
        line-height: 180%;
    }

    .donate-top-1 {
        margin: 0;
    }

    .donate-top-2 {
        margin-top: 40px;
        margin-left: 0;
        margin-bottom: 0;
    }

    .donate-voice-wrapper {
        width: calc(100% - 36px);
        border-radius: 40px;
        padding: 0;
        margin: 80px auto 0;
    }

    .donation-explain-wrapper {
        margin-top: 80px;
    }

    .donation-ex-con {
        width: calc(100% - 36px);
        padding: 0;
        margin: 0 18px;
        gap: 24px;
        box-sizing: border-box;
    }

    .donation-ex-con h4 {
        font-size: 16px;
        padding: 10px 20px;
    }

    .dontation-ex-in-txt {
        font-size: 14px;
        padding: 12px 20px;
    }

    .slider-container {
        flex-direction: row;
        height: auto;
        gap: 8px;
        padding: 0 18px 32px 18px;
        max-width: 100%;
        box-sizing: border-box;
        justify-content: center;
        align-items: center;
    }

    .slider-btn {
        font-size: 1.5rem;
        padding: 0;
        min-width: 24px;
        flex-shrink: 0;
    }

    .slider-track-wrapper {
        flex: 1;
        max-width: calc(100% - 64px);
        overflow: hidden;
    }

    .slider-track li {
        flex: 0 0 100%;
        padding: 10px 4px;
        box-sizing: border-box;
    }

    .message-card {
        padding: 24px 16px;
    }

    .message-pic {
        width: 80px;
    }

    .message-card h4 {
        font-size: 16px;
    }

    .message-card p {
        font-size: 14px;
    }

    /* gaiyou.html レスポンシブ対応 */
    .gaiyou-top {
        margin: 0;
        margin-top: 280px;
        width: calc(100% - 36px);
        margin-left: 18px;
        margin-right: 18px;
        box-sizing: border-box;
    }

    .gaiyou-top p {
        font-size: 14px;
        line-height: 180%;
    }

    .gaiyou-top h2 {
        font-size: 20px;
    }

    .daihyou-jiro-description {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        margin-top: 24px;
        margin-bottom: 0;
    }

    .daihyou-text p {
        font-size: 12px;
    }

    .daihyou-text h4 {
        font-size: 18px;
    }

    .daihyou-img {
        width: 100%;
        height: auto;
    }

    .members-wrapper {
        width: calc(100% - 36px);
        margin: 80px 18px 0 18px;
        box-sizing: border-box;
    }

    .member-con {
        flex-direction: column;
        width: 100%;
        margin: 0;
        gap: 16px;
    }

    .member-card {
        width: 100%;
        box-sizing: border-box;
    }

    .member-card:nth-child(1) { order: 1; } /* 代表理事 */
    .member-card:nth-child(2) { order: 2; } /* 副代表理事 */
    .member-card:nth-child(3) { order: 3; } /* 副代表理事 */
    .member-card:nth-child(4) { order: 4; } /* 理事 */
    .member-card:nth-child(5) { order: 5; } /* 理事 */
    .member-card:nth-child(6) { order: 6; } /* 理事 */
    .member-card:nth-child(7) { order: 7; } /* 監事 */
    .member-card:nth-child(8) { order: 8; } /* 顧問 */
    .member-card:nth-child(9) { order: 9; } /* 事務局 */

    .member-con img {
        width: 60px;
    }

    .member-card-in h4 {
        font-size: 16px;
    }

    .member-card-in p {
        font-size: 12px;
    }

    .members-wrapper h5 {
        font-size: 14px;
        text-align: center;
        padding: 0 18px;
    }

    .media-wrapper {
        margin-top: 80px;
        width: calc(100% - 36px);
    }

    .media-con {
        width: 100%;
        margin: 0;
        padding: 0;
        max-height: none;
        box-sizing: border-box;
    }

    .media-in {
        flex-direction: column;
        gap: 8px;
        align-items: flex-start;
        padding: 16px 18px;
        border-bottom: 1px solid #e0e0e0;
    }

    .media-in:last-child {
        border-bottom: none;
    }

    .media-in p {
        font-size: 12px;
    }

    .media-inner p {
        font-size: 14px;
    }

    .media-in a {
        font-size: 12px;
        word-break: break-all;
    }

    .profile-wrapper {
        margin-top: 80px;
        margin-left: 18px;
        margin-right: 18px;
        width: calc(100% - 36px);
        padding: 0;
        border-radius: 24px;
        box-sizing: border-box;
    }

    .profile-con {
        flex-direction: column;
        width: calc(100% - 36px);
        margin: 0 18px;
        padding: 32px 0;
    }

    .profile-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .profile-wrapper h2 {
        font-size: 20px;
        padding: 0 18px;
    }

    .profile-wrapper h3 {
        font-size: 18px;
    }

    .profile-in h5 {
        font-size: 16px;
    }

    .profile-in p {
        font-size: 14px;
    }

    .profile-inner ul {
        margin: 0;
        padding-left: 20px;
        font-size: 14px;
    }

    .profile-document ul {
        flex-direction: column;
        gap: 12px;
    }

    .section-title-white-left {
        padding: 32px 18px 0 18px;
    }

    .section-title-white-left h3 {
        font-size: 18px;
    }

    .section-title-white-left h2 {
        font-size: 20px;
    }

    .daihyou-shape {
        display: none;
    }

    /* footer-menu-link スマホ対応 */
    .footer-menu-link {
        flex-direction: row;
        gap: 8px;
        width: 100%;
    }

    .footer-menu-link a {
        flex: 1;
        padding: 12px 4px;
        text-align: center;
        white-space: nowrap;
        font-size: 13px;
        line-height: 1.3;
        box-sizing: border-box;
    }

    .sp-footer-menu-in h4 {
        margin-bottom: 0;
    }
}

.contact-wrapper {
    text-align: center;
    color: var(--color-primary);
    display: flex;
    justify-content: center;
    align-items: center;
    height: calc(100% - 103px);
    margin-top: 103px;
    width: 1200px;
    flex-direction: column;
    font-family: 'Zen Kaku Gothic New';
    gap: 40px;
    position: relative;
}

.contact-message h5 {
    line-height: 240%;
}

.contact-message  a {
    color: #4bbd4f;
    font-weight: bold;
    font-size: 20px;
    border: solid 3px;
    padding: 8px 24px;
    border-radius: 40px;
}

.back-to-top {
    color: var(--color-primary);
    font-weight: bold;
    font-size: 20px;
}

.contact-bg-icon {
    position: absolute;
    bottom: 40px;
    right: 40px;
    width: 480px;
    height: auto;
    opacity: 0.1;
    z-index: -1;
}

.single-news-wrapper {
    width: 1200px;
    height: calc(100vh - 120px);
    overflow-y: auto;
    overflow-x: hidden;
    background-color: rgba(243, 247, 235, 0.8);
    display: flex;
    justify-content: center;
    align-items: flex-start;
    margin: 120px 40px 0;
}

/* スクロールバーのカスタマイズ */
.single-news-wrapper::-webkit-scrollbar {
    width: 8px;
}

.single-news-wrapper::-webkit-scrollbar-track {
    background: var(--color-background);
    border-radius: 4px;
}

.single-news-wrapper::-webkit-scrollbar-thumb {
    background: #B0C68C;
    border-radius: 4px;
}

.single-news-wrapper::-webkit-scrollbar-thumb:hover {
    background: var(--color-primary);
}

.single-news-article {
    width: calc(100% - 120px);
    height: 100%;
    padding: 120px 40px 60px 40px;
}

.single-news-header {
    text-align: center;
    margin-bottom: 120px;
    position: relative;
    width: 100%;
    align-items: flex-end;
}

.single-news-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--color-gray);
    margin: 0;
    line-height: 1.4;
    font-family: 'Zen Kaku Gothic New', sans-serif;
}

.single-news-date {
    font-size: 20px;
    color: var(--color-black);
    display: inline-block;
}

.single-news-thumbnail {
    text-align: center;
}

.single-news-thumbnail img {
    width: 100%;
    max-width: 1200px;
    height: auto;
    border-radius: 16px;
    object-fit: cover;
}

.single-news-content {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    padding-bottom: 120px;
}

.single-news-content h2 {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-gray);
    margin: 40px 0 20px 0;
    padding-bottom: 8px;
    border-bottom: 2px solid #B0C68C;
}

.single-news-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-gray);
    margin: 32px 0 16px 0;
}

.single-news-content p {
    font-size: 20px;
    line-height: 2;
    color: var(--color-gray);
    margin: 20px 0;
}

.single-news-content ul,
.single-news-content ol {
    font-size: 20px;
    line-height: 2;
    color: var(--color-gray);
    margin: 20px 0;
    padding-left: 40px;
}

.single-news-content li {
    margin: 8px 0;
}

.single-news-content img {
    max-width: 100%;
    height: auto;
    margin: 30px 0;
    border-radius: 8px;
}

.single-news-content blockquote {
    margin: 30px 0;
    padding: 20px;
    background-color: var(--color-white);
    border-left: 4px solid #B0C68C;
    font-style: italic;
}

.single-news-content a {
    color: var(--color-tertiary);
    text-decoration: underline;
}

.single-news-content a:hover {
    color: var(--color-primary-dark);
}

/* 記事が見つからない場合 */
.single-news-notfound {
    text-align: center;
    padding: 60px 20px;
}

.single-news-notfound h1 {
    font-size: 28px;
    color: var(--color-gray);
    margin-bottom: 20px;
}

.single-news-notfound p {
    font-size: 16px;
    color: var(--color-black);
    margin-bottom: 30px;
}

.single-news-back {
    display: inline-block;
    background-color: var(--color-primary-dark);
    color: var(--color-white);
    padding: 12px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.single-news-back:hover {
    background-color: var(--color-primary-dark);
    transform: translateY(-2px);
}

@media screen and (max-width: 768px) {
    .single-news-container {
        width: calc(100% - 36px);
        padding: 0 18px;
    }

    .single-news-wrapper {
        width: 100%;
        height: auto;
        padding: 0;
        margin: 0;
        margin-top: 120px;
    }

    .single-news-article {
        width: 100%;
        padding: 0;
    }

    .single-news-header {
        margin-bottom: 60px;
    }

    .single-news-thumbnail {
        margin-bottom: 40px;
    }

    .single-news-content{
        padding-bottom: 0px;
    }
    
    .single-news-title {
        font-size: 24px;
    }
    
    .single-news-date {
        font-size: 14px;
    }
    
    .single-news-content p,
    .single-news-content ul,
    .single-news-content ol {
        font-size: 16px;
        line-height: 1.8;
    }
    
    .single-news-content h2 {
        font-size: 20px;
    }
    
    .single-news-content h3 {
        font-size: 18px;
    }
}

/* ======================================
   お問い合わせページスタイル（Contact Form 7対応）
====================================== */

/* コンテナー */
.contact-container {
    width: 2650px;
    margin: 0 auto;
}

/* ページタイトル */
.contact-container .page-title {
    text-align: center;
    margin-bottom: 40px;
}

.contact-container .page-title h1 {
    font-size: 36px;
    font-weight: bold;
    color: var(--color-black);
    margin-bottom: 8px;
}

.contact-container .page-title h3 {
    font-size: 18px;
    color: #A19789;
    font-weight: normal;
    font-family: "Zen Kaku Gothic New";
}

/* 波模様の装飾 */
.wave-decoration {
    margin: 40px 0;
    text-align: center;
}

.wave-decoration svg {
    max-width: 800px;
    height: 20px;
}

/* コンタクトラッパー */
.contact-wrapper {
    background: transparent;
}

/* 説明文 */
.contact-description {
    text-align: center;
    margin-bottom: 40px;
}

.contact-description p {
    font-size: 16px;
    color: var(--color-black);
    margin-bottom: 8px;
}

.required-note {
    font-size: 14px;
    color: var(--color-secondary-dark) !important;
}

/* フォームスタイル */
.form-group {
    margin-bottom: 40px;
}

.form-group label {
    display: block;
    font-size: 18px;
    color: #A19789;
    margin-bottom: 14px;
    font-weight: 500;
}

.required {
    color: var(--color-secondary-dark);
    font-size: 20px;
    font-weight: bold;
}

/* 入力フィールド */
.form-group input[type="text"],
.form-group input[type="email"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 24px;
    border: 1px solid var(--color-gray);
    border-radius: 8px;
    font-size: 16px;
    background-color: var(--color-white);
    color: var(--color-gray);
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-secondary-dark);
    box-shadow: 0 0 0 2px rgba(255, 126, 59, 0.2);
}

/* セレクトボックス */
.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 12px center;
    background-repeat: no-repeat;
    background-size: 16px;
    padding-right: 48px;
}

/* テキストエリア */
.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

/* プライバシーポリシー同意 */
.privacy-group {
    margin-bottom: 60px;
}

.checkbox-container {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 16px;
    color: var(--color-black);
    gap: 12px;
}

.checkbox-container input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 24px;
    height: 24px;
    border: 2px solid #ccc;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.checkbox-container input[type="checkbox"]:checked + .checkmark {
    background-color: var(--color-secondary-dark);
    border-color: var(--color-secondary-dark);
}

.checkbox-container input[type="checkbox"]:checked + .checkmark::after {
    content: "✓";
    color: var(--color-white);
    font-weight: bold;
    font-size: 14px;
}

/* 送信ボタン */
.form-submit {
    text-align: center;
    margin-top: 80px;
}

.btn-confirm,
.btn-submit {
    background-color: var(--color-secondary-dark);
    color: var(--color-white);
    border: none;
    padding: 16px 80px;
    font-size: 18px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    margin: 0 10px;
}

.btn-confirm:hover,
.btn-submit:hover {
    background-color: #e6692f;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 126, 59, 0.3);
}

.btn-confirm:disabled,
.btn-submit:disabled {
    background-color: #d9d9d9;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.btn-back {
    background-color: transparent;
    color: var(--color-black);
    border: 2px solid var(--color-black);
    padding: 14px 40px;
    font-size: 16px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 0 10px;
}

.btn-back:hover {
    background-color: var(--color-black);
    color: var(--color-white);
}

/* モーダル（確認画面）*/
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
    animation: fadeIn 0.3s;
}

.modal-content {
    background-color: #fefefe;
    margin: 5% auto;
    padding: 0;
    border-radius: 12px;
    width: 90%;
    max-width: 600px;
    animation: slideIn 0.3s;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.modal-header {
    padding: 24px 32px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h2 {
    margin: 0;
    font-size: 24px;
    color: var(--color-black);
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
}

.close:hover,
.close:focus {
    color: var(--color-gray);
}

.modal-body {
    padding: 32px;
}

.confirm-item {
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid #f0f0f0;
}

.confirm-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.confirm-item strong {
    display: block;
    font-size: 14px;
    color: #A19789;
    margin-bottom: 8px;
}

.confirm-item span,
.confirm-item pre {
    font-size: 16px;
    color: var(--color-black);
    line-height: 1.5;
}

.confirm-item pre {
    white-space: pre-wrap;
    word-wrap: break-word;
    font-family: inherit;
    margin: 0;
}

.modal-footer {
    padding: 24px 32px;
    border-top: 1px solid #eee;
    text-align: center;
}

/* 成功・エラーメッセージ */
.contact-message {
    padding: 16px 24px;
    margin-bottom: 32px;
    border-radius: 8px;
    text-align: center;
    font-size: 16px;
}

.contact-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.contact-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.contact-sp-only {
    display: none;
}

/* アニメーション */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from { 
        opacity: 0;
        transform: translateY(-50px);
    }
    to { 
        opacity: 1;
        transform: translateY(0);
    }
}

/* レスポンシブ対応 */
@media screen and (max-width: 767px) {
    .contact-container {
        padding: 0px 18px;
        margin: 0;
        width: calc(100% - 36px);
    }

    .contact-wrapper {
        width: 100%;
        margin: 120px 0 0;
    }

    .contact-message {
        font-size: 14px;
        padding: 0;
    }

    .contact-sp-only {
        display: block;
    }
    
    .contact-container .page-title h1 {
        font-size: 28px;
    }
    
    .contact-container .page-title h3 {
        font-size: 16px;
    }
    
    .form-group {
        margin-bottom: 32px;
    }
    
    .form-group label {
        font-size: 16px;
    }
    
    .form-group input[type="text"],
    .form-group input[type="email"],
    .form-group select,
    .form-group textarea {
        padding: 12px 16px;
        font-size: 16px;
    }
    
    .btn-confirm,
    .btn-submit {
        width: 100%;
        margin: 10px 0;
        padding: 16px 20px;
    }
    
    .btn-back {
        width: 100%;
        margin: 10px 0;
        padding: 14px 20px;
    }
    
    .modal-content {
        margin: 10% auto;
        width: 95%;
    }
    
    .modal-header,
    .modal-body,
    .modal-footer {
        padding: 20px;
    }
    
    .modal-header h2 {
        font-size: 20px;
    }
    
    .modal-footer {
        text-align: center;
    }
    
    .modal-footer button {
        width: 100%;
        margin: 8px 0;
    }
}

/* ======================================
   Contact Form 7 専用スタイル
====================================== */

/* CF7フォームのリセット */
.wpcf7-form {
    margin: 0;
}

.wpcf7-form p {
    margin-bottom: 0;
}

/* CF7フォーム全体のラッパー */
.cf7-form-wrapper {
    max-width: none;
}

/* CF7説明文 */
.wpcf7-form .contact-description {
    text-align: center;
    margin-bottom: 40px;
}

.wpcf7-form .contact-description p {
    font-size: 16px;
    color: var(--color-black);
    margin-bottom: 8px;
}

.wpcf7-form .required-note {
    font-size: 14px;
    color: var(--color-secondary-dark) !important;
}

/* CF7 波模様の装飾 */
.wpcf7-form .wave-decoration {
    margin: 40px 0;
    text-align: center;
}

.wpcf7-form .wave-decoration svg {
    max-width: 800px;
    height: 20px;
}

/* CF7 フォームグループ */
.wpcf7-form .form-group {
    margin-bottom: 40px;
}

.wpcf7-form .form-group label {
    display: block;
    font-size: 18px;
    color: #A19789;
    margin-bottom: 14px;
    font-weight: 500;
}

.wpcf7-form .required {
    color: var(--color-secondary-dark);
    font-size: 20px;
    font-weight: bold;
}

/* CF7 入力フィールドスタイル */
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form select,
.wpcf7-form textarea {
    width: 100%;
    padding: 14px 24px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    background-color: var(--color-white);
    color: var(--color-gray);
    transition: all 0.3s ease;
    box-sizing: border-box;
    font-family: inherit;
}

.wpcf7-form input[type="text"]:focus,
.wpcf7-form input[type="email"]:focus,
.wpcf7-form select:focus,
.wpcf7-form textarea:focus {
    outline: none;
    border-color: var(--color-secondary-dark);
    box-shadow: 0 0 0 2px rgba(255, 126, 59, 0.2);
}

/* CF7 セレクトボックス */
.wpcf7-form select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 12px center;
    background-repeat: no-repeat;
    background-size: 16px;
    padding-right: 48px;
}

/* CF7 テキストエリア */
.wpcf7-form textarea {
    min-height: 150px;
    resize: vertical;
}

/* CF7 チェックボックス（プライバシーポリシー同意）*/
.wpcf7-form .privacy-group {
    margin-bottom: 60px;
}

.wpcf7-form .wpcf7-acceptance {
    margin: 0;
}

.wpcf7-form .wpcf7-list-item {
    margin: 0;
    list-style: none;
}

.wpcf7-form .wpcf7-list-item label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 16px;
    color: var(--color-black);
    gap: 12px;
    margin-bottom: 0;
}

.wpcf7-form input[type="checkbox"] {
    width: 24px;
    height: 24px;
    margin: 0;
    flex-shrink: 0;
}

/* CF7 送信ボタン */
.wpcf7-form .form-submit {
    text-align: center;
    margin-top: 80px;
}

.wpcf7-form input[type="submit"],
.wpcf7-form .btn-submit {
    background-color: var(--color-secondary-dark);
    color: var(--color-white);
    border: none;
    padding: 16px 80px;
    font-size: 18px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    font-family: inherit;
}

.wpcf7-form input[type="submit"]:hover,
.wpcf7-form .btn-submit:hover {
    background-color: var(--color-secondary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 126, 59, 0.3);
}

.wpcf7-form input[type="submit"]:disabled,
.wpcf7-form .btn-submit:disabled {
    background-color: #d9d9d9;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* CF7 メッセージ */
.wpcf7-response-output {
    padding: 16px 24px;
    margin: 32px 0;
    border-radius: 8px;
    text-align: center;
    font-size: 16px;
}

.wpcf7-mail-sent-ok {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.wpcf7-mail-sent-ng,
.wpcf7-aborted,
.wpcf7-validation-errors {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* CF7 バリデーションエラー */
.wpcf7-not-valid-tip {
    color: #dc3545;
    font-size: 14px;
    margin-top: 5px;
}

.wpcf7-not-valid {
    border-color: #dc3545 !important;
    box-shadow: 0 0 0 2px rgba(220, 53, 69, 0.2) !important;
}

/* CF7 スピナー */
.wpcf7-spinner {
    visibility: visible !important;
    display: inline-block;
    width: 24px;
    height: 24px;
    margin-left: 10px;
}

/* CF7 レスポンシブ対応 */
@media screen and (max-width: 767px) {
    .wpcf7-form .form-group {
        margin-bottom: 32px;
    }
    
    .wpcf7-form .form-group label {
        font-size: 16px;
    }
    
    .wpcf7-form input[type="text"],
    .wpcf7-form input[type="email"],
    .wpcf7-form select,
    .wpcf7-form textarea {
        padding: 12px 16px;
        font-size: 16px;
    }
    
    .wpcf7-form input[type="submit"],
    .wpcf7-form .btn-submit {
        width: 100%;
        padding: 16px 20px;
    }
}

        .support-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            grid-template-rows: auto auto auto;
            gap: 20px;
            flex: 1;
            min-height: 0;
        }

        .support-card {
            background-color: var(--color-white);
            border-radius: 12px;
            padding: 20px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
            display: flex;
            flex-direction: column;
            min-height: fit-content;
        }

        .support-card:nth-child(1) {
            grid-column: 1;
            grid-row: 1;
        }

        .support-card:nth-child(2) {
            grid-column: 2;
            grid-row: 1 / span 2;
        }

        .support-card:nth-child(3) {
            grid-column: 1;
            grid-row: 2;
        }

        .certification-info {
            grid-column: 1 / -1;
            grid-row: 3;
        }

        .card-content {
            flex: 1;
            align-content: center;
        }

        .card-header {
            background: linear-gradient(135deg, #bdeced 0%, #d3f7d3 100%);
            padding: 8px 20px;
            border-radius: 12px 12px 0 0;
            margin: -20px -20px 16px -20px;
            display: flex;
            align-items: center;
            gap: 12px;
            flex-shrink: 0;
        }

        .card-icon {
            width: 32px;
            height: 32px;
            object-fit: contain;
            flex-shrink: 0;
        }

        .card-title {
            font-size: 20px;
            font-weight: bold;
            color: #2d5016;
            line-height: 0%;
            font-family: "Zen Kaku Gothic New";
        }

        .card-description {
            margin-top: 0;
            margin-bottom: 12px;
            color: #555;
            font-size: 14px;
            font-family: "Zen Kaku Gothic New";
        }

        .donation-options {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 15px;
            margin-bottom: 25px;
        }

        .amount-button {
            padding: 15px;
            border: 2px solid #d4e5d4;
            border-radius: 8px;
            background-color: var(--color-white);
            cursor: pointer;
            transition: all 0.3s;
            text-align: center;
            font-size: 16px;
        }

        .amount-button:hover {
            border-color: var(--color-primary);
            background-color: #f8fdf5;
            transform: translateY(-2px);
        }

        .amount-button.selected {
            border-color: var(--color-primary);
            background-color: var(--color-primary);
            color: var(--color-white);
        }

        .custom-amount {
            display: flex;
            gap: 10px;
            align-items: center;
            margin-bottom: 20px;
        }

        .custom-amount input {
            flex: 1;
            padding: 12px;
            border: 2px solid #d4e5d4;
            border-radius: 8px;
            font-size: 16px;
        }

        .custom-amount input:focus {
            outline: none;
            border-color: var(--color-primary);
        }

        .membership-info {
            background-color: #f8fdf5;
            border-radius: 8px;
            padding: 8px 20px;
            margin-bottom: 20px;
            font-family: "Zen Kaku Gothic New";
        }

        .membership-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 8px 0;
            border-bottom: 1px solid #e0e0e0;
        }

        .membership-item:last-child {
            border-bottom: none;
        }

        .membership-type {
            font-size: 14px;
            color: #2d5016;
            font-weight: bold;
            font-family: "Zen Kaku Gothic New";
        }

        .membership-price {
            font-size: 18px;
            color: var(--color-primary);
            font-weight: bold;
            font-family: "Zen Kaku Gothic New";
        }

        .info-box {
            background-color: #fffaee;
            border-left: 4px solid var(--color-secondary);
            padding: 8px;
            margin: 10px 0;
            font-size: 12px;
            font-family: "Zen Kaku Gothic New";
        }

        .info-box strong {
            color: #856404;
        }

        .primary-button {
            background-color: var(--color-secondary);
            color: var(--color-white);
            border: none;
            padding: 12px 24px;
            font-size: 18px;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s;
            width: 100%;
            max-width: 100%;
            font-weight: bold;
            display: inline-block;
            text-align: center;
            text-decoration: none;
            box-sizing: border-box;
        }

        .primary-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(123, 160, 91, 0.4);
            color: var(--color-white);
        }

        .secondary-button {
            background-color: var(--color-white);
            color: var(--color-primary);
            border: 2px solid var(--color-primary);
            padding: 10px 24px;
            font-size: 18px;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s;
            width: 100%;
            max-width: 100%;
            font-weight: bold;
            display: inline-block;
            text-align: center;
            text-decoration: none;
            box-sizing: border-box;
        }

        .secondary-button:hover {
            background-color: var(--color-primary);
            color: var(--color-white);
        }

        .note {
            font-size: 12px;
            color: #777;
            margin: 0;
            font-family: "Zen Kaku Gothic New";
        }

        .certification-info {
            background-color: #f0f8ff;
            border: 1px solid #b3d9ff;
            border-radius: 8px;
            padding: 20px;
            margin: 24px 0;
            font-family: "Zen Kaku Gothic New";
        }

        .certification-info h3 {
            color: #2d5016;
            margin: 0px;
            font-size: 16px;
        }

        .certification-info p {
            margin: 0px;
            font-size: 14px;
        }

        @media (max-width: 767px) {
            body {
                height: auto;
                overflow: auto;
            }

            .container {
                height: auto;
            }

            .support-grid {
                grid-template-columns: 1fr;
                grid-template-rows: auto;
                gap: 20px;
            }

            .support-card {
                overflow-y: visible;
            }

            .support-card:nth-child(1),
            .support-card:nth-child(2),
            .support-card:nth-child(3) {
                grid-column: 1;
                grid-row: auto;
            }
        }

        @media (max-width: 768px) {
            .donation-options {
                grid-template-columns: 1fr;
            }

            .membership-options {
                grid-template-columns: 1fr;
            }

            .card-header {
                padding: 15px 20px;
                margin: -20px -20px 20px -20px;
            }

            .card-title {
                font-size: 20px;
            }

            .card-icon {
                width: 32px;
                height: 32px;
            }
        }