@charset "utf-8";
/*
Theme Name:gaia child
Author:toebisu
Template:gaia_tcd102
Version:1.13
*/

/* 以下独自スタイル 基本的に!importantが必要*/

body {
    font-family: "Yu Gothic Medium", "游ゴシック Medium", "Yu Gothic", "游ゴシック体", YuGothic, "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "Meiryo", "メイリオ", 
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif !important;
    font-weight: 500 !important;
}
.l-header__inner.u-flex {
    border: 1px solid #01284B !important;
}

.l-header__logo,
.l-header__nav {
    background-color: white !important;
}
.l-header__logo a,
.l-header__nav a {
    color: #01284B !important;
    font-weight: 600 !important;
    transition: color 0.3s ease, background-color 0.3s ease !important;
}
/* .l-header__nav:hover {
    background-color: #01284B !important;
} */
.l-header__nav a:hover {
    color: #ffffff !important;
    background: #01284B;
}
.p-global__nav > li {
    border-left: 1px solid #01284B !important;
}

/* 下層ページヘッダーメインテキスト */
.p-page-header__headline {
    font-family: "Yu Gothic Medium", "游ゴシック Medium", "Yu Gothic", "游ゴシック体", YuGothic, "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "Meiryo", "メイリオ", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif !important;
}

/* post詳細の、共通 */
.post_content {
    font-family: inherit !important;
}


/* 以下about */
/* --- Main Container --- */
.about-container {
    max-width: 1050px;
    margin: 0 auto;
    padding: 60px 25px;
}

/* --- Header --- */
.about-header {

}

.about-header-subtitle {
    font-size: 16px;
    color: #01284B;
    font-weight: bold;
}

.about-header-title {
    font-size: 40px;
    font-weight: bold !important;
    color: #01284B;
    margin-top: 0px !important;
    margin-bottom: 0px !important;
    text-align: left !important;
}

.about_main_flex {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 50px;
}
.about_flex_child {
    width: 50%;
}

.about-introduction {
    display: flex;
    gap: 40px;
    align-items: center;
    margin-bottom: 40px;
}

.about-introduction-text {
    flex: 1;
}

.about-introduction-image {
    flex: 1;
}

.about-motto-label {
font-size: 20px;
    color: #fff;
    margin-top: 50px !important;
    margin-bottom: 10px !important;
    background-color: #00529C;
    max-width: fit-content;
    padding: 0px 10px;
    font-weight: bold;
    line-height: 2 !important;
}

.about-motto-english {
    font-size: 44px !important;
    font-weight: bold !important;
    line-height: 1.6 !important;
    color: #00529C;
    margin-bottom: 15px;
    white-space: nowrap;
    margin-top: 30px !important;
    text-align: left !important;
    margin-bottom: 15px !important;
}

.about-motto-japanese {
    font-size: 16px;
    font-weight: bold;
    color: #00529C;
}

/* --- Description Section --- */
.about-description {
    font-size: 16px;
    margin-bottom: 60px;
}

.about-description p {
    margin-bottom: 20px;
    color: #01284B;
}

.about-description p:last-child {
    margin-bottom: 0;
}

.about-details {
    display: flex;
    gap: 30px;
    margin-bottom: 60px;
}

.about-details-item {
    width: 50%;
}
.about-details-item .about-motto-label {
    margin-top: 0 !important;
    font-size: 20px;
    padding: 0px 10px;
    line-height: 1.7 !important;
}

.about-details-title {
    font-size: 18px;
    font-weight: bold;
    padding-left: 15px;
    border-left: 4px solid #00529C;
    margin-bottom: 20px;
}

.about-details-large-text {
    font-size: 36px;
    font-weight: bold;
    color: #00529C;
    line-height: initial !important;
    margin-bottom: 0px !important;
}

.about-details-small-text,
.about-details-oath-text {
    font-size: 16px;
    font-weight: bold;
    color: #00529C;
}

.about-details-oath-text {
    font-size: 16px;
}

/* --- Footer Button --- */
.about-footer {
    text-align: center;
}

