/*////////// ヘッダー //////////*/
/*reCAPTCHA非表示*/
.grecaptcha-badge { visibility: hidden; }
.recaptcha_text {
    text-align:center;
    font-size:12px;
    margin:10px 0 0;
}

.header.top {
    padding: 20px 30px;
    background-image: url("../img/main_visual.jpg");
    background-size: cover;
    background-position: center;
    height: 100vh;
    overflow: hidden;
    position: relative;
}

.header .header_logo {
    float: left;
    position: relative;
    z-index: 100;
}

.header ul.sns_logo {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.header ul.sns_logo li {
    margin-left: 10px;
    position: relative;
    z-index: 100;
}

.header nav ul {
    display: flex;
    justify-content: flex-end;
    position: relative;
    z-index: 100;
}

.header nav ul li {
    margin-left: 25px;
    color: #ffffff;
}

.header nav ul li a {
    color: #ffffff;
    transition: 0.3s;
}

.header nav ul li a:hover {
    color: #f1f156;
    text-decoration: underline;
}

.header h1 {
    color: #ffffff;
    font-size: 4.2vw;
    letter-spacing: 3px;
    line-height: 1.3;
    font-family: "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
    display: flex;
    text-align: center;
    flex-direction: column;
    height: 100%;
    justify-content: center;
    left: 50%;
    position: absolute;
    top: 0;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 100%;
    z-index: 1;
}

.main_visual_scroll {
    bottom: 3px;
    color: #fff;
    left: 50%;
    position: absolute;
    opacity: 0.75;
    text-align: center;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    transition: opacity .25s;
    z-index: 300;
}

.main_visual_scroll:hover {
    opacity: 1;
    cursor: pointer;

}

@media screen and (max-width: 750px) {
    .header.top {
        padding: 10px 15px;
    }

    .header .header_logo {
        position: fixed;

    }
    .header .header_logo img {
        width:160px;
    }

    .header h1 {
        font-size: 8vw;
    }

    .header nav ul {
        display: block;
    }

    .header nav ul li {
        margin-left: 0;
    }

    .header ul.sns_logo li {
        margin-left: 0;
    }
}

/*////////// ヘッダー //////////*/

/*////////// 見出し //////////*/
.heading {
    text-align: center;
    padding: 40px 0
}

.heading .en_heading {
    font-size: 50px;
    font-weight: bold;
    color: #00812A;
    letter-spacing: 3px;
    display: inline-block;
    position: relative;
    margin-bottom: 10px;
}

.heading .en_heading:before {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    /*下線の上下位置調整*/
    display: inline-block;
    width: 75px;
    /*下線の幅*/
    height: 5px;
    /*下線の太さ*/
    -moz-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translate(-50%);
    /*位置調整*/
    background-color: #E0D800;
    /*下線の色*/
}

.heading .ja_heading {
    font-size: 28px;
    font-weight: bold;
    font-family: "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
}

@media screen and (max-width: 750px) {
    .heading {
        text-align: center;
        padding: 20px 0
    }
}

/*////////// 見出し //////////*/

/*////////// 固定会員登録ボタン //////////*/
.member_registration_fixed_btn {
    position: fixed;
    top: 20px;
    right: 10px;
    z-index: 200;
}

@media screen and (max-width: 750px) {
    .member_registration_fixed_btn {
        top: 100px;
    }
}

/*////////// 固定会員登録ボタン //////////*/


/*////////// ボード //////////*/
.member_board {
    position: absolute;
    top: 88px;
    right: 10px;
}

@media screen and (max-width: 750px) {
    .member_board {
        top: 100px;
    }
}
/*////////// ボード //////////*/


/*////////// ヤマレからのお知らせ //////////*/
.top_news {
    padding: 20px 0 60px;
}

.top_news ul.news_list {
    width: 800px;
    margin: auto;
}

.top_news ul.news_list li {
    border-bottom: 1px solid #399D26;
    padding: 30px 0;
}

.top_news ul.news_list li dl {
    display: flex;
    flex-wrap: wrap;
}

.top_news ul.news_list li dl dt.datetime {
    font-weight: bold;
    margin-right: 15px;
}

.top_news ul.news_list li dl dd .categories {
    color: #ffffff;
    background: #399D26;
    margin-right: 15px;
    font-size: 14px;
    font-weight: bold;
    padding: 5px;
    text-align: center;
    display: inline-block;
    width: 110px;
    line-height: 1;
    border-radius: 5px;
}

.top_news .news_list_link {
    width: 800px;
    margin: 30px auto 0;
    text-align: right;
}

.top_news .news_list_link a {
    text-decoration: underline;
}

@media screen and (max-width: 750px) {
    .top_news ul.news_list {
        width: 100%;
    }

    .top_news .news_list_link {
        width: 100%;
    }

    .top_news ul.news_list li {
        padding: 15px 0;
    }

    .top_news ul.news_list li dl {
        display: block;
    }

    .top_news ul.news_list li dl dd .categories {
        margin-right: 10px;
        font-size: 12px;
        width: 100px;
    }
}

/*////////// ヤマレからのお知らせ //////////*/

/*////////// ヤマレとは //////////*/
.top_about {
    padding: 20px 0 60px;
    background: #F9F9F9;
}

.top_about .top_about_logo {
    text-align: center;
}

.top_about .text {
    width: 800px;
    margin: 20px auto;
}

.top_about .charter_link {
    margin: 15px 0;
    text-align: center;
}

.top_about .charter_link a {
    text-decoration: underline;
}

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

/*////////// ヤマレとは //////////*/

/*////////// ヤマレZoom勉強会 //////////*/
.top_seminar {
    padding: 20px 0 60px;
}

.top_seminar ul {
    display: flex;
    flex-wrap: wrap;
}

.top_seminar ul li {
    margin-right: 45px;
    margin-bottom: 40px;
}

.top_seminar ul li:nth-child(3),
.top_seminar ul li:nth-child(6) {
    margin-right: 0;
}

.top_seminar dl dd {
    text-align: center;
    font-weight: bold;
    line-height: 1.3;
}

.top_seminar dl dd span {
    color:#00812A;
}

@media screen and (max-width: 750px) {
    .top_seminar ul {
        display: block;
    }

    .top_seminar ul li {
        margin-right: 0;
        margin-bottom: 40px;
        text-align:center;
    }

    .top_seminar ul li img {
        width: 100%;
    }
    .top_seminar dl dd {
        font-size:16px;
    }
}

/*////////// ヤマレZoom勉強会 //////////*/

/*////////// 立ち上げメンバー //////////*/
.top_menber {
    padding: 20px 0 60px;
    background: #00812A;
}

.top_menber .heading .en_heading {
    color: #ffffff;
}

.top_menber .heading .ja_heading {
    color: #ffffff;
}

.top_menber ul {
    display: flex;
    margin-bottom: 40px;
}

.top_menber ul li {
    margin-right: 24px
}

.top_menber dl dd {
    font-size: 12px;
    color: #ffffff;
    text-align: center;
    line-height: 1.4;
}

.top_menber dl dd span {
    font-size: 14px;
    font-weight: bold;
    line-height: 2;
}

@media screen and (max-width: 750px) {
    .top_menber ul {
        display: flex;
        flex-wrap: wrap;
    }

    .top_menber ul li {
        width: 47%;
        margin: 6% 6% 6% 0;
        text-align: center;
    }

    .top_menber ul li:nth-child(even) {
        width: 47%;
        margin: 6% 0 6% 0;
        text-align: center;
    }

    .top_menber ul li dt img {
        width: 100%;
    }
}

/*////////// 立ち上げメンバー //////////*/

/*////////// 会員事業所の声 //////////*/
.top_voice {
    padding: 20px 0 60px;
}

.top_voice .top_voice_box {
    display: flex;
    flex-wrap: wrap;
}

.top_voice .top_voice_box li.top_voice_box_list {
    margin: 0 50px 40px 0;
    border: 1px solid #00812A;
}

.top_voice .top_voice_box li.top_voice_box_list h3 {
    color: #ffffff;
    background: #00812A;
    padding: 10px 45px;
    line-height: 1.4;
    position: relative;
}

.top_voice .top_voice_box li.top_voice_box_list h3:before {
    content: '';
    position: absolute;
    top: 13px;
    left: 20px;
    /*下線の上下位置調整*/
    display: inline-block;
    width: 10px;
    /*下線の幅*/
    height: 50px;
    /*下線の太さ*/
    background-color: #E0D800;
    /*下線の色*/
}

.top_voice .top_voice_box li.top_voice_box_list h3 span {
    font-size: 24px;
}

.top_voice .top_voice_box li.top_voice_box_list:nth-child(even) {
    margin: 0 0 40px 0;
}

.top_voice .top_voice_box dl {
    display: flex;
    padding: 20px;
}

.top_voice .top_voice_box dl dd {
    padding-left: 10px;
}

.top_voice .top_voice_box dl dd .text {
    width: 352px;
}

.top_voice .top_voice_box dl dd .top_voice_info {
    font-size: 13px;
    line-height: 1.5;
    margin-top: 20px;
}

.top_voice .top_voice_box dl dd .top_voice_info .name {
    font-weight: bold;
}

.top_voice .top_voice_box dl dd .top_voice_info a {
    text-decoration: underline;
}

@media screen and (max-width: 750px) {
    .top_voice {
        padding: 20px 0 20px;
    }
    .top_voice .top_voice_box {
        display: block;
    }

    .top_voice .top_voice_box dl {
        display: block;
        padding: 15px;
    }

    .top_voice .top_voice_box dl dt {
        text-align: center;
        padding-bottom: 10px;
    }

    .top_voice .top_voice_box li.top_voice_box_list {
        margin: 0 0 40px 0;
    }

    .top_voice .top_voice_box li.top_voice_box_list h3 span {
        font-size: 21px;
    }

    .top_voice .top_voice_box li.top_voice_box_list h3:before {
        top: 8px;
    }

    .top_voice .top_voice_box dl dd .text {
        width: 100%;
    }
}

/*////////// 会員事業所の声 //////////*/

/*////////// FAQ //////////*/
.top_faq {
    padding: 20px 0 60px;
    background: #F9F9F9;
}

.top_faq ul {
    width: 800px;
    margin: 0 auto 40px;
    font-weight: bold;
}

.top_faq .question_list dt {
    border-bottom: 1px solid #399D26;
    padding: 30px 0;
    color: #399D26;
}

.top_faq .question_list dd {
    border-bottom: 1px solid #399D26;
    padding: 30px 0;
}

@media screen and (max-width: 750px) {
    .top_faq ul {
        width: 100%;
    }
}

/*////////// FAQ //////////*/


.top_contact {
    padding: 20px 0 60px;
    background: #00812A;
    color: #ffffff;
}

.top_contact .heading .en_heading,
.top_contact .heading .ja_heading {
    color: #ffffff;
}

.top_contact .tel {
    text-align: center;
    font-size: 54px;
    font-weight: bold;
    letter-spacing: 3px;
    line-height: 1;
    margin-bottom: 20px;
}

.top_contact .tel a {
    color: #ffffff;
}

.footer .footer_member_list {
    text-align: center;
    padding: 60px 100px 20px;
}

.footer .footer_member_list .member_list_heading {
    margin-bottom: 30px;
}

.footer .footer_member_list .member_list_logo img {
    width: 100%;
}


.footer .footer_menu {
    color: #ffffff;
    background: #00812A;
    font-size: 14px;
    padding: 20px 50px;
}

.footer .footer_menu a {
    color: #ffffff;
}

.footer .footer_menu .footer_menu_up p {
    font-size: 18px;
    font-weight: bold;
}

.footer .footer_menu .footer_menu_up ul {
    display: flex;
    flex-wrap: wrap;
    width: 500px;
}

.footer .footer_menu .footer_menu_up ul li {
    margin-right: 15px;
}

.footer .footer_menu .footer_menu_under {
    margin-top: 20px;
}

.footer .footer_menu .footer_menu_under .sns_logo {
    display: flex;
    align-items: center;
}

.footer .footer_menu .footer_menu_under .sns_logo li {
    margin-right: 10px;
    line-height: 1;
}

.footer .footer_menu .footer_menu_under .copyright {
    letter-spacing: 1px;
}

@media screen and (max-width: 750px) {
    .top_contact .tel {
        font-size: 10vw;
    }

    .footer .footer_member_list {
        padding: 60px 10px 20px;
    }

    .footer .footer_menu {
        color: #ffffff;
        background: #00812A;
        font-size: 13px;
        padding: 20px 20px;
    }

    .footer .footer_menu .footer_menu_up ul {
        display: flex;
        flex-wrap: wrap;
        width: 100%;
    }
}



/*////////// 固定会員登録ボタン //////////*/
.to_top_btn {
    position: fixed;
    bottom: 10px;
    right: 20px;
    z-index: 200;
}

.to_top_btn:hover {
    cursor: pointer;
}

/*////////// 固定会員登録ボタン //////////*/







/*========= ナビゲーションのためのCSS ===============*/

@media screen and (max-width: 750px) {
    #g-nav {
        /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
        position: fixed;
        z-index: 999;
        /*ナビのスタート位置と形状*/
        top: -120%;
        left: 0;
        width: 100%;
        height: 100vh;
        /*ナビの高さ*/
        background: #00812A;
        /*動き*/
        transition: all 0.6s;
    }

    /*アクティブクラスがついたら位置を0に*/
    #g-nav.panelactive {
        top: 0;
    }

    /*ナビゲーションの縦スクロール*/
    #g-nav.panelactive #g-nav-list {
        /*ナビの数が増えた場合縦スクロール*/
        position: fixed;
        z-index: 999;
        width: 100%;
        height: 100vh;
        /*表示する高さ*/
        overflow: auto;
        -webkit-overflow-scrolling: touch;
    }

    /*ナビゲーション*/
    #g-nav ul {
        /*ナビゲーション天地中央揃え*/
        position: absolute;
        z-index: 999;
        top: 40%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    #g-nav ul.sns_logo {
        position: absolute;
        top: auto;
        left: 50%;
        bottom: 10%;
    }

    /*リストのレイアウト設定*/

    #g-nav li {
        list-style: none;
        text-align: center;
    }

    #g-nav li a {
        color: #ffffff;
        text-decoration: none;
        padding: 10px;
        display: inline-block;
        letter-spacing: 0.1em;
        font-size: 1.2em;
        font-weight: bold;
    }

    /*========= ボタンのためのCSS ===============*/
    .openbtn1 {
        position: fixed;
        z-index: 9999;
        /*ボタンを最前面に*/
        top: 0;
        right: 0;
        cursor: pointer;
        width: 70px;
        height: 62px;
        background: #E0D800;
    }

    /*×に変化*/
    .openbtn1 span {
        display: inline-block;
        transition: all .4s;
        position: absolute;
        left: 14px;
        height: 3px;
        border-radius: 2px;
        background-color: #ffffff;
        width: 64%;
    }

    .openbtn1 span:nth-of-type(1) {
        top: 15px;
    }

    .openbtn1 span:nth-of-type(2) {
        top: 28px;
    }

    .openbtn1 span:nth-of-type(3) {
        top: 41px;
    }

    .openbtn1.active span:nth-of-type(1) {
        top: 20px;
        left: 10px;
        transform: translateY(10px) rotate(-45deg);
        width: 68%;
    }

    .openbtn1.active span:nth-of-type(2) {
        opacity: 0;
    }

    .openbtn1.active span:nth-of-type(3) {
        top: 40px;
        left: 10px;
        transform: translateY(-10px) rotate(45deg);
        width: 68%;
    }

}