body {
    margin: 0;
    font-family: TsukuGoPr5-M, "Hiragino Kaku Gothic ProN", "游ゴシック体", YuGothic, "YuGothic M", "Yu Gothic Medium", "メイリオ", sans-serif;
    color: #252525;
}

h1 {
    font-size: 3vw;
}

h2 {
    font-size: 2vw;
}

p {
    font-size: 1.5vw;
}

.fadein {
    opacity: 0;
    transform: translate(0, 0);
    transition: all 1.5s;
    transform: translate(0, 30px);
}

.scrollin {
    opacity: 1 !important;
    transform: translate(0, 0) !important;
}

header {
    box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.3);
    z-index: 150;
    background-color: #fff;
    height: auto;
    width: 100%;
    /* position: fixed; */
}

.pc_menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 95%;
    margin: 0 auto;
    height: auto;
}

.logo {
    width: 100%;
    height: 100px;
}

.header_logo {
    width: 20%;
    z-index: 200;
}

/* -------------------- */
/* ▼メニューバーの装飾 */
/* -------------------- */
ul.ddmenu {
    /* width: 80%; */
    margin: 0px;
    /* メニューバー外側の余白(ゼロ) */
}

/* -------------------------- */
/* ▼メインメニュー項目の装飾 */
/* -------------------------- */
ul.ddmenu li {
    /* width: 140px; */
    /* メニュー項目の横幅 */
    display: inline-block;
    /* 横並びに配置する */
    list-style-type: none;
    /* リストの先頭記号を消す */
    position: relative;
    /* サブメニュー表示の基準位置にする */
    font-size: 1.3vw;
    z-index: 10;

}

ul.ddmenu a {
    padding: 0 1vw 0 1vw;
    color: #252525;
    /* メニュー項目の文字色(白色) */
    line-height: 40px;
    /* メニュー項目のリンクの高さ(40px) */
    text-align: center;
    /* メインメニューの文字列の配置(中央寄せ) */
    text-decoration: none;
    /* メニュー項目の装飾(下線を消す) */
    font-weight: bold;
    /* 太字にする */
    display: block;
    /* 項目内全域をリンク可能にする */
}

ul.ddmenu a:hover {
    background-color: #f0faf0;
    color: #2bbb55;
}

/* ▼サブメニューは、初期値は非表示*/
ul.ddmenu ul {
    display: none;
}

/* -------------------- */
/* ▼サブメニューの装飾 */
/* -------------------- */
ul.ddmenu ul {
    display: none;
    /* 標準では非表示にする */
    margin: 0px;
    padding: 0px;
    position: absolute;
    /* 絶対配置にする */
}

/* ---------------------------------- */
/* ▼サブメニューがある場合に開く処理 */
/* ※サブメニューが1階層しか存在しない場合の記述 */
/* ---------------------------------- */
ul.ddmenu li:hover ul {
    display: block;
    /* マウスポインタが載っている項目の内部にあるリストを表示する */
}

/* ------------------------ */
/* ▼サブメニュー項目の装飾 */
/* ------------------------ */
ul.ddmenu ul li {
    width: 150%;
    /* border-top: 1px solid #8cd48c; */
    background-color: rgba(255, 255, 255, 1);
}

ul.ddmenu ul li a {
    font-size: 1.1vw;
    line-height: 40px;
    /* サブメニュー1項目の高さ */
    text-align: left;
    /* 文字列の配置(左寄せ) */
    padding-left: 7px;
    /* 文字列前方の余白(5px) */
    font-weight: normal;
    font-weight: bold;
}

ul.ddmenu ul li a:hover {
    background-color: #f0faf0;
    color: #2bbb55;
}

/* ****************** */
/* TOP */
/* ****************** */

.top_img {
    text-align: center;
    color: #fff;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center top;
    margin: 0;
    /* height: 70%; */
    display: flex;
    align-items: center;
    /* 右寄せ */
    justify-content: flex-end;
    position: relative;
}

.top_title {
    margin: 0 auto;
    font-family: "tsukuminpr6-m", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", 游明朝, YuMincho, HG明朝E, "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
    text-shadow: 0 0 5px #2bbb55;
    background: rgba(255, 255, 255, 0.4);
    padding: 5% 10% 5% 10%;
    margin: 0;
    width: 60%;
    text-align: right;
    position: absolute;
    z-index: 10;
}

.top_title h1 {
    font-weight: 800;
    font-size: 6vw;
    letter-spacing: 2;
    color: #252525;
    margin: 0;
    text-align: left;
    line-height: 1;
}

.top_title h2 {
    font-weight: 800;
    font-size: 4vw;
    letter-spacing: 2;
    color: #252525;
    margin: 0;
    text-align: left;
}

.top_img img {
    width: 100%;
    object-fit: cover;
}

section {
    padding-top: 150px;
    width: 75%;
    margin: 0 auto;
}

.concept {
    color: #2bbb55;
    text-align: center;
    font-weight: 700;
    font-family: "tsukuminpr6-m", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", 游明朝, YuMincho, HG明朝E, "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}

.scroll_up {
    transition: 0.8s ease-in-out;
    transform: translateY(30px);
    opacity: 0;
}

.scroll_up.on {
    transform: translateY(0);
    opacity: 1.0;
}

.title {
    position: relative;
    font-weight: 600;
    text-align: center;
}

.title h2 {
    display: inline-block;
    font-weight: bold;
    letter-spacing: 5;
    margin: 0;
    color: #5a5a5a;
    font-size: 2vw;
}

.title h2>span {
    display: inline-block;
    font-weight: bold;
    border-bottom: dotted 3px #2bbb55;
    margin: 0 auto;
    padding: 0 5rem 0.1rem 5rem;
}

.title p {
    color: #5a5a5a;
    margin: 0;
    padding: 0.7rem 6em 0 6em;
    margin-bottom: 10%;
}

.grant_list {
    display: flex;
    justify-content: space-between;
    height: 30%;
}

.grantItem {
    width: 30%;
    height: 100%;
}

.grant_item1,
.grant_item2,
.grant_item3 {
    text-align: center;
    color: #fff;
    text-decoration: none;
    font-size: 1.5vw;
    background: #111;
    cursor: pointer;
    overflow: hidden;
}