.about-button {
    display: inline-block;
    background-color: #00529C;
    color: #fff !important;
    font-size: 16px;
    font-weight: bold;
    padding: 18px 60px;
    border-radius: 50px;
    position: relative;
    transition: background-color 0.3s ease;
}

.about-button::after {
    content: '';
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 4px 0 4px 8px;
    border-color: transparent transparent transparent #ffffff;
}

.about-button:hover {
    background-color: #00417c;
}


@media (max-width: 900px) {
    .about-container {
        padding: 40px 0px;
    }
    .about_main_flex {
        flex-direction: column;
        gap: 0;
        margin-bottom: 60px !important;
    }
    .about_flex_child {
        width: 100%;
    }

    .about-header-title {
        font-size: 28px;
    }

    .about-introduction {
        flex-direction: column;
        align-items: flex-start;
    }

    .about-motto-english {
        font-size: 36px !important;
        white-space: initial;
    }

    .about-details {
        flex-direction: column;
        gap: 60px;
    }
    
    .about-button {
        padding: 15px 50px;
        width: 100%;
    }
    .about-details-item {
        width: 100%;
    }

    .about-motto-label {
        font-size: 16px !important;
    }
}
/* ここまでabout */

/* ここからsummary */
.summary-subtitle {
    color: #01284B;
    font-weight: bold !important;
    font-size: 34px !important;
    text-align: left !important;
        margin-bottom: 45px !important;
}
.summary-subtitle span{
    display: block;
        font-size: 16px;
    color: #01284B;
    margin-top: 5px;
}

.summary-title {
    color: #00529C;
    font-size: 36px !important;
    text-align: left !important;
        margin-bottom: 40px !important;
}

.summary-section.summary-greeting {
        display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 50px;
    margin-bottom: 80px;
}

.summary-greeting-img {
    min-width: 330px;
}
.summary-greeting-text p {
    line-height: 1.8 !important;
        margin-bottom: 20px;
        color: #01284B;
}
.summary-table tr:nth-child(1) th,
.summary-table tr:nth-child(1) td {
    padding-top: 0;
}
.summary-table th {
background: none;
    border: none;
    border-bottom: 1px solid #01284B;
    font-weight: bold;
    color: #01284B;
    text-align: left;
    padding-left: 0px;
    padding-right: 0px;
    width: 200px;
    vertical-align: middle;
}
.summary-table td {
        border: none;
            border-bottom: 1px solid #01284B;
    color: #01284B;
    text-align: left;
    padding: 17px 0;
}
.summary-section {
    margin-bottom: 80px;
}
.summary-year {
    font-weight: bold;
    font-size: 28px;
    color: #01284B;
    margin-bottom: 10px;
}
.summary-era {
    font-size: 16px;
    color: #01284B;
}
.summary-desc {
    font-size: 16px;
    color: #01284B;
}
.summary-timetable-item {
display: flex;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid #01284B;
}
.summary-child {
    width: 200px;
}
@media (max-width: 900px) {
    .summary-section.summary-greeting {
        flex-direction: column;
    }
    .summary-title {
        font-size: 28px;
    }
    .summary-table th {
            width: 130px !important;
    }
    .summary-child {
        width: 130px;
    }
}
/* ここまでsummary */

/* memberここから */
.member-container {
/* max-width: 1050px; */
margin: 0 auto;
/* padding: 20px; */
}
/* ヒーローセクション */
.member-hero {
position: relative;
width: 100%;
height: 250px;
background-image: url('member-hero.jpg');
background-size: cover;
background-position: center;
margin-bottom: 40px;
}
.member-hero-title {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
color: #fff;
font-size: 1.8rem;
letter-spacing: 2px;
}
/* セクション見出し */
.member-subtitle {
    color: #01284B;
    font-weight: bold !important;
    font-size: 34px !important;
    text-align: left !important;
    margin-bottom: 0px !important;
}
.member-english {
    display: block;
    font-size: 16px;
    color: #01284B;
    margin-top: 5px;
    font-weight: bold;
}
.member-container section:nth-child(1) {
    margin-bottom: 45px !important;
}
.member-container section:nth-child(2) {
        display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 60px;
}
.member-section-title {
font-size: 24px !important;
font-weight: bold;
color: #0a3161;
margin: 1em 0;
white-space: nowrap;
    min-width: 200px;
    text-align: left !important;
    margin-top: 0;
}
/* 役員紹介：3カラムグリッド */
.member-officers {
/* display: grid; */
/* grid-template-columns: repeat(3, 1fr); */
gap: 20px;
list-style: none;
padding: 0;
margin: 0 0 0px 0 !important;
width: 100%;
list-style: none;
}
.member-officer-item {
border-bottom: 1px solid #01284B;
padding-bottom: 15px;
margin-bottom: 15px;
list-style: none;
    display: flex;
    justify-content: flex-start;
}
.member-officer-title {
    display: block;
    font-weight: bold;
    color: #0a3161;
    margin-bottom: 0.5em;
    min-width: 200px;
    margin-bottom: 0px;
}
.member-officer-name {
color: #0a3161;
}
/* 委員会紹介：4カラムグリッド */
.member-committees {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 20px;
list-style: none;
padding: 0;
margin: 0;
}
.member-committee-item {
border-bottom: 1px solid #0a3161;
    padding-bottom: 15px;
    margin-bottom: 15px;
}
.member-committee-title {
display: block;
font-weight: bold;
color: #0a3161;
margin-bottom: 0.5em;
width: 200px;
}
.member-committee-members {
color: #0a3161;
}
.member-container section:nth-child(3) {
    display: flex;
}
.member-committees {
    display: block;
    margin: 0 !important;
    width: 100%;
}
.member-committee-item {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

/* レスポンシブ */
@media (max-width: 900px) {
    .member-container section:nth-child(2) {
        flex-direction: column;
    }
    .member-container section:nth-child(3) {
        flex-direction: column;
    }

}
@media (max-width: 450px) {
    .member-officer-item ,
    .member-committee-item {
        font-size: 14px;
    }
    .member-officer-title {
        /* min-width: auto; */
        min-width: 113px;
        margin-right: 30px;
        white-space: nowrap;
    }
    .member-committee-title {
        width: 70px;
        margin-right: 30px;
        white-space: nowrap;
    }
}

/* ここまでmember */

/* ここからcontact */
section.contact_form_h2 {
    margin-bottom: 60px;
}
.smf-button-control button {
    background-color: #00529C !important;
    background-image: none !important;
    color: white !important;
}
@media (max-width: 450px) {
    section.contact_form_h2 h2{
    font-size: 28px !important;
    }
}
/* ここまでcontact */

.schedule {
    text-align: center;
}

/* ここから入会案内 */
.page-join .about-footer{
    margin-top: 60px;
}
.join {
    line-height: 2;
}

.page-join .about-description p span {
    font-weight: bold;
}
.page-join .about-details-small-text, 
.page-join .about-details-oath-text {
    color: #01284B !important;
}
.page-join .about-introduction {
    margin-bottom: 10px;
}

@media (max-width: 900px) {
    .page-join .about-introduction {
        margin-bottom: 10px !important;
    }
    .page-join .about_main_flex {
        margin-bottom: 0 !important;
    }
}
/* ここまで入会案内 */

/* ここからtop */
.slogan {
    max-width: 1050px;
    margin: 0 auto;
    padding: 120px 25px;
}
.slogan_wrap {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 50px;
}
.slogan_child {

}

.slogan_child img {
    max-width: 250px;
    margin-top: 30px;
}

.slogan_eng {
    font-size: 44px !important;
    font-weight: bold !important;
    line-height: 1.6 !important;
    color: #00529C;
    margin-bottom: 15px;
    /* margin-top: 30px !important; */
    text-align: left !important;
    margin-bottom: 15px !important;
}
.slogan_jp {
    color: #00529C;
    font-weight: bold;
    font-size: 20px;
    margin-bottom: 40px;
}
.slogan_detail {
    color: #01284B;
    font-size: 18px;
        /* line-height: 2.4; */
    line-height: 2.0;
    letter-spacing: 0.3px;
    margin-bottom: 40px;
}
.slogan_link.about-button {
    padding: 0;
}
.slogan_link.about-button a{
    color: #fff;
    padding: 18px 60px;
        background-color: #00529C;
    border-radius: 50px;
    display: block;
}

section.link {
    box-sizing: border-box;
}
.link_3 {
    display: flex;
    justify-content: space-between;
    width: 100%;
    box-sizing: border-box;
    align-items: flex-start;
        gap: 3px;
}
.link_3_child {
        width: 33.333%;
            position: relative;
}
.link_3_child img {
        filter: brightness(0.6);
        transition: 0.5s all;
}
.link_3_child a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    flex-direction: column;
    padding: 40px 60px;
    box-sizing: border-box;
    color: white;
    font-weight: bold;
    text-decoration: none;
    text-align: center;
    filter: none;
    font-size: 22px;
    letter-spacing: 1px;
    font-family: inherit;
    text-align: left;
}
.link_3_child a::after {
    content: '';
    background-image: url(/wp-content/themes/gaia-child/img/maru.svg);
    position: absolute;
    right: 60px;
    bottom: 40px;
    width: 50px;
    height: 50px;
}
.link_3_child a span {
        display: block;
    margin-top: 0.5rem;
    font-size: 14px;
}
.link_3_child:hover img {
        filter: brightness(1);
}