.grantItem h3 {
    color: #fff;
    background: rgba(43, 187, 85, 1);
    margin: 0 auto;
    text-align: center;
    width: 100%;
    height: 20%;
    font-size: 1.5vw;
    border-bottom: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.grant_item1 img,
.grant_item2 img,
.grant_item3 img {
    background: #111;
    transition: transform .6s ease;
    /* ゆっくり変化させる */
    object-fit: cover;
    width: 100%;
    height: 80%;
}

.grant_item1:hover img,
.grant_item2:hover img,
.grant_item3:hover img {
    transform: scale(1.1);
    opacity: 0.5;
    transition: 0.3s;
}

.new {
    color: #fff;
    background-color: #2bbb55;
    padding: 0 5px;
    margin-right: 20px;
    border-radius: 5px;
}

.news_item {
    display: flex;
    align-items: start;
    margin: 0 auto;
    width: 80%;
    font-weight: bold;
    border-bottom: solid 3px rgba(43, 187, 85, 0.2);
    margin: 0 auto 30px;
    padding: 0 0 5px 0;
}

.news_date {
    width: 20%;
    margin-right: 20px;
    font-size: 1.2vw;
}

.news_article {
    width: 80%;
    font-size: 1.2vw;
}

.news_article a {
    text-decoration: none;
    color: #252525;
}

.news_article a:hover {
    color: #2bbb55;
}

.access_map {
    margin: 0 auto;
    width: 100%;
    margin-bottom: 10%;
}

.no_transition {
    text-decoration: none;
    pointer-events: none;
}

footer {
    padding-bottom: 20px;
    padding-top: 5%;
}

.footer_img {
    position: relative;
    z-index: -1;
}

.footer_img::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(180deg, #fff, transparent);
}

.footer_img img {
    height: 45%;
    width: 100%;
    object-fit: cover;
}


.copyright {
    text-align: center;
    padding-top: 1%;
    font-size: 1.1vw;
}

.footerNav {
    padding-top: 20px;
    width: 60%;
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
}

.footerNav img {
    padding-top: 0;
    width: 55%;
    height: 100px;
    object-fit: none;
    border-bottom: none;
    box-shadow: none;
    margin-top: 3vw;
}

.footerNav h3 {
    font-size: 1.5vw;
    margin-top: 0;
    margin-bottom: 0.5vw;
}

.footerNav p {
    margin: 0;
    font-size: 1.2vw;
    font-weight: bold;
}

.address img {
    text-align: left;
}

.address {
    width: 75%;
    text-align: left;
}

.menu {
    width: 25%;
}

.menu li {
    list-style: none;
    margin: 0;
}

.menu li a {
    text-decoration: none;
    font-size: 1.1vw;
    color: #252525;
    line-height: 40px;
    /* サブメニュー1項目の高さ */
    text-align: left;
    /* 文字列の配置(左寄せ) */
    padding-left: 7px;
    /* 文字列前方の余白(5px) */
    font-weight: bold;
    line-height: 1.7;
}

.menu li a:hover {
    color: #2bbb55;
    border: #252525;
}

.menu ul li a {
    text-decoration: none;
    font-size: 1vw;
    color: #252525;
    line-height: 40px;
    /* サブメニュー1項目の高さ */
    text-align: left;
    /* 文字列の配置(左寄せ) */
    padding-left: 7px;
    /* 文字列前方の余白(5px) */
    font-weight: bold;
    line-height: 1.7;
}

/* ****************** */
/* お知らせ */
/* ****************** */
.page_img {
    position: relative;
    z-index: 1;
}

.page_img::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(360deg, #fff, transparent);
}

.page_img img {
    height: 40%;
    width: 100%;
    object-fit: cover;
}

.page_sec {
    padding-top: 50px;
    padding-bottom: 50px;
}

.page_title {
    position: relative;
    display: inline-block;
    font-weight: bold;
    border-bottom: solid 3px #d5d5d5;
    margin: 0 auto 50px;
    padding: 5px 200px 5px 0;
}

.page_title::after {
    position: absolute;
    content: " ";
    display: block;
    border-bottom: solid 3px #2bbb55;
    bottom: -3px;
    width: 30%;
}

.article {
    width: 80%;
    margin: 0 auto;
    /* ニュースの下線 */
    font-weight: bold;
    border-bottom: solid 2px #d5d5d5;
    margin: 0 auto 50px;
    padding: 50px 0 50px 0;
    margin-top: 50px;
}

.news_title {
    font-size: 1.8vw;
    text-decoration: none;
    color: #2bbb55;
    font-weight: bold;
}

.article span {
    font-size: 1.3vw;
    font-weight: bold;
}

.detail {
    width: 90%;
    margin: 0 auto;
}

a.btn {
    display: block;
    text-align: center;
    vertical-align: middle;
    text-decoration: none;
    margin: auto;
    margin-top: 5%;
    padding: 0.5rem 3rem;
    font-weight: bold;
    border: 2px solid #2bbb55;
    color: #2bbb55;
    border-radius: 100vh;
    transition: 0.5s;
    width: 30%;
}

a.btn:hover {
    color: #fff;
    background: #2bbb55;
}

.news_detail {
    width: 85%;
    margin: 0 auto;
}

.text {
    font-size: 5vw;
    margin: 0 auto;
}

/* ****************** */
/* プライバシーポリシー */
/* ****************** */
.privacy {
    width: 95%;
    margin: 0 auto;
}

.privacy h3 {
    font-size: 1.5vw;
    padding-top: 5%;
}

/* ****************** */
/* 理事長挨拶 */
/* ****************** */
.greeting {
    width: 95%;
    margin: 0 auto;
}

.greeting_img {
    width: 45%;
    /* text-align: center; */
}

.greeting_img img {
    width: 75%;
    float: left;
    margin-right: 30px;
    margin-bottom: 10px;
}

.greeting h3,
.objective h3 {
    font-size: 1.3vw;
    font-weight: normal;
    letter-spacing: 2;
    line-height: 2;
}

.chairman {
    text-align: right;
}

.objective_img {
    width: 80%;
    text-align: right;
}


.objective_img img {
    width: 80%;
    margin-bottom: 3%;
}

/* ****************** */
/* 財団概要 */
/* ****************** */
.overview {
    width: 95%;
    margin: 0 auto;
}

.overview h3 {
    font-size: 1.3vw;
    letter-spacing: 2;
    display: inline-block;
    font-weight: bold;
    border-left: solid 10px rgba(66, 204, 66, 1);
    margin: 0 auto 50px;
    margin-bottom: 0;
}

.overview p {
    padding-left: 3%;
    font-weight: bold;
    margin-top: 5px;
    font-size: 1.3vw;
}

.director h2 {
    font-size: 1.5vw;
    padding-left: 15px;
}

.director img {
    width: 5%;
}

.director_title {
    display: flex;
}

table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
}