.link_2 {margin-top: 3px;}

.link_2_child {
    margin-bottom: 3px;
    position: relative;
}
.link_2_child:nth-last-child(1) {
    margin-bottom: 0;
}

.link_2_child img {
    filter: brightness(0.5);
    transition: 0.5s all;
}

.link_2_info {
    position: absolute;
    top: 50%;
    right: 85px;
    transform: translateY(-50%);
    color: white;
    z-index: 2;
    letter-spacing: 1px;
    max-width: 380px;
}
.link_2_info a{
    color: white;
}
.link_2_title {
        font-size: 26px;
    letter-spacing: 1px;
    font-weight: bold;
}
.link_2_title span {
    display: block;
    margin-top: 0.5rem;
    font-size: 14px;
}
.link_2_description {
    margin-top: 40px;
    line-height: 2;
}
.link_2_a {
    text-align: center;
        margin-top: 15px;
}
.link_2_a a {
    padding: 20px 50px;
    text-align: center;
    display: block;
    background-color: white;
    color: #01284B;
    font-weight: 600;
        border-radius: 50px;
            position: relative;
}
.link_2_a a:after {
        content: '';
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 4px 0 4px 8px;
    border-color: transparent transparent transparent #01284B;
}
.link_2 .link_2_child:nth-child(2) .link_2_info {
    right: auto;
    left: 85px;
}
.link_2_child:hover img {
        filter: brightness(1);
}
.top_wrap {
    max-width: 1600px;
    margin: auto;
}
section.facebook {
    margin: 120px auto 0px;
    text-align: center;
}
.facebook h4{
        font-size: 34px;
    font-weight: bold;
    margin-bottom: 40px;
}
.facebook h4 span {
    display: block;
    font-weight: bold;
    margin-top: 17px;
    font-size: 18px;
    font-weight: normal;
}

@media all and (max-width:900px) {
    .slogan_child .about-button {
        width: auto;
    }
    .link_3_child a {
        padding: 20px 15px;
        font-size: 18px;
    }
    .link_3_child a::after {
    bottom: 30px;
    right: 15px;
    width: 25px;
    height: 25px;
    background-size: 100%;
    }
}

@media all and (max-width:767px) {
    .slogan {
        padding: 60px 20px;
    }
    .slogan_wrap {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }
    .slogan_child img {
        max-width: 200px;
        margin-top: 0;
    }
    .slogan_eng {
        font-size: 30px !important;
    }
    .slogan_jp {
        font-size: 18px;
        line-height: 1.5;
    }
    .slogan_detail {
        font-size: 16px;
    }
    .link_3 {
        flex-direction: column;
    }
    .link_3_child {
        width: 100%;
    }
    .link_2_child {
        aspect-ratio: 1 / 1;
    }
    .link_2_child img {
        object-fit: cover;
        aspect-ratio: 1 / 1;
    }
    .link_3_child a {
        padding: 40px 15px;
        font-size: 22px;
    }
    .link_3_child a::after {
        width: 40px;
        height: 40px;
        bottom: 40px;
        right: 20px;
    }
    .link_2_info {
        right: auto;
        max-width: 100%;
        padding: 0 15px;
        width: 100%;
        top: initial;
        bottom: 30px;
        transform: none;
    }
    .link_2_title {
        font-size: 22px;
    }
    .link_2_description {
        margin-top: 20px;
    }
    .link_2 .link_2_child:nth-child(2) .link_2_info {
        left: auto;
    }

    section.facebook {
        margin: 80px auto 50px;
        padding: 0 10px;
    }
    .facebook h4 {
        font-size: 26px;
    }
    #p-fp-section4 {
        margin-bottom: 60px;
    }
}


/* ここまでtop */


/* ここからfooter */
/* フッター全体 */
.footer-static {
    background-color: #00529C;
    color: #ffffff;
    padding: 80px 20px;
    position: relative;
}

.footer-container {
    max-width: 1150px;
    margin: 0 auto;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

/* 左カラム */
.footer-left {
    flex-basis: 35%;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-logo img {
    height: 45px;
    width: 45px;
}

.logo-text h2 {
    font-size: 1.2rem;
    margin: 0;
    font-weight: normal;
}

.logo-text p {
    font-size: 0.8rem;
    margin: 0;
    letter-spacing: 0.5px;
    margin-top: 5px;
}

.footer-contact {
    font-size: 1rem;
    line-height: 1.8;
}

.footer-tel {
    font-size: 1.5rem;
    font-weight: 500;
    margin: 20px 0;
}

div.logo-text {
    font-family: "YuMincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "MS PMincho", "Noto Serif JP", serif;
}

address {
    font-style: normal;
    font-size: 0.9rem;
}

.footer-buttons {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 280px;
}

.footer-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: #ffffff;
    /* color: #00529C; */
    color: #01284B;
    padding: 15px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: relative;
}

.footer-button::after {
    content: '';
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 4px 0 4px 8px;
    border-color: transparent transparent transparent #01284B;
}

.footer-button img {
    width: 20px;
    height: 20px;
}

/* 中央・右カラム（ナビゲーション） */
.footer-center {
    flex-basis: 25%;
    padding-left: 15px;
}
.footer-center ul {
    border-right: 1px solid #fff;
}

.footer-right {
    flex-basis: 25%;
    padding-left: 15px;
}

.footer-nav ul li {
    padding: 14px 0;
}

.footer-nav ul li a::before {
    content: "";
    background-color: white;
    height: 1px;
    width: 10px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: -15px;
}

.footer-nav ul li a {
    font-size: 1rem;
    font-weight: bold;
    color: white;
    position: relative;
}

.footer-nav .sub-menu {
    padding-left: 20px;
    margin-top: 10px;
    border: none;
}
.footer-nav .sub-menu li {
    padding: 6px 0;
}
.footer-nav .sub-menu li a::before {
    display: none;
}
.footer-nav .sub-menu li a {
    font-weight: normal;
    font-size: 0.9rem;
}

.footer-sns {
    margin-top: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 20px;
}
.footer-sns span {
    font-weight: bold;
}


/* コピーライト */
.footer-copyright {
    text-align: center;
    padding-top: 30px;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
}

/* トップへ戻るボタン */
.back-to-top {
    position: absolute;
    bottom: 40px;
    right: 40px;
    width: 60px;
    height: 60px;
    background-color: #ffffff;
    color: #00529C;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    display: none;
}

.back-to-top svg {
    width: 24px;
    height: 24px;
}

#js-footer {
    display: none;
}