table th:first-child {
    border-radius: 5px 0 0 0;
}

table th:last-child {
    border-radius: 0 5px 0 0;
    border-right: 1px solid #b1b1b1;
}

table th {
    text-align: center;
    color: white;
    background: linear-gradient(#2bbb55, #2bbb55);
    border-left: 1px solid #b1b1b1;
    border-top: 1px solid #b1b1b1;
    border-bottom: 1px solid #b1b1b1;
    padding: 10px 0;
    font-size: 1.3vw;
    letter-spacing: 5;
}

table td {
    text-align: center;
    border-left: 1px solid #b1b1b1;
    border-bottom: 1px solid #b1b1b1;
    border-top: none;
    box-shadow: 0px -3px 5px 1px #eee inset;
    padding: 10px 0;
    font-size: 1.2vw;
    /* font-weight: bold; */
}

table td:last-child {
    border-right: 1px solid #b1b1b1;
}

table tr:last-child td:first-child {
    border-radius: 0 0 0 5px;
}

table tr:last-child td:last-child {
    border-radius: 0 0 5px 0;
}

.table_layout {
    table-layout: auto;
}

.honorific {
    font-size: 1.1vw !important;
    font-weight: normal !important;
}

.affiliation {
    width: 60%;
}

.regulations h2 {
    font-size: 1.5vw;
    padding-left: 15px;
}

.regulations p {
    padding-left: 0;
}

.regulations img {
    width: 4%;
}

.regulations_title {
    display: flex;
    padding-top: 100px;
}

.regulations a {
    color: #252525;
}

.main_text {
    width: 85%;
    margin: 0 auto;
}

.foundation_space,
.foundation_space1 {
    margin-top: 15px;
    padding: 7.5px 0;
}

.foundation p {
    margin-bottom: 0;
}

.foundation_title h2 {
    font-size: 1.5vw;
    padding-left: 15px;
}

.foundation h3 {
    padding: 10px 0 2.5px 15px;
    margin-top: 0;
    background-color: rgba(66, 204, 66, 0.1);
    width: 100%;
}

.foundation_title img {
    width: 4%;
}

.foundation_title {
    display: flex;
    padding-top: 100px;
}

.foundation_title a {
    color: #252525;
}

.add {
    text-align: center;
    margin-top: 100px;
}

/* ****************** */
/* 貸借対照表 規定*/
/* ****************** */

.bs_download {
    width: 80%;
    margin: 0 auto;
    text-decoration: none;
    color: #252525;
    font-size: 1.8vw;
}

.btn_area .btn {
    float: right;
}

.btn_area::after {
    content: "";
    display: block;
    clear: both;
}

.bs_download a:hover {
    color: #2bbb55;
}

.bs_download a.btn {
    display: block;
    vertical-align: middle;
    text-decoration: none;
    width: 20%;
    height: auto;
    margin-bottom: 10px;
    margin-top: 0;
    padding: 0.5rem 2rem;
    font-weight: bold;
    border: 2px solid #2bbb55;
    border-radius: 100vh;
    transition: 0.5s;
    font-size: 1.2vw;
    color: #fff;
    background: #2bbb55;
}

.bs_download a img {
    width: 7%;
}

.bs_img img {
    width: 90%;
    margin: 0 auto;
    margin: 5% auto;
}

.bs_img {
    background-color: rgba(66, 204, 66, 0.2);
    width: 80%;
    margin: 0 auto;
    text-align: center;
}


/* ****************** */
/* 研究助成・実績 */
/* ****************** */
.grant {
    width: 90%;
    margin: 0 auto;
}

.end_comment {
    color: red;
    font-weight: bold;
}

.start_comment {
    color: #2bbb55;
    font-weight: bold;
}

.grant h3 {
    font-size: 1.5vw;
    letter-spacing: 2;
    display: inline-block;
    font-weight: bold;
    border-left: solid 8px rgba(66, 204, 66, 1);
    margin: 0 auto 50px;
    margin-bottom: 0;
    padding: 3px 0 3px 20px;
}

.grant p {
    padding-left: 3%;
    /* font-weight: bold; */
    padding-bottom: 10px;
    margin-top: 10px;
    padding-bottom: 50px;
    font-size: 1.3vw;
}

.grant a {
    color: #2bbb55;
}

.grant .bs_download a img {
    width: 6%;
}

.graain {
    padding-bottom: 50px;
}

.grant_table_layout {
    table-layout: auto;
}

.grant_table_layout .td_left {
    text-align: left;
    padding-left: 10px;
    padding-right: 10px;
}

.grant_table_layout .affiliation {
    width: 27%;
}

.grant_table_layout .position {
    width: 15%;
}

.grant_table_layout .name {
    width: 15%;
}

.grant_aid {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.grant_aid a.btn {
    text-align: center;
    vertical-align: middle;
    text-decoration: none;
    /* margin: auto; */
    margin-top: 5%;
    padding: 0.5rem 2rem;
    font-weight: bold;
    border: 2px solid #2bbb55;
    color: #2bbb55;
    border-radius: 100vh;
    transition: 0.5s;
    width: 20%;
}

.grant_aid a.btn:hover {
    color: #fff;
    background: #2bbb55;
}

.grant_aid a {
    font-size: 1.2vw;
}

.grant .bs_download a.btn {
    display: block;
    align-items: center;
    vertical-align: middle;
    text-decoration: none;
    width: 45%;
    margin: auto;
    margin-top: 10px;
    padding: 0.5rem 2rem;
    font-weight: bold;
    border: 2px solid #2bbb55;
    border-radius: 100vh;
    transition: 0.5s;
    font-size: 1.2vw;
    color: #fff;
    background: #2bbb55;
}

.mobile_top_grant {
    display: none;
}

.mobile_footer {
    display: none;
}

.mobile_menu {
    display: none;
}

.sp_add {
    display: none;
}

/* ****************** */
/* 準備中 */
/* ****************** */
.preparation {
    text-align: center;
    padding: 8rem 0 5rem 0;
}

/* ****************** */
/* お問い合わせ */
/* ****************** */
.cp_qa01 {
    margin-bottom: 3rem;
}

.cp_qa01 .cp_actab input {
    display: none;
}

/*質問テキスト*/
.cp_qa01 .cp_actab {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.cp_qa01 .cp_actab label {
    font-weight: bold;
    position: relative;
    display: flex;
    align-items: center;
    margin: 0 0 0 0;
    padding: 1em 0 0 2em;
    cursor: pointer;
    font-size: 1.2vw;
}

.cp_qa01 .cp_actab .cp_actab-content p {
    margin: 1em;
    padding-bottom: 0.5em;
    font-size: 1.2vw;
}

.cp_qa01 .cp_actab label:hover {
    color: #2bbb55;
}

.cp_qa01 .cp_actab input:checked~label {
    color: #2bbb55;
}

/*答えテキスト*/
.cp_qa01 .cp_actab .cp_actab-content {
    overflow: hidden;
    max-height: 0;
    transition: 0.5s ease;
}

.cp_qa01 .cp_actab input:checked~.cp_actab-content {
    max-height: 50em;
}

/*＋アイコン*/
.cp_qa01 label::after {
    position: absolute;
    content: '';
    background-image: url('../images/logo1.jpg');
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 50%;
    font-weight: bold;
    margin-left: -3%;
    width: 1.5vw;
    height: 3vw;
    background-size: cover;
    padding: 0 0 0 0;
    transition: 0.4s ease;
}

.cp_qa01 .cp_actab input[type=checkbox]:checked~label::after {
    /* transform: rotate(45deg); */
    /* content: '+'; */
}

/* ボタン */
.btn_wrapper {
    text-align: center;
    padding: 0;
}

input[type="submit"] {
    background: #2bbb55;
    border: 2px solid #ffffff;
    width: 20%;
    color: #ffffff;
    text-align: center;
    font-size: 1.2vw;
    line-height: 1.3;
    letter-spacing: .5em;
    text-indent: .5em;
    font-weight: bold;
    padding: 0.5rem 1rem;
    cursor: pointer;
    border-radius: .3rem;
    transition: all .3s;
}

/* ボタンにホバーした時 */
input[type="submit"]:hover {
    color: #ffffff;
    background-color: #888988;
}

/* ローダー */
.wpcf7 .ajax-loader {
    display: none;
    /* margin: 0 auto; */
}

/* フォーム全体のスタイル */
.wpcf7 {
    padding: 20px;
    border-radius: 10px;
    width: 70%;
    margin: auto;
    margin-top: 5%;
}

.wpcf7 p {
    padding: 0;
    padding-bottom: 1rem;
    padding-top: 1rem;
}

/* ラベルのスタイル */
.wpcf7-form label {
    margin-bottom: 10px;
    font-size: 1.2vw;
    color: #333333;
    /* ダークグレー */
}

/* 必須フィールドのラベルスタイル */
.wpcf7-form .required {
    background-color: #ff0000;
    color: white;
    padding: 2px 5px;
    border-radius: 3px;
    margin-left: 10px;
    font-size: 1.1vw;
}

/* 任意フィールドのラベルスタイル */
.wpcf7-form .any {
    background-color: #888988;
    color: white;
    padding: 2px 5px;
    border-radius: 3px;
    margin-left: 10px;
    font-size: 1.1vw;
}

/* インプットフィールドのスタイル */
.wpcf7-form input {
    width: 100%;
    padding: 10px;
    border: 1px solid #cccccc;
    /* ライトグレー */
    border-radius: 5px;
    margin-top: 20px;
    font-size: 1.2vw;
    background-color: #ffffff;
    /* 白 */
}

/* テキストエリアのスタイル */
.wpcf7-form textarea {
    font-size: 1.2vw;
    height: 150px;
    width: 100%;
}

/* 送信ボタンのスタイル */
.wpcf7-form input[type="submit"] {
    background-color: #888988;
    color: white;
    cursor: pointer;
    transition: background-color 0.3s ease;
    border: none;
    width: 25%;
}

.wpcf7-form-control-wrap>.wpcf7-not-valid-tip {
    display: none;
}

.wpcf7-form-control-wrap.is-show>.wpcf7-not-valid-tip {
    display: block;
}

span.wpcf7-form-control-wrap {
    padding-right: 10px !important;
    padding-left: 0;
    width: 5%;
}

span.wpcf7-acceptance .wpcf7-list-item {
    margin-left: 0;
}

span.wpcf7-form-control-wrap input[type=checkbox] {
    /* transform: scale(1.3); */
    width: 25px;
    margin: 0;
}

span.wpcf7-spinner {
    display: none;
}

.wpcf7-response-output {
    border: none !important;
    color: red;
    text-align: center;
    font-size: 1.2vw;
}

.wpcf7-form input[type="submit"]:hover {
    background-color: #2bbb55;
}

/* エラーメッセージと成功メッセージのスタイル */
.wpcf7-form .wpcf7-not-valid-tip {
    color: red;
    font-size: 1.2vw;
}

.wpcf7-form .wpcf7-mail-sent-ok {
    color: #2bbb55;
    font-size: 1.2vw;
    margin-bottom: 20px;
}

.wpcf7-radio {
    display: flex;
    flex-direction: column;
    margin-top: 20px;
}

.wpcf7-radio .wpcf7-list-item {
    margin: 0 10px 0 20px;
}

.wpcf7-radio label {
    position: relative;
    cursor: pointer;
    padding: 5px 5px 5px 1.5rem;
    display: block;

}

span.wpcf7-list-item-label {
    font-size: 1.2vw;
}

.wpcf7-list-item label {
    margin: 0;
}

.wpcf7-radio input[type=radio] {
    position: absolute;
    white-space: nowrap;
    border: 0;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    overflow: hidden;
    height: 1px;
    width: 1px;
    margin: -1px;
    padding: 0;
}

.wpcf7-radio label::before,
.wpcf7-radio label::after {
    content: "";
    display: block;
    border-radius: 50%;
    position: absolute;
    transform: translateY(-50%);
    top: 50%;
}

.wpcf7-radio label::before {
    border: 1px solid #252525;
    border-radius: 50%;
    width: 1vw;
    height: 1vw;
    left: 0;
}

.wpcf7-radio label::after {
    border-radius: 50%;
    background-color: #2bbb55;
    background-size: 50%;
    opacity: 0;
    width: calc(1vw - 1px);
    height: calc(1vw - 1px);
    left: 1px;
}

.wpcf7-radio .wpcf7-list-item label:has(input:checked)::after {
    opacity: 1;
}

.wpcf7-list-item-label {
    font-size: clamp(1rem, 0.9164856646rem + 0.1737619461vw, 1.125rem);
}

.privacy-box {
    width: 100%;
    /* 任意で上限幅を指定 */
    height: 200px;
    /* 固定高さ */
    padding: 16px;
    border: 1px solid #ccc;
    overflow-y: auto;
    /* 垂直方向のみスクロール可能に */
    background: #f9f9f9;
    box-sizing: border-box;
}

/* ****************** */
/* ページネーション */
/* ****************** */

.pagination {
    text-align: center;
    font-size: 1.2vw;
    font-weight: bold;
    text-decoration: none;
}

.page-numbers {
    padding: 0.5em 1em;
    margin: 2em 0;
    /* border: solid 1px #252525; */
    color: #252525;
}

.page-numbers:hover {
    color: #2bbb55;
}

.mobile_concept {
    display: none;
}

.mobile_top_img {
    display: none;
}

/* タブレット用 */
@media screen and (max-width: 1024px) {

    /* ****************** */
    /* TOP */
    /* ****************** */

    .top_img {
        text-align: center;
        color: #fff;
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center top;
        margin: 0;
        /* height: 70%; */
        display: flex;
        align-items: center;
        /* 右寄せ */
        justify-content: flex-end;
        position: relative;
    }

    header {
        box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.3);
        z-index: 150;
        background-color: #fff;
        height: auto;
        width: 100%;
        /* position: fixed; */
    }

    .pc_menu {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 95%;
        margin: 0 auto;
        height: auto;
    }

    .header_logo {
        width: 20%;
        z-index: 200;
    }

    section {
        padding-top: 100px;
        width: 80%;
        margin: 0 auto;
    }

    footer img {
        padding-top: 100px;
        height: 20%;
        width: 100%;
        object-fit: cover;
        /* border-bottom: 10px double #8cd48c; */
        box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.3)
    }

    .footerNav {
        padding-top: 20px;
        width: 70%;
        display: flex;
        justify-content: space-between;
        margin: 0 auto;
    }

    .footerNav img {
        padding-top: 0;
        width: 50%;
        height: 100px;
        object-fit: none;
        border-bottom: none;
        box-shadow: none;
    }

    .footerNav h3 {
        font-size: 1.5vw;
        margin-top: 0;
    }

    .footerNav p {
        margin: 0;
        font-size: 1.2vw;
    }

    .page_img {
        position: relative;
        z-index: 1;
    }

    .page_img::before {
        content: "";
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        background: linear-gradient(360deg, #fff, transparent);
    }

    .page_img img {
        height: 25%;
        width: 100%;
        object-fit: cover;
    }

    .mobile_top_grant {
        display: none;
    }

    .mobile_menu {
        display: none;
    }

    .sp_add {
        display: none;
    }

    .footer_img img {
        height: 25%;
        width: 100%;
        /* object-fit: cover; */
        padding-top: 0;
    }

    .grant_list {
        height: 15%;
    }

    .grant_aid a.btn {
        text-align: center;
        vertical-align: middle;
        text-decoration: none;
        /* margin: auto; */
        margin-top: 5%;
        padding: 0.5rem 2rem;
        font-weight: bold;
        border: 2px solid #2bbb55;
        color: #2bbb55;
        border-radius: 100vh;
        transition: 0.5s;
        width: 20%;
    }

    .mobile_concept {
        display: none;
    }

    .mobile_top_img {
        display: none;
    }
}

/* 480px以下に適用されるCSS（スマホ用） */
@media screen and (max-width: 480px) {

    /* ****************** */
    /* TOP */
    /* ****************** */
    h1 {
        font-size: 4vw;
    }

    h2 {
        font-size: 3vw;
    }

    p {
        font-size: 2.8vw;
    }

    section {
        padding-top: 75px;
        width: 85%;
        margin: 0 auto;
    }

    .pc_menu {
        display: none;
    }

    header {
        background-color: #fff;
        position: fixed;
        height: 10%;
        width: 100%;
        z-index: 150;
    }

    .mobile_menu {
        width: 90%;
        /* height: 10%; */
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin: 0 auto;
    }

    .mobile_concept {
        display: block;
        margin-top: 10%;
        color: #2bbb55;
        text-align: center;
        font-weight: 700;
        font-family: "tsukuminpr6-m", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", 游明朝, YuMincho, HG明朝E, "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
    }

    .concept {
        display: none;
    }

    .logo {
        width: 100%;
        height: 100%;
    }

    .header_logo {
        width: 45%;
        z-index: 200;
    }

    main {
        padding-top: 10%;
    }

    .top_img {
        display: none;
    }

    .mobile_top_img {
        text-align: center;
        color: #fff;
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center top;
        margin: 0;
        width: 100%;
        height: 40%;
        display: flex;
        align-items: center;
        justify-content: flex-end;
        position: relative;
        padding-top: 20%;
    }

    .top_title {
        margin: 0 auto;
        font-family: "tsukuminpr6-m", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", 游明朝, YuMincho, HG明朝E, "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
        text-shadow: 0 0 5px #2bbb55;
        background: rgba(255, 255, 255, 0.4);
        padding: 10% 10% 10% 10%;
        margin: 0;
        width: 70%;
        text-align: right;
        position: absolute;
    }

    .top_title h1 {
        font-size: 7vw;
    }

    .top_title h2 {
        font-size: 5vw;
    }

    /*　ハンバーガーメニューボタン　*/
    .hamburger {
        display: block;
        position: fixed;
        z-index: 3;
        right: 3%;
        top: 2%;
        width: 42px;
        height: 42px;
        cursor: pointer;
        text-align: center;
    }

    .hamburger span {
        display: block;
        position: absolute;
        width: 30px;
        height: 2px;
        left: 6px;
        background: #BBBBBB;
        -webkit-transition: 0.3s ease-in-out;
        -moz-transition: 0.3s ease-in-out;
        transition: 0.3s ease-in-out;
    }

    .hamburger span:nth-child(1) {
        top: 10px;
    }

    .hamburger span:nth-child(2) {
        top: 20px;
    }

    .hamburger span:nth-child(3) {
        top: 30px;
    }

    /* スマホメニューを開いてる時のボタン */
    .hamburger.active span:nth-child(1) {
        top: 16px;
        left: 6px;
        background: #fff;
        -webkit-transform: rotate(-45deg);
        -moz-transform: rotate(-45deg);
        transform: rotate(-45deg);
    }

    .hamburger.active span:nth-child(2),
    .hamburger.active span:nth-child(3) {
        top: 16px;
        background: #fff;
        -webkit-transform: rotate(45deg);
        -moz-transform: rotate(45deg);
        transform: rotate(45deg);
    }

    /* メニュー背景　*/
    nav.globalMenuSp {
        position: fixed;
        z-index: 2;
        top: 0;
        left: 0;
        color: #fff;
        background: rgba(71, 70, 73, 0.9);
        text-align: center;
        width: 100%;
        transform: translateX(100%);
        transition: all 0.6s;
        padding: 15% 0;
    }

    nav.globalMenuSp ul {
        margin: 0 auto;
        padding: 0;
        width: 100%;
    }

    nav.globalMenuSp ul li {
        list-style-type: none;
        padding: 0;
        width: 100%;
        transition: .4s all;
    }

    nav.globalMenuSp ul li:last-child {
        padding-bottom: 0;
    }

    nav.globalMenuSp ul li:hover {
        background: #ddd;
    }

    nav.globalMenuSp ul li a {
        display: block;
        color: #fff;
        padding: 1em 0;
        text-decoration: none;
    }

    /* クリックでjQueryで追加・削除 */
    nav.globalMenuSp.active {
        opacity: 100;
        display: block;
        transform: translateX(0%);
    }

    .title h2 {
        display: inline-block;
        font-weight: bold;
        font-size: 4vw !important;
    }

    .title h2>span {
        padding: 0 3rem 0.1rem 3rem;
    }

    .title>p {
        margin-bottom: 10%;

    }

    .top_grant {
        display: none;
    }

    .mobile_top_grant {
        display: block;
    }

    .grantItem1,
    .grantItem2,
    .grantItem3 {
        width: 100%;
        height: 30%;
    }

    .mobile_grant_item1,
    .mobile_grant_item2,
    .mobile_grant_item3 {
        text-align: center;
        color: #fff;
        text-decoration: none;
        font-size: 1.5vw;
        background: #111;
        cursor: pointer;
        overflow: hidden;
    }

    .grantItem1 h3,
    .grantItem2 h3,
    .grantItem3 h3 {
        color: #fff;
        background: rgba(43, 187, 85, 1);
        margin: 0 auto;
        text-align: center;
        width: 100%;
        height: 20%;
        font-size: 3vw;
        border-bottom: none;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .mobile_grant_item1 h3,
    .mobile_grant_item2 h3,
    .mobile_grant_item3 h3 {
        color: #fff;
        background: #2bbb55;
        margin: 0 auto;
        width: 100%;
        height: 25%;
        font-size: 2.5vw;
        padding-top: 10px;
        margin-top: 10px;
    }

    .mobile_grant_item1 img,
    .mobile_grant_item2 img,
    .mobile_grant_item3 img {
        height: 80%;
        transition: transform .6s ease;
        /* ゆっくり変化させる */
        object-fit: cover;
        width: 100%;
    }

    .mobile_grant_item1:hover img,
    .mobile_grant_item2:hover img,
    .mobile_grant_item3:hover img {
        transform: scale(1.1);
        opacity: 0.5;
        transition: 0.3s;
        /* 拡大 */
    }

    .grantItem1,
    .grantItem2 {
        margin-bottom: 10%;
    }

    .new {
        color: #fff;
        background-color: #2bbb55;
        padding: 0 5px;
        margin-right: 10px;
        border-radius: 5px;
    }

    .news_item {
        margin: 0 auto 20px;
        display: flex;
        align-items: center;
    }

    .news_article {
        width: 50%;
    }

    .news_item p {
        font-size: 2.5vw;
    }

    .footerNav {
        display: none;
    }

    .mobile_footer {
        display: block;
        margin: 0 auto;
        text-align: center;
    }

    .mobile_footer h3 {
        width: 63%;
        font-size: 3.5vw;
        margin: 0 auto;
        text-align: left;
    }

    .mobile_footer_img {
        width: 65%;
        height: 50px;
        margin: 0 auto 25px;
    }

    .mobile_footer_img img {
        border-bottom: none;
        box-shadow: none;
        width: 100%;
        height: auto;
        object-fit: contain;
        display: block;
    }

    .mobile_add {
        width: 63%;
        margin: 0 auto;
        text-align: left;
        margin-bottom: 5%;
    }

    .mobile_add p {
        font-size: 2.5vw;
        margin: 0;
        font-weight: bold;
    }

    .access_map iframe {
        margin: 0 auto;
        height: 30%;
    }

    .copyright span {
        font-size: 2vw;
    }

    .copyright {
        padding-top: 0;
    }

    footer img {
        padding-top: 25px;
        height: 20%;
        width: 100%;
        object-fit: cover;
        box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.3)
    }

    /* ****************** */
    /* 財団概要 */
    /* ****************** */
    .page_img img {
        height: 30%;
        width: 100%;
        object-fit: cover;
        z-index: 100;
    }

    .add {
        display: none;
    }

    .sp_add {
        display: block;
        text-align: center;
        margin-top: 50px;
    }

    .regulations_title {
        display: flex;
        padding-top: 50px;
    }

    .foundation_title {
        display: flex;
        padding-top: 50px;
    }

    table td {
        font-size: 1.8vw;
    }

    table th {
        font-size: 1.8vw;
    }

    .director h2 {
        font-size: 2.5vw;
        padding-left: 5px;
    }

    .director img {
        width: 7%;
    }

    .regulations_title h2 {
        font-size: 2.5vw;
        padding-left: 5px;
    }

    .regulations_title img {
        width: 6%;
    }

    .main_text {
        width: 90%;
        margin: 0 auto;
    }

    .main_text p {
        font-size: 2vw;
    }

    .foundation h2 {
        font-size: 2.5vw;
        padding-left: 5px;
    }

    .foundation h3 {
        font-size: 2vw;
        padding: 5px 10px 5px 10px;
        width: 90%;
    }

    .foundation p {
        font-size: 2vw;
        padding-left: 20px;
    }

    /* ****************** */
    /* 理事長挨拶 */
    /* ****************** */
    .greeting_img {
        width: 80%;
        margin: 0 auto;
        margin-bottom: 5%;
        text-align: center;
    }

    .greeting_img img {
        width: 80%;
        float: none;
        margin: 0 auto;
    }

    .greeting h3,
    .objective h3 {
        font-size: 2.8vw;
        font-weight: normal;
        letter-spacing: 2;
        line-height: 2;
    }

    .objective_img {
        width: 85%;
        margin: 5% auto;
    }

    .objective_img img {
        height: 20%;
        width: 100%;
        object-fit: cover;
    }

    /* ****************** */
    /* 研究助成・実績 */
    /* ****************** */

    a.btn {
        display: block;
        text-align: center;
        vertical-align: middle;
        text-decoration: none;
        margin: auto;
        margin-top: 30px;
        padding: 0.5rem 1.5rem;
        font-weight: bold;
        border: 2px solid #2bbb55;
        color: #2bbb55;
        border-radius: 100vh;
        transition: 0.5s;
        font-size: 1.8vw;
    }

    .grant h3 {
        font-size: 3vw;
        letter-spacing: 2;
        display: inline-block;
        font-weight: bold;
        border-left: solid 8px rgba(66, 204, 66, 1);
        margin: 0 auto 50px;
        margin-bottom: 0;
        padding: 3px 0 3px 10px;
    }

    .grant p {
        padding-left: 3%;
        /* font-weight: bold; */
        padding-bottom: 10px;
        margin-top: 10px;
        padding-bottom: 20px;
        font-size: 1.8vw;
    }

    .grant .bs_download a.btn {
        display: block;
        vertical-align: middle;
        text-decoration: none;
        width: 60%;
        margin: auto;
        margin-top: 10px;
        padding: 0.5rem 1rem;
        font-weight: bold;
        border: 2px solid #2bbb55;
        border-radius: 100vh;
        transition: 0.5s;
        font-size: 1.8vw;
    }

    .bs_download a.btn {
        width: 20%;
        height: auto;
        display: block;
        vertical-align: middle;
        text-decoration: none;
        /* margin: 0 0 0 auto; */
        margin-top: 10px;
        margin-bottom: 10px;
        padding: 0.25rem 1rem;
        font-weight: bold;
        border: 2px solid #2bbb55;
        /* border-radius: 100vh; */
        transition: 0.5s;
        font-size: 2vw;
        color: #fff;
        background: #2bbb55;
    }

    .bs_download a img {
        width: 10%;
    }


    .end_comment {
        color: red;
        font-size: 2vw !important;
        font-weight: bold;
    }

    .start_comment {
        color: #2bbb55;
        font-size: 2vw !important;
        font-weight: bold;
    }

    .grant_aid a.btn {
        text-align: center;
        vertical-align: middle;
        text-decoration: none;
        margin-top: 5%;
        padding: 0.5rem 1rem;
        font-weight: bold;
        border: 2px solid #2bbb55;
        color: #2bbb55;
        border-radius: 100vh;
        transition: 0.5s;
        width: 17%;
    }

    /* ****************** */
    /* 共通 */
    /* ****************** */
    .page_sec {
        padding-top: 5%;
        padding-bottom: 5%;
    }

    .page_title {
        border-bottom: solid 3px #d5d5d5;
        margin: 0 auto 20px;
        padding: 5px 100px 5px 0;
        font-size: 3vw !important;
    }

    footer {
        margin: 0;
    }

    .footer_img {
        position: relative;
        z-index: -1;
    }

    .footer_img::before {
        content: "";
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        background: linear-gradient(180deg, #fff, transparent);
    }

    .footer_img img {
        height: 20%;
        width: 100%;
        padding-top: 0;
    }

    /* ****************** */
    /* お知らせ */
    /* ****************** */

    .article {
        width: 80%;
        margin: 0 auto;
        /* ニュースの下線 */
        font-weight: bold;
        border-bottom: solid 2px #d5d5d5;
        margin: 0 auto 50px;
        padding: 0 0 5% 0;
        margin-top: 5%;
    }

    .news_date {
        width: 35%;
        font-size: 2vw;
        margin: 0;
    }

    .news_title {
        font-size: 2.5vw;
        text-decoration: none;
        color: #2bbb55;
        font-weight: bold;
    }

    .detail {
        width: 90%;
        margin: 0 auto;
    }

    .detail span {
        font-size: 2vw;
    }

    a.btn {
        margin-top: 5%;
        font-size: 2vw;
    }

    .cp_qa01 {
        margin-bottom: 1.5rem;
    }

    .cp_qa01 .cp_actab label {
        font-size: 2.5vw;
    }

    .pagination {
        text-align: center;
        font-size: 2vw;
        font-weight: bold;
        text-decoration: none;
    }

    .privacy h3 {
        font-size: 3vw;
        padding-top: 5%;
    }

    .cp_qa01 .cp_actab {
        position: relative;
        overflow: hidden;
        width: 100%;
    }

    .cp_qa01 .cp_actab label {
        font-weight: bold;
        position: relative;
        display: flex;
        align-items: center;
        margin: 0 0 0 0;
        padding: 1em 0 0 2em;
        cursor: pointer;
        font-size: 2.5vw;
    }

    .cp_qa01 .cp_actab .cp_actab-content p {
        margin: 1em;
        padding-bottom: 0.5em;
        font-size: 2.5vw;
    }

    .cp_qa01 .cp_actab label:hover {
        color: #2bbb55;
    }

    .cp_qa01 .cp_actab input:checked~label {
        color: #2bbb55;
    }

    /*答えテキスト*/
    .cp_qa01 .cp_actab .cp_actab-content {
        overflow: hidden;
        max-height: 0;
        transition: 0.5s ease;
    }

    .cp_qa01 .cp_actab input:checked~.cp_actab-content {
        max-height: 50em;
    }

    /*＋アイコン*/
    .cp_qa01 label::after {
        position: absolute;
        content: '';
        background-image: url('../images/logo1.jpg');
        ;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 50%;
        background-size: cover;
        font-weight: bold;
        width: 2vw;
        height: 5vw;
        margin-left: -5%;
        padding: 0 0 0 0;
        transition: 0.4s ease;
    }

    .cp_qa01 .cp_actab input[type=checkbox]:checked~label::after {
        /* transform: rotate(45deg); */
        /* content: '+'; */
    }

    /* フォーム全体のスタイル */
    .wpcf7 {
        padding: 20px;
        border-radius: 10px;
        width: 85%;
        margin: auto;
        margin-top: 5%;
    }

    span.wpcf7-form-control-wrap {
        /* padding-top: 50px !important; */
    }

    .wpcf7 p {
        padding: 0;
        padding-bottom: 1rem;
        padding-top: 1rem;
    }

    /* ラベルのスタイル */
    .wpcf7-form label {
        margin-bottom: 10px;
        font-size: 3vw;
        color: #333333;
        /* ダークグレー */
    }

    /* 必須フィールドのラベルスタイル */
    .wpcf7-form .required {
        background-color: #ff0000;
        color: white;
        padding: 2px 5px;
        border-radius: 3px;
        margin-left: 10px;
        font-size: 2.8vw;
    }

    /* 任意フィールドのラベルスタイル */
    .wpcf7-form .any {
        background-color: #888988;
        color: white;
        padding: 2px 5px;
        border-radius: 3px;
        margin-left: 10px;
        font-size: 2.8vw;
    }

    /* インプットフィールドのスタイル */
    .wpcf7-form input {
        width: 100%;
        padding: 10px;
        border: 1px solid #cccccc;
        /* ライトグレー */
        border-radius: 5px;
        margin-top: 20px;
        font-size: 3vw;
        background-color: #ffffff;
        /* 白 */
    }

    /* テキストエリアのスタイル */
    .wpcf7-form textarea {
        font-size: 3vw;
        height: 150px;
        width: 100%;
    }

    input[type="submit"] {
        background: #2bbb55;
        border: 2px solid #ffffff;
        width: 20%;
        color: #ffffff;
        text-align: center;
        font-size: 3vw;
        line-height: 1.3;
        letter-spacing: .5em;
        text-indent: .5em;
        font-weight: bold;
        padding: 0.5rem 1rem;
        cursor: pointer;
        border-radius: .3rem;
        transition: all .3s;
    }

    /* 送信ボタンのスタイル */
    .wpcf7-form input[type="submit"] {
        background-color: #888988;
        color: white;
        cursor: pointer;
        transition: background-color 0.3s ease;
        border: none;
        width: 40%;
    }

    span.wpcf7-spinner {
        display: none;
    }

    .wpcf7-response-output {
        border: none !important;
        color: red;
        text-align: center;
        font-size: 3vw;
    }

    .wpcf7-form input[type="submit"]:hover {
        background-color: #2bbb55;
    }

    /* エラーメッセージと成功メッセージのスタイル */
    .wpcf7-form .wpcf7-not-valid-tip {
        color: red;
        font-size: 3vw;
    }

    .wpcf7-form .wpcf7-mail-sent-ok {
        color: #2bbb55;
        font-size: 3vw;
        margin-bottom: 20px;
    }

    .wpcf7-radio {
        display: flex;
        flex-direction: column;
        margin-top: 20px;
    }

    .wpcf7-radio .wpcf7-list-item {
        margin: 0 10px 0 20px;
    }

    .wpcf7-radio label {
        position: relative;
        cursor: pointer;
        padding: 5px 5px 5px 1.5rem;
        display: block;

    }

    span.wpcf7-list-item-label {
        font-size: 3vw;
    }

    .wpcf7-list-item label {
        margin: 0;
    }

    .wpcf7-radio input[type=radio] {
        position: absolute;
        white-space: nowrap;
        border: 0;
        clip: rect(0 0 0 0);
        clip-path: inset(50%);
        overflow: hidden;
        height: 1px;
        width: 1px;
        margin: -1px;
        padding: 0;
    }

    .wpcf7-radio label::before,
    .wpcf7-radio label::after {
        content: "";
        display: block;
        border-radius: 50%;
        position: absolute;
        transform: translateY(-50%);
        top: 50%;
    }

    .wpcf7-radio label::before {
        border: 1px solid #252525;
        border-radius: 50%;
        width: 2vw;
        height: 2vw;
        left: 0;
    }

    .wpcf7-radio label::after {
        border-radius: 50%;
        background-color: #2bbb55;
        background-size: 50%;
        opacity: 0;
        width: calc(2vw - 1px);
        height: calc(2vw - 1px);
        left: 1px;
    }

    .wpcf7-radio .wpcf7-list-item label:has(input:checked)::after {
        opacity: 1;
    }

    .wpcf7-list-item-label {
        font-size: clamp(1rem, 0.9164856646rem + 0.1737619461vw, 1.125rem);
    }

    span.wpcf7-form-control-wrap {
        padding-right: 5px !important;
        padding-left: 0;
        padding-bottom: 0;
        margin: 0;
        /* width: 5%; */
    }

    .wpcf7-acceptance.wpcf7-list-item input {
        font-size: 3vw;
    }

    span.wpcf7-form-control.wpcf7-acceptance {
        margin-top: 20px;
    }

    span.wpcf7-form-control-wrap input[type=checkbox] {
        /* transform: scale(0.8); */
        width: 1.5vw;
        margin: 0;
    }

    .hide-error p {
        font-size: 3vw;
    }

    .has-spinner {
        font-size: 3vw;
    }

    .honorific {
        font-size: 2vw !important;
    }

    .privacy-box {
        width: 100%;
        /* 任意で上限幅を指定 */
        height: 200px;
        /* 固定高さ */
        padding: 16px;
        border: 1px solid #ccc;
        overflow-y: auto;
        /* 垂直方向のみスクロール可能に */
        background: #f9f9f9;
        box-sizing: border-box;
    }
}