@media (max-width: 767px) {
    .footer-static {
        padding: 80px 25px;
    }
    .footer-main {
        flex-direction: column;
        gap: 0;
    }
    .footer-left, .footer-center, .footer-right {
        flex-basis: 100%;
    }
    .footer-right {
        /* border-top: 1px solid rgba(255,255,255,0.2); */
        /* padding-top: 30px; */
    }
    .back-to-top {
        /* position: fixed; */
        bottom: 20px;
        right: 20px;
    }
    .footer-center ul {
        border: none;
    }
    .footer-sns {
        border: none;
        margin-left: -15px;
    }
    .footer-copyright {
        line-height: 1.5;
    }
    .footer-center {
        margin-top: 40px;
    }
}

/* ここまでfooter */


/* ここからfacebook */
/* Facebookフィード全体を囲むラッパー */
    .apply_fb_wrap {
    display: grid;
    /* PCでは4カラム表示 */
    grid-template-columns: repeat(4, 1fr);
    gap: 25px; /* 各投稿の間のスペース */
    font-family: sans-serif; /* お好みでフォントを指定 */
    }

    /* 各投稿のカードデザイン */
    .fb-post-item {
    border: 1px solid #B8B8B8;
    background-color: #fff;
    overflow: hidden; /* 角丸デザインのため */
    display: flex;
    flex-direction: column; /* 画像とテキストを縦に並べる */
    font-family: "Yu Gothic Medium", "游ゴシック Medium", "Yu Gothic", "游ゴシック体", YuGothic, "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "Meiryo", "メイリオ", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif !important;
    }

    /* 投稿画像のリンクと画像自体 */
    .fb-post-image-link {
    display: block;
    padding: 15px 15px 00px;
    }
    .fb-post-image-link img {
    width: 100%;
    height: 160px; /* 高さを固定 */
    object-fit: cover; /* 画像の比率を保ったままトリミング */
    display: block;
    }

    /* 画像下のコンテンツエリア */
    .fb-post-content {
    padding: 15px;
    display: flex;
    flex-direction: column;
    flex-grow: 1; /* 高さがバラバラにならないように */
    }

    /* ヘッダー部分（アイコンとページ名） */
    .fb-post-header {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    }
    .fb-page-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    margin-right: 10px;
    }
    .fb-page-name {
    font-weight: 600;
    font-size: 14px;
    color: #01284B;
    }

    /* 投稿本文 */
    .fb-post-message {
    font-size: 13px;
    line-height: 1.4;
    color: #01284B;
    margin: 0;
    flex-grow: 1; /* この要素が伸びてフッターを下に押しやる */
    text-align: left;

    /* 本文が長い場合に省略して「...」を表示する設定 */
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4; /* 表示する行数を4行に制限 */
    -webkit-box-orient: vertical;
    }

    /* フッター（日付） */
    .fb-post-footer {
    margin-top: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    }
    .fb-likes img {
        max-width: 14px;
        height: auto;
        margin-right: 5px;
    }
    .fb-post-date {
    display: block;
    text-align: right;
    font-size: 12px;
    color: #888;
    text-decoration: none;
    }
    .fb-post-date:hover {
    text-decoration: underline;
    }

    .fb_apply {
        margin: 0 20px;
    }

    .apply_fb_wrap {
        max-width: 1050px;
        margin: 0 auto;
        padding: 10px 0px 0px;
    }

    @media (max-width: 900px) {
        .apply_fb_wrap {
        grid-template-columns: repeat(2, 1fr);
        }
        .fb-post-image-link img {
            height: 200px;
        }
    }

    @media (max-width: 500px) {
        .apply_fb_wrap {
        grid-template-columns: 1fr;
        }
    }


/* ここまでfacebook */

/* reCAPTCHA */
.grecaptcha-badge {
    visibility: hidden;
}

body.page-id-94 .grecaptcha-badge {
    visibility: initial !important;
}