@charset "UTF-8";

@import url(https://fonts.googleapis.com/css?family=Montserrat:400,500,700|Noto+Sans+JP:300,400,500,700|Noto+Serif+JP:500,700&display=swap&subset=japanese);
@import url(https://fonts.googleapis.com/css2?family=Merriweather:wght@300&display=swap);
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script&family=Oswald:wght@500&display=swap');

*,
*:before,
*:after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html,
body {
    font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Helvetica Neue", Arial, Meiryo, sans-serif;
    font-size: 62.5%;
    overflow-x: hidden;
    color: #333;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1;
}

p {
    margin-bottom: 0px !important;
}

a,
a:hover {
    color: #fff;
    transition: .3s;
    text-decoration: none;
}

.mt10 {
    margin-top: 10px;
}

.mt20 {
    margin-top: 20px;
}

.mt30 {
    margin-top: 30px;
}

.mt40 {
    margin-top: 40px;
}

.mt60 {
    margin-top: 60px;
}

.mt100 {
    margin-top: 100px;
}

.mb10 {
    margin-bottom: 10px;
}

.mb12 {
    margin-bottom: 12px;
}

.mb20 {
    margin-bottom: 20px;
}

.mb30 {
    margin-bottom: 30px;
}

.mb40 {
    margin-bottom: 40px;
}

.mb60 {
    margin-bottom: 60px;
}

.mb80 {
    margin-bottom: 80px;
}

.mb100 {
    margin-bottom: 100px;
}

.bg01 {
    width: 100%;
    height: 400px;
    padding-top: 50px;
    background-color: #f4f4ec;
    z-index: -3;

}

.br480,
.br600,
.br768,
.br1200 {
    display: none;
}

.flexbox {
    display: flex;
    flex-wrap: wrap;
}

@media (max-width: 1200px) {
    .br1200 {
        display: block;
    }
}

@media (max-width: 768px) {
    .br768 {
        display: block;
    }
}

@media (max-width: 600px) {
    .br600 {
        display: block;
    }
}

@media (max-width: 480px) {
    .br480 {
        display: block;
    }
}

/*　//////////////////////////////////////////////////
　Login
//////////////////////////////////////////////////　*/
.login_header {
    height: 200px;
    border-top: 5px solid #02ac2a;
    text-align: center;
}

.login_header img {
    margin: 40px 0;
    width: 565px;
}

.login_area {
    display: flex;
    justify-content: center;
}

.tab-wrap {
    display: flex;
    flex-wrap: wrap;
    max-width: 850px;
    width: 100%;
    font-size: 2rem;
    font-weight: 400;
}

.tab-wrap:after {
    content: '';
    width: 100%;
    height: 3px;
    background: #02ac2a;
    display: block;
    order: -1;
}

.tab-label {
    display: flex;
    justify-content: center;
    min-height: 80px;
    height: 2rem;
    margin-bottom: 0;
    padding: 10px .5em;
    order: -1;
    position: relative;
    font-size: 2rem;
    font-weight: 600;
    color: #333;
    background: #ccc;
    text-shadow: 0 -1px 0 rgba(0, 0, 0, .2);
    white-space: nowrap;
    text-align: center;
    align-items: center;
    z-index: 1;
    cursor: pointer;
    border-radius: 10px 10px 0 0;
    flex: 1;
}

.tab-content {
    width: 100%;
    height: 0;
    overflow: hidden;
    opacity: 0;
}

/* アクティブなタブ */
.tab-switch:checked+.tab-label {
    background: #3A70FB;
    color: #fff;
}

.tab-switch:checked+.tab-label2 {
    background: #02ac2a;
    color: #fff;
}

.tab-switch:checked+.tab-label+.tab-content {
    height: auto;
    overflow: auto;
    padding: 20px;
    opacity: 1;
    transition: .5s opacity;
    box-shadow: 0 0 3px rgba(0, 0, 0, .2);
    border-radius: 0px 0px 10px 10px;
}

/* ラジオボタン非表示 */
.tab-switch {
    display: none;
}

.login_container {
    text-align: center;
    font-size: 2rem;
    font-weight: 400;
    color: #333;
}

.login_container .login_input {
    margin: 0 auto;
    margin-bottom: 20px;
    min-width: 500px;
    width: 45vw;
    text-align: left;
}

.login_container input {
    width: 100%;
    border: solid 1px #999;
    border-radius: 5px;
}

.login_container input::placeholder {
    padding-left: 5px;
}

.login_strong_text strong {
    font-size: 2rem;
    font-weight: 600
}

.login_btn button {
    font-family: 'Noto Sans JP', sans-serif;
    position: relative;
    display: inline-block;
    max-width: 500px;
    width: 90%;
    padding: 10px;
    font-size: 2rem;
    font-weight: 500;
    color: #fff;
    background-color: #02ac2a;
    border: none;
    border-radius: 9999px;
}

.login_btn button:after {
    position: absolute;
    font-family: 'Font Awesome 5 Free';
    font-size: 2.5rem;
    font-weight: 900;
    content: '\f0da';
    padding: 0 12px 0 15px;
    top: 13%;
    right: 10px;
    color: #02ac2a;
    background-color: #fff;
    border-radius: 9999px;
}

.login_btn button:hover {
    background: #05d135;
    transition: .3s;
}

.signup_btn button {
    background-color: #3A70FB;
}

.signup_btn button:after {
    color: #3A70FB;
}

.signup_btn button:hover {
    background: #638fff;
}

.login_link {
    font-family: 'Noto Sans JP', sans-serif;
    position: relative;
    display: inline-block;
    max-width: 500px;
    width: 90%;
    padding: 10px;
    font-size: 2rem;
    font-weight: 500;
    color: #fff;
    background-color: #3A70FB;
    border-radius: 9999px;
}

.login_link li a .login_link_in {
    display: table-cell;
    vertical-align: middle;
}

.login_link:after {
    position: absolute;
    font-family: 'Font Awesome 5 Free';
    font-size: 2.5rem;
    font-weight: 900;
    content: '\f0da';
    padding: 0 12px 0 15px;
    top: 13%;
    right: 10px;
    color: #3A70FB;
    background-color: #fff;
    border-radius: 9999px;
}

.login_link:hover {
    background: #638fff;
    transition: .3s;
}


@media (max-width: 600px) {
    .login_header img {
        width: 90%;
    }

    .login_container .login_input {
        min-width: 90%;
    }

    .login_container .login_input input {
        min-width: 100%;

    }

    .login_link:after {
        top: 25%;
    }
}

@media (max-width: 501px) {
    .login_header {
        height: 150px;
    }

    .login_header img {
        margin-bottom: 20px;
    }

    .tab-label2 {
        border-radius: 0;
    }

    .tab-switch:checked+.tab-label+.tab-content {
        padding: 0;
    }
}

/*　//////////////////////////////////////////////////
　forget
//////////////////////////////////////////////////　*/

.page_top.forget_top {
    padding-top: 0;
}

/*　//////////////////////////////////////////////////
　regist
//////////////////////////////////////////////////　*/

.page_table {
    width: 100%;
    border-collapse: collapse;
    border-top: 1px solid #02ac2a;
    margin-bottom: 20px;
    font-size: 2rem;
    font-weight: 300;
    color: #333;
}

.page_table tr {
    border-bottom: 1px dotted #02ac2a;
}

.page_table tr:last-child {
    border-bottom: 1px solid #02ac2a;
}

.page_table tr th {
    width: 25%;
    padding: 20px 10px;
    font-size: 2rem;
    font-weight: 600;
    color: #005b41;
    flex-wrap: wrap;
    vertical-align: middle;
}

.page_table tr th span {
    margin-left: 5px;
    padding: 5px 8px;
    font-size: 1.2rem;
    font-weight: 300;
    color: #fff;
    background-color: #9d0718;
    vertical-align: middle;
}

.page_table tr td {
    /* width: 75%; */
    background-color: #fff;
    padding: 20px 20px;
    vertical-align: middle;
    text-align: left;
}

.form_company {
    width: 100%;
    gap: 1rem;
}

.form_company .form_company_select {
    max-width: 220px;
    width: 100%;
}

.form_company .form_company_select select {
    width: 100%;
}

.form_company .form_company_text {
    width: 46%;
}

.form_company .form_company_text div {
    position: relative;
    top: 1px;
}

.form_select {
    max-width: 220px;
    width: 100%;
    -webkit-appearance: none;
    appearance: none;
    /* width: 100%; */
    padding: 4px;
    color: #333;
    font-size: 1.5rem;
    border-radius: 5px;
    border: 1px solid #999;
    font-weight: 300;
}

.form_policy {
    padding: 20px;
    border: solid 1px #02ac2a;
}

.form_policy ul {
    font-size: 1.6rem;
    font-weight: 400;
    text-align: left;
    list-style-position: inside;
}

.form_policy ul li {
    text-indent: -1em;
    padding-left: 1em;
}

.form_policy ul li a {
    color: #02ac2a;
    text-decoration: underline;
}

.form_policy ul li a:hover {
    color: #05d135;
    transition: .3s;
}

.form_policy_check input[type=checkbox] {
    display: none;
}

.check-box__text {
    display: inline-block;
    padding: 3px 0 3px 40px;
    cursor: pointer;
    position: relative;
}

.check-box__text::before {
    content: '';
    display: inline-block;
    position: absolute;
    width: 25px;
    padding-top: 25px;
    top: 5px;
    left: 0;
    border: 1px solid #333;
}

.check-box__text::after {
    content: '';
    display: inline-block;
    position: absolute;
    width: 18px;
    padding-top: 12px;
    top: 5px;
    left: 4px;
    border-left: 3px solid #02ac2a;
    border-bottom: 3px solid #02ac2a;
    transform: rotate(-45deg);
    opacity: 0;
}

.form_policy_check input[type=checkbox]:checked+span::after {
    opacity: 1;
}

@media (max-width: 1200px) {
    .form_company .form_company_text {
        width: 69.5%;
    }
}

@media (max-width: 1191px) {
    .form_company .form_company_text {
        width: 100%;
    }
}

@media (max-width: 840px) {
    .page_table {
        font-size: 1.6rem;
    }

    .page_table tr th {
        flex-wrap: wrap;
        font-size: 1.6rem;
    }

}

@media (max-width: 600px) {

    .page_table tr th,
    .page_table tr td {
        width: 100%;
        display: block;
    }

    .form_company .form_company_select select {
        margin-bottom: 5px;
    }

    .form_company .form_company_text div {
        margin-bottom: 7px;
    }

    .page_table tr th {
        background-color: #ecf4ec;
    }

}


/*　//////////////////////////////////////////////////
　header
//////////////////////////////////////////////////　*/

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
}

.header_toppage {
    transition: .3s ease;
    background: rgba(255, 255, 255, .8);
    box-shadow: 0 0 5px rgba(0, 0, 0, .2);
}

.header_toppage.transform {
    background: rgba(255, 255, 255, 1);
    transition: .6s ease;
    box-shadow: 0 0 5px rgba(0, 0, 0, .2);
}

.header_page {
    background-color: #fff;
    box-shadow: 0 0 5px rgba(0, 0, 0, .2);
}

.header-in {
    width: 100%;
    height: 80px;
    margin: 0 auto;
}

.header_logo img {
    position: absolute;
    top: 15px;
    left: calc(50% - 600px);
    width: 300px;
}

.header_form {
    position: absolute;
    display: flex;
    top: 0;
    right: calc(50% - 600px);
}

.header_contact {
    position: relative;
    width: 72px;
    height: 72px;
    margin-top: 4px;
    background-color: #02ac2a;
    border-radius: 9999px;
}

.header_contact_btn {
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: #02ac2a;
    color: #fff;
    text-align: center;
    text-decoration: none;
    border-radius: 9999px;
}

.header_contact:hover,
.header_contact_btn:hover {
    background: #05d135;
    transition: .3s;
}

.header_contact_btn span {
    position: absolute;
    width: 100%;
    font-size: 1rem;
    font-weight: 400;
    top: 75%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    -webkit-transform: translateY(-50%) translateX(-50%);
}

.header_contact_btn span::before {
    position: absolute;
    top: -40px;
    left: 21px;
    font-size: 3rem;
    content: '\f2f5';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
}

.header_menu {
    width: 100%;
    height: 72px;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
}

.header_menu_in {
    margin-right: calc(55% - 580px);
    text-align: right;
}

.header_menu_in .header_menu_name {
    font-family: 'Noto Sans JP', sans-serif;
    margin-right: 25px;
    margin-bottom: 10px;
    font-size: 1.6rem;
    font-weight: 400;
}

.header_menu ul {
    margin-bottom: 0px;
}

.header_menu li {
    font-family: 'Noto Sans JP', sans-serif;
    display: inline-block;
    transition: .3s;
    font-size: 1.5rem;
    color: #333;
    cursor: pointer;
    margin-right: 25px;
}

.header_menu li a {
    color: #333;
    text-decoration: none;
}

.header_menu li span {
    position: relative;
}

.header_menu li span::after {
    position: absolute;
    bottom: -4px;
    left: 50%;
    content: '';
    width: 0;
    height: 2px;
    background-color: #02ac2a;
    transition: .3s;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

.header_menu li span:hover::after {
    width: 100%;
}

.header_menu_active::after {
    width: 100% !important;
}


@media (max-width: 1200px) {
    .header_logo img {
        left: 12px;
    }

    .header_title h1 {
        top: 40px;
        left: 172px;
        font-size: 1.4rem;
    }

    .header_form {
        right: calc(55% - 600px);
    }

    .header_contact {
        right: 0;
    }

    .header_menu_in {
        margin-right: calc(55% - 520px);
    }

}

@media (max-width: 1100px) {
    .header_form {
        right: calc(55% - 540px);
    }

    .header_menu_in {
        margin-right: calc(55% - 450px);
    }
}

@media (max-width: 980px) {
    .header-in {
        height: 60px;
    }

    .header_logo img {
        top: 6px;
        width: 250px;
    }

    .header_contact {
        display: none;
    }

    .header_menu {
        display: none;
    }
}

@media (max-width: 430px) {

    .header_title h1 {
        top: 32px;
        left: 140px;
        font-size: 1.2rem;
    }

    /* .header_logo img {
        top: 6px;
        left: calc(40% - 50px);
    } */

}

/*　//////////////////////////////////////////////////
  　hamburger menu
  //////////////////////////////////////////////////　*/

.hamburger-menu {
    display: none;
}

.menu-btn {
    position: absolute;
    top: 5px;
    right: 10px;
    display: flex;
    height: 50px;
    width: 50px;
    justify-content: center;
    align-items: center;
    z-index: 90;
    background-color: #02ac2a;
    border-radius: 9999px;
}

.menu-btn span,
.menu-btn span:before,
.menu-btn span:after {
    content: '';
    display: block;
    height: 3px;
    width: 25px;
    border-radius: 3px;
    background-color: #ffffff;
    position: absolute;
    -webkit-transition: .2s ease-in-out;
    transition: .2s ease-in-out;
}

.menu-btn span:before {
    bottom: 8px;
}

.menu-btn span:after {
    top: 8px;
}

#menu-btn-check:checked~.menu-btn {
    position: fixed;
}

#menu-btn-check:checked~.menu-btn span {
    background-color: rgba(255, 255, 255, 0);
    -webkit-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}

#menu-btn-check:checked~.menu-btn span::before {
    bottom: 0;
    transform: rotate(45deg);
    -webkit-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}

#menu-btn-check:checked~.menu-btn span::after {
    top: 0;
    transform: rotate(-45deg);
    -webkit-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}

#menu-btn-check {
    display: none;
}

.menu-content {
    width: 100%;
    height: calc(100% - 60px);
    position: fixed;
    top: 60px;
    left: 100%;
    z-index: 10;
    background-color: #fff;
    transition: all 0.5s;
}

.menu-content ul {
    padding: 0;
    margin-bottom: 0;
}

.menu-content ul li {
    list-style: none;
}

.menu-content ul li a {
    display: block;
    width: 100%;
    font-size: 1.6rem;
    font-weight: 600;
    box-sizing: border-box;
    /* color: #333; */
    text-decoration: none;
    padding: 10px 20px;
    position: relative;
}

.hum_nav_g li a {
    color: #02ac2a;
}

.hum_nav_b li a {
    color: #0230fe;
}

.header_sp_member {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.header_sp_member div {
    width: 50%;
    text-align: center;
}

.header_sp_name {
    font-size: 1.6rem;
    font-weight: 600;
    margin-top: 15px;
    padding-left: 20px;
    text-align-last: left;
}

.header_sp_logout a {
    display: inline-block;
    max-width: 200px;
    width: 90%;
    padding: 10px;
    font-size: 1.6rem;
    font-weight: 600;
    background-color: #02ac2a;
    border-radius: 9999px;
    text-decoration: none;
}

.header_sp_logout a:before {
    position: relative;
    font-size: 1.8rem;
    margin-right: 10px;
    content: '\f2f5';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    vertical-align: middle;
}

.header_sp_name {
    text-align: left;
}

#menu-btn-check:checked~.menu-content {
    left: 0;
}

#menu-btn-check:checked~.menu-content1 {
    left: 0;
}

@media (max-width: 980px) {
    .hamburger-menu {
        display: block;
    }
}

.animation {
    opacity: 0;
    visibility: hidden;
    transition: 1s;
    transform: translateY(30px);
}

@media (max-width: 490px) {
    .header_sp_name {
        margin-top: 0;
    }
}

.animation {
    opacity: 0;
    visibility: hidden;
    transition: 1s;
    transform: translateY(30px);
}

/*アニメーション要素までスクロールした時のスタイル*/
.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/*　//////////////////////////////////////////////////
　TOPPAGE - MAIN
//////////////////////////////////////////////////　*/

section {
    width: 1200px;
    margin: 0 auto;
}

.top_nav {
    margin-top: 160px;
    display: flex;
    justify-content: left;
    gap: 1rem;
    flex-wrap: wrap;
    list-style: none;
    text-align: center;
}

.top_nav li {
    width: 24%;
    margin-bottom: 20px;
}

.top_nav li a {
    display: inline-block;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 1.6rem;
    font-weight: 500;
    width: 90%;
    max-height: 259.2px;
    height: 20vw;
    color: #fff;
    border-radius: 9999px;
}

.top_nav li a:hover {
    transform: scale(1.1);
    /*background: #05d135;*/
    opacity: 0.8;
    transition: .3s;
}

.top_nav li a span {
    display: inline-block;
    width: 100%;
}




/*アイコンカラー*/
.top_nav li.top_nav_g a {
    background-color: #02ac2a;
}

.top_nav li.top_nav_b a {
    background-color: #3A70FB;
}

/* イレギュラー背景色変更*/
.top_nav li a.c-7,
.top_nav li a.c-9 {
    background-color: #eeb300;
}

/*アイコンの位置*/
.top_nav_1 a span {
    margin-top: 25px;
}

.top_nav_2 a span {
    margin-top: 45px;
}

.top_nav_3 a span {
    margin-top: 35px;
}

.top_nav_4 a span {
    margin-top: 65px;
}

.top_nav_5 a span {
    margin-top: 60px;
}

.top_nav_6 a span {
    margin-top: 65px;
}

.top_nav_7 a span {
    margin-top: 40px;
}

.top_nav_8 a span {
    margin-top: 40px;
}

.top_nav_9 a span {
    margin-top: 40px;
}


/*アイコンの幅・テキストの位置*/
.top_nav_1 a img {
    width: 60%;
    margin-bottom: 10px;
}

.top_nav_2 a img {
    width: 70%;
    margin-bottom: 22px;
}

.top_nav_3 a img {
    width: 55%;
    margin-bottom: 20px;
}

.top_nav_4 a img {
    width: 55%;
    margin-bottom: 20px;
}

.top_nav_5 a img {
    width: 50%;
    margin-bottom: 20px;
}

.top_nav_6 a img {
    width: 50%;
    margin-bottom: 20px;
}

.top_nav_7 a img {
    width: 50%;
    margin-bottom: 20px;
}

.top_nav_8 a img {
    width: 40%;
    margin-bottom: 20px;
}

.top_nav_9 a img {
    width: 60%;
    margin-bottom: 20px;
}

.products_list {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    list-style: none;
}

.products_list li {
    width: 25%;
    line-height: 1;
    margin-bottom: 20px;
    text-align: center;
}

.products_list li a img:hover {
    transform: scale(1.1);
    opacity: 0.6;
    transition: .3s;
}

.products_list li img {
    width: 90%;
}

.banner_list {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    list-style: none;
}

.banner_list li {
    width: 33%;
    line-height: 1;
    margin-bottom: 20px;
    text-align: center;
}

.banner_list li a img:hover {
    transform: scale(1.1);
    opacity: 0.6;
    transition: .3s;
}

.banner_list li img {
    width: 90%;
}

@media (max-width: 1200px) {
    section {
        width: 90%;
        margin: 0 auto;
    }

    .top_nav_1 a span {
        margin-top: 2vw;
    }

    .top_nav_2 a span {
        margin-top: 3.3vw;
    }

    .top_nav_3 a span {
        margin-top: 2.5vw;
    }

    .top_nav_4 a span {
        margin-top: 4.7vw;
    }

    .top_nav_5 a span {
        margin-top: 4vw;
    }

    .top_nav_6 a span {
        margin-top: 4vw;
    }

    .top_nav_7 a span {
        margin-top: 2.7vw;
    }

    .top_nav_8 a span {
        margin-top: 3vw;
    }

    .top_nav_9 a span {
        margin-top: 2.7vw;
    }
}

@media (max-width: 1100px) {

    .top_nav_1 a span {
        margin-top: 2.5vw;
    }

    .top_nav_2 a span {
        margin-top: 3.5vw;
    }

    .top_nav_3 a span {
        margin-top: 2.7vw;
    }

    .top_nav_4 a span {
        margin-top: 5vw;
    }

    .top_nav_5 a span {
        margin-top: 4.5vw;
    }

    .top_nav_6 a span {
        margin-top: 4.5vw;
    }

    .top_nav_7 a span {
        margin-top: 3.2vw;
    }

    .top_nav_8 a span {
        margin-top: 3.5vw;
    }

    .top_nav_9 a span {
        margin-top: 3.2vw;
    }

}

@media (max-width: 980px) {
    .top_nav {
        margin-top: 140px;
    }

    .top_nav li {
        width: 32%;
        margin-bottom: 20px;
    }

    .top_nav li a {
        max-height: 255.61px;
        height: 25.8vw;
    }

    .top_nav_1 a span {
        margin-top: 3.5vw;
    }

    .top_nav_2 a span {
        margin-top: 5.2vw;
    }

    .top_nav_3 a span {
        margin-top: 4.4vw;
    }

    .top_nav_4 a span {
        margin-top: 6vw;
    }

    .top_nav_5 a span {
        margin-top: 6vw;
    }

    .top_nav_6 a span {
        margin-top: 6vw;
    }

    .top_nav_7 a span {
        margin-top: 4vw;
    }

    .top_nav_8 a span {
        margin-top: 4vw;
    }

    .top_nav_9 a span {
        margin-top: 4vw;
    }

}

@media (max-width: 768px) {

    .top_nav {
        margin-top: 100px;
    }

    .top_nav li {
        width: 49%;
        margin-bottom: 20px;
    }

    .top_nav li a {
        max-height: 332.07px;
        height: 42vw;
    }

    .top_nav_1 a span {
        margin-top: 5.5vw;
    }

    .top_nav_2 a span {
        margin-top: 8.7vw;
    }

    .top_nav_3 a span {
        margin-top: 6.5vw;
    }

    .top_nav_4 a span {
        margin-top: 11.5vw;
    }

    .top_nav_5 a span {
        margin-top: 11.5vw;
    }

    .top_nav_6 a span {
        margin-top: 11.5vw;
    }

    .top_nav_7 a span {
        margin-top: 8vw;
    }

    .top_nav_8 a span {
        margin-top: 8vw;
    }

    .top_nav_9 a span {
        margin-top: 8vw;
    }

    .products_list {
        margin: 0 20px;
    }

    .products_list li {
        width: 50%;
    }

    .banner_list li {
        width: 100%;
    }
}

@media (max-width: 600px) {
    .top_nav_1 a span {
        margin-top: 5vw;
    }

    .top_nav_2 a span {
        margin-top: 8vw;
    }

    .top_nav_3 a span {
        margin-top: 6.3vw;
    }

    .top_nav_4 a span {
        margin-top: 11.1vw;
    }

    .top_nav_5 a span {
        margin-top: 11.1vw;
    }

    .top_nav_6 a span {
        margin-top: 11.1vw;
    }

    .top_nav_7 a span {
        margin-top: 7.5vw;
    }

    .top_nav_8 a span {
        margin-top: 7.5vw;
    }
}

@media (max-width: 520px) {
    .top_nav li {
        width: 48%;
        margin-bottom: 20px;
    }

    .top_nav li a {
        max-height: 332.07px;
        height: 42vw;
        font-size: 1.2rem;
    }

    .top_nav_1 a img {
        margin-bottom: 5px;
    }

    .top_nav_2 a img {
        margin-bottom: 15px;
    }

    .top_nav_3 a img {
        margin-bottom: 10px;
    }

    .top_nav_4 a img {
        margin-bottom: 10px;
    }

    .top_nav_5 a img {
        margin-bottom: 10px;
    }

    .top_nav_6 a img {
        margin-bottom: 10px;
    }

    .top_nav_7 a img {
        margin-bottom: 5px;
    }

    .top_nav_8 a img {
        margin-bottom: 5px;
    }

    .top_nav_9 a img {
        margin-bottom: 5px;
    }

    .top_nav_1 a span {
        margin-top: 4vw;
    }

    .top_nav_2 a span {
        margin-top: 6.2vw;
    }

    .top_nav_3 a span {
        margin-top: 4.3vw;
    }

    .top_nav_4 a span {
        margin-top: 9.1vw;
    }

    .top_nav_5 a span {
        margin-top: 9.1vw;
    }

    .top_nav_6 a span {
        margin-top: 9.1vw;
    }

    .top_nav_7 a span {
        margin-top: 5.5vw;
    }

    .top_nav_8 a span {
        margin-top: 5.5vw;
    }

    .top_nav_9 a span {
        margin-top: 5.5vw;
    }
}

/*　//////////////////////////////////////////////////
　news-single,archive
//////////////////////////////////////////////////　*/


.midashi01 {
    text-align: center;
}

.midashi01 h3 {
    position: relative;
    font-family: 'Noto Sans JP', sans-serif;
    max-width: 450px;
    width: 90%;
    margin: 0 auto;
    padding: 1rem 1rem 1rem 1.5rem;
    border-radius: 30px;
    background-color: #02ac2a;
    color: white;
    font-weight: bold;
    font-size: 2.5rem;
    font-weight: 500;
}

.midashi01 h3:before {
    position: absolute;
    top: 100%;
    left: 50%;
    height: 0;
    width: 0;
    border-style: solid;
    border-color: transparent;
    border-top-color: #02ac2a;
    border-width: 8px;
    content: "";
}

/* .news_container {
    position: relative;
} */

.news-in {
    list-style: none;
    border-top: 1px solid #02ac2a;
    border-bottom: 1px solid #02ac2a;
}

.news-in li {
    padding: 10px 20px;
}

.news-in li:first-child {
    padding-top: 20px;
}

.news-in li:last-child {
    border-bottom: none;
    padding-bottom: 20px;
}

.news-in li span {
    display: inline-block;
    width: 100px;
    color: #333;
    font-size: 1.5rem;
    font-weight: 400;
    vertical-align: top;
}

.news-in li p {
    display: inline-block;
    font-size: 1.6rem;
    font-weight: 300;
    /* text-indent: 0.5em; */
    padding-left: 0;
    vertical-align: top;
}

.news-in li p a {
    text-decoration: none;
    color: #333;
}

.news-in li p a:hover {
    color: #02ac2a;
}

.news_button {
    text-align: center;
}

.news_button a {
    font-family: 'Noto Sans JP', sans-serif;
    position: relative;
    display: inline-block;
    max-width: 350px;
    width: 90%;
    padding: 10px;
    font-size: 2rem;
    font-weight: 500;
    color: #fff;
    background-color: #02ac2a;
    border-radius: 9999px;
}

.news_button a:after {
    position: absolute;
    font-family: 'Font Awesome 5 Free';
    font-size: 2.5rem;
    font-weight: 900;
    content: '\f0da';
    padding: 0 12px 0 15px;
    top: 13%;
    right: 10px;
    color: #02ac2a;
    background-color: #fff;
    border-radius: 9999px;
}

.news_button a:hover {
    background: #05d135;
    transition: .3s;
}

.news-box {
    padding-top: 20px;
}

.page-main .news_title tr td {
    vertical-align: bottom;
    padding-right: 10px;
    padding-bottom: 2px;
    text-align: right;
}

.news-text p {
    padding-bottom: 10px;
    color: #333;
    font-size: 1.6rem;
    font-weight: 300;
}

.news-text p a {
    padding-bottom: 10px;
    color: #02ac2a;
    font-size: 1.6rem;
    font-weight: 300;
}

.news-text p a:hover {
    color: #05d135;
}

.news-text .wp-block-image {
    text-align: center;
}

.news_prevnext {
    display: flex;
    justify-content: space-between;
    padding-top: 8px;
}

.news_button_prev a {
    position: relative;
    padding: 10px 30px;
    font-size: 1.6rem;
    font-weight: 400;
    color: #fff;
    background-color: #02ac2a;
    border-radius: 9999px;
}

.news_button_prev a:before {
    position: absolute;
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    content: '\f053';
    top: 16%;
    left: 10px;
    color: #fff;
}

.news_button_prev a:hover {
    background: #02ac2a;
    transition: .3s;
}

.news_list_container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.news_list {
    width: 78%;
}

.news_sidebar {
    width: 20%;
}

.sidebar01 {
    font-family: 'Noto Sans JP', sans-serif;
    padding: 20px;
    font-size: 1.6rem;
    font-weight: 600;
    line-height: 3rem;
    background-color: #02ac2a;
    border-radius: 10px;
    list-style: none;
}

.sidebar01 li a:hover {
    color: #7ee494;
    transition: .3s;
}


@media (max-width: 980px) {
    .page-title {
        width: 100%;
        height: 200px;
        margin-top: 60px;
    }

}

@media (max-width: 760px) {

    .midashi01_8_mb {
        margin-bottom: 80px;
    }

    .news_list {
        width: 100%;
    }

    .news_sidebar {
        width: 100%;
        padding: 20px;
    }

}


/*　//////////////////////////////////////////////////
　FOOTER
//////////////////////////////////////////////////　*/

footer {
    width: 100%;
}

.footer {
    width: 100%;
    background-color: #02ac2a;
    padding: 30px 0;
    margin-bottom: 0;
    margin-top: auto;
}

.footer-in {
    position: relative;
    width: 1200px;
    margin: 0 auto;
}

.rules {
    width: 100%;
    background-color: #E1FFE8;
    padding: 30px 0;
    font-size: 1.6rem;
}
.rules-in {
    position: relative;
    width: 1200px;
    margin: 0 auto;
}

.rules_text {
	/*color:#fff;*/
    font-size: 1.6rem;
    font-weight: 300;
	text-indent:-1em;
	padding-left:1em;
}

.footer_text {
    color: #fff;
    font-size: 1.4rem;
    font-weight: 300;
}

.footer_copy {
    text-align: center;
    color: #fff;
    font-size: 1.2rem;
    font-weight: 300;
}

#page_top {
    width: 50px;
    height: 50px;
    position: fixed;
    right: calc(50% - 600px);
    bottom: 30px;
    transition: 0.3s;
    color: #fff;
    border-radius: 9999px;
    background-color: #007bff;
}

#page_top a {
    position: relative;
    display: block;
    width: 50px;
    height: 50px;
    text-decoration: none;
}

#page_top a::before {
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    content: '\f077';
    font-size: 25px;
    color: #fff;
    position: absolute;
    width: 25px;
    height: 25px;
    top: -30px;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    text-align: center;
}

#page_top a::after {
    content: 'TOP';
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    position: absolute;
    width: 25px;
    height: 25px;
    top: 22px;
    bottom: 0;
    right: 0;
    left: -8px;
    margin: auto;
    text-align: center;
}

#page_top:hover {
    opacity: 0.6;
    transition: 0.3s;
}

@media (max-width: 1200px) {
    .footer-in {
        width: 96%;
    }

    #page_top {
        right: 5%;
    }
}

@media (max-width: 980px) {
    .footer-in {
        width: 90%;
    }

    .footer_text {
        font-size: 1.2rem;
    }

    .footer_copy {
        font-size: 1rem;
    }

    /* #page_top {
        visibility: hidden;
    } */
}


@media (max-width: 480px) {
    .footer-in {
        width: 90%;
        /* margin-bottom: 20px; */
    }

}

/*　//////////////////////////////////////////////////
　Teian
//////////////////////////////////////////////////　*/

.page_top {
    padding: 140px 0 70px 0;
    border-bottom: solid 2px #02ac2a;
}

.midashi02 {
    position: relative;
    padding-top: 50px;
    padding-bottom: 50px;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 3.5rem;
    font-weight: 600;
    text-align: center;
}

.midashi02 span {
    position: relative;
    z-index: 2;
}

.midashi02::before {
    width: 500px;
    content: attr(data-en);
    position: absolute;
    top: 0px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(158, 255, 181, 0.4);
    font-size: 6rem;
    font-style: italic;
    z-index: -1;
}

.midashi02::after {
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    content: '\f0d7';
    font-size: 25px;
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    color: #02ac2a;
}

.midashi03 h4 {
    font-family: 'Noto Sans JP', sans-serif;
    padding: 1rem 2rem;
    font-size: 2rem;
    font-weight: 600;
    color: #fff;
    background: #02ac2a;
}

.category_list {
    margin-bottom: 60px;
    display: flex;
    justify-content: left;
    flex-wrap: wrap;
    gap: 2rem;
    list-style: none;
}

.category_list li {
    width: calc(95% / 4);
}

.category_list li a {
    position: relative;
    display: inline-block;
    width: 100%;
    padding: 5px 15px;
    font-size: 2rem;
    font-weight: 600;
    text-align: center;
    color: #02ac2a;
    border: solid 2px #02ac2a;
    border-radius: 9999px;
    text-decoration: none;
}

.category_list li a:hover {
    transition: .3s;
    color: #fff;
    background-color: #05d135;
    border: solid 2px #05d135;
}

.category_list li a:after {
    position: absolute;
    content: '\f078';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    top: 6px;
    right: 15px;
    color: #02ac2a;
}

.category_list li a:hover:after {
    color: #fff;
}

.category_list2 li a {
    position: relative;
    display: table;
    width: 100%;
    height: 100%;
    padding: 5px 15px;
    font-size: 2rem;
    font-weight: 600;
    text-align: center;
    color: #02ac2a;
    border: solid 2px #02ac2a;
    border-radius: 9999px;
    text-decoration: none;
}

.category_list2 li a .category_list_btn {
    height:4em;
    display: table-cell;
    vertical-align: middle;
}

.category_list2 li a:after {
    position: absolute;
    content: '\f078';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    top: 50%;
    margin-top: -.65em;
    right: 15px;
    color: #02ac2a;
}

.page_list {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    list-style: none;
}

.page_list li {
    width: calc(95% / 4);
    margin-bottom: 10px;
}

.page_list li a {
    font-size: 2rem;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
}

.page_list li a:hover {
    opacity: 0.6;
    transition: .3s;
}

.page_list li a img {
    width: 90%;
}

.page_list li a img.image_tate {
    margin-top: 40px;
}
/**
 * 一覧ページのデータなし
 */
.page_list.no_item {
    justify-content: center;
	text-align:center;
}
.page_list.no_item li {
	width: 95%;
	font-size:1.6rem;
}

.page_list2 {
    list-style: none;
}

.page_list2 li {
    display: flex;
    position: relative;
    margin-bottom: 10px;
}

.page_list2 li div {
    padding-left: 24px;
    font-size: 2rem;
    font-weight: 400;
    color: #333;
}

.page_list2 li::before {
    content: '';
    display: inline-block;
    position: absolute;
    top: 5px;
    left: 0;
    width: 2rem;
    height: 2rem;
    background-color: #02ac2a;
    border-radius: 9999px;
}

.products_container {
    position: relative;
    height: 100%;
    padding: 10px;
    padding-bottom: 20px;
    box-shadow: 2px 2px 6px rgba(0, 0, 0, .4);
    border-radius: 10px;
}

.new_icon::before {
    position: absolute;
    padding: 20px 10px;
    top: -15px;
    right: -5px;
    content: 'NEW';
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: #fff;
    background-color: #f6c000;
    border-radius: 9999px;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, .2);
}

.midashi04 {
    position: absolute;
    top: 0;
    left: 0;
}

.midashi04 h5 {
    position: relative;
    display: inline-block;
    margin: 1rem 0 1rem -10px;
    padding: 1rem 3rem;
    font-size: 1.6rem;
    font-weight: 400;
    color: #fff;
    border-radius: 0 100vh 100vh 0;
    background: #02ac2a;
    -webkit-box-shadow: 2px 2px 5px rgba(0, 0, 0, .2);
    box-shadow: 2px 2px 5px rgba(0, 0, 0, .2);
}

.midashi04 h5:before {
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 0;
    height: 0;
    content: '';
    border-top: 10px solid #00831f;
    border-left: 10px solid transparent;
}

.midashi05 p {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 1.6rem;
    font-weight: 600;
    color: #333;
}

.pdf_list {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    row-gap: 2rem;
    list-style: none;
}

.pdf_list li a {
    display: inline-block;
    width: 250px;
    padding: 5px 20px;
    font-size: 2rem;
    font-weight: 600;
    color: #02ac2a;
    border: solid 2px #02ac2a;
    text-align: center;
    text-decoration: none;
    border-radius: 9999px;
}

.pdf_list li a:before {
    padding-right: 10px;
    content: '\f1c1';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: #02ac2a;
}

.pdf_list li a:hover {
    color: #fff;
    border: solid 2px #05d135;
    background-color: #05d135;
    text-align: center;
    text-decoration: none;
    border-radius: 9999px;
}

.pdf_link {
    display: inline-block;
    width: 200px;
    margin-left: 10px;
    padding: 5px 20px;
    font-size: 1.6rem;
    font-weight: 600;
    color: #02ac2a;
    border: solid 2px #02ac2a;
    text-align: center;
    text-decoration: none;
    border-radius: 9999px;
}

.pdf_link:before {
    padding-right: 10px;
    content: '\f1c1';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: #02ac2a;
}

.pdf_link:hover {
    color: #fff;
    border: solid 2px #05d135;
    background-color: #05d135;
    text-align: center;
    text-decoration: none;
    border-radius: 9999px;
}

@media (max-width: 1200px) {
    .category_list li {
        width: calc(98% / 2);
    }

    .page_list li {
        width: calc(93% / 4);
    }

    .page_list li a img {
        margin-top: 10px;
    }

}

@media (max-width: 1125px) {
    .category_list li {
        width: calc(97% / 2);
    }

}

@media (max-width: 980px) {

    .category_list li,
    .page_list li {
        width: calc(97% / 2);
        column-gap: 1rem;
    }

    .page_list li a img {
        margin-top: 0px;
    }
}

@media (max-width: 768px) {

    .category_list {
        margin-bottom: 40px;
    }

    .category_list2 li a .category_list_btn {
        font-size: 1.8rem;
    }

    .midashi03 h4 {
        padding: 1rem 1.6rem;
        font-size: 2rem;
    }

    .midashi03 h4:before {
        width: 172px;
    }
}

@media (max-width: 755px) {

    .category_list li,
    .page_list li {
        width: calc(96% / 2);
    }
}

@media (max-width: 570px) {

    .category_list li,
    .page_list li {
        width: calc(95% / 2);
    }
}

@media (max-width: 540px) {

    .category_list {
        margin-bottom: 20px;
        column-gap: 0.5rem;
        row-gap: 1rem;
    }

    .category_list li {
        width: calc(98% / 2);
    }

    .category_list li a {
        padding: 5px 15px;
        font-size: 1.6rem;
    }

    .page_list li a img {
        margin-top: 10px;
    }

}

@media (max-width: 480px) {

    .midashi02 {
        font-size: 2.5rem;
    }

    .midashi02::before {
        top: 10px;
        font-size: 5rem;
    }

    .category_list {
        padding: 0 10px;
    }

    .page_list li {
        margin: 0 20px;
        width: 90%;
    }

    .page_list li a img {
        margin-top: 20px;
    }

    .category_list li {
        margin: 0 20px;
        width: 90%;
    }
}

@media (max-width: 380px) {

    .page_list li a img {
        margin-top: 0px;
    }
}

/*　//////////////////////////////////////////////////
　Pbrand
//////////////////////////////////////////////////　*/

.category_list2 li a {
    position: relative;
    display: table;
    width: 100%;
    height: 100%;
    padding: 5px 15px;
    font-size: 2rem;
    font-weight: 600;
    text-align: center;
    color: #02ac2a;
    border: solid 2px #02ac2a;
    border-radius: 9999px;
    text-decoration: none;
}

.category_list2 li a .category_list_btn {
    display: table-cell;
    vertical-align: middle;
}

.category_list2 li a:after {
    position: absolute;
    content: '\f078';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    top: 50%;
    margin-top: -.65em;
    right: 15px;
    color: #02ac2a;
}

.rank_number {
    text-align: center;
}

.rank_number li {
    height: 100%;
}

.rank_number h4 {
    position: relative;
    display: inline-block;
    padding-bottom: 5px;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 3.5rem;
    font-weight: 600;
    border-bottom: solid 3px #05d135;
}

.rank_number h4:before {
    content: '\f521';
    font-family: 'Font Awesome 5 Free';
    margin-right: 10px;
    font-size: 3rem;
    font-weight: 900;
    color: #ffdd00;
}

.rank_number h4:after {
    position: absolute;
    bottom: -0.6rem;
    left: 0rem;
    right: 0rem;
    border-bottom: 1px solid #05d135;
    content: '';
}

.page_list3 .products_container {
    height: auto;
}

.page_list3 .products_container .midashi05 {
    height: 48px;
}

@media (max-width: 1058px) {
    .page_list3 .products_container .midashi05 {
        height: 96px;
    }
}

@media (max-width: 980px) {
    .page_list3 .products_container .midashi05 {
        height: 48px;
    }
}

@media (max-width: 494px) {
    .page_list3 .products_container .midashi05 {
        height: 96px;
    }
}

@media (max-width: 380px) {
    .page_list3 .products_container .midashi05 {
        height: 48px;
    }
}

/*　//////////////////////////////////////////////////
　Products
//////////////////////////////////////////////////　*/

.category_list3 {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    list-style: none;
}

.category_list3 li {
    width: calc(96.5% / 3);
}

@media (max-width: 1200px) {
    .category_list3 li {
        width: calc(85vw / 3);
    }
}

@media (max-width: 1070px) {
    .category_list3 li {
        width: calc(84vw / 3);
    }
}

@media (max-width: 980px) {
    .category_list3 li {
        width: calc(97% / 2);
    }
}

@media (max-width: 701px) {
    .category_list3 {
        justify-content: center;
    }

    .category_list3 li {
        width: 90%;
    }
}


/*　//////////////////////////////////////////////////
　Eigyou
//////////////////////////////////////////////////　*/
.pdf_list2 li a {
    width: 100%;
}


/*　//////////////////////////////////////////////////
　single
//////////////////////////////////////////////////　*/

.single_top {
    margin-top: 150px;
}

.single_movie {
    text-align: center;
}

.single_movie iframe {
    max-height: 600px;
    height: 55vw;
}

.col_6 {
    width: 60%;
}

.col_4 {
    width: 40%;
    text-align: center;
}

.midashi06 h5 {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: #333;
    line-height: 3.5rem;
}

.midashi06 span {
    margin-left: 10px;
    padding: 5px 15px;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 1.6rem;
    font-weight: 400;
    color: #fff;
    background-color: #02ac2a;
}

.col_4 img {
    width: 90%;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, .2);
    border-radius: 10px;
}

.single_text {
    font-size: 2rem;
    font-weight: 400;
}

.single_table {
    font-size: 2rem;
    font-weight: 400;
    border-top: 1px solid #02ac2a;
    border-bottom: 1px solid #02ac2a;
}

.single_table tr {
    border-bottom: 1px dotted #02ac2a;
}

.single_table tr:last-child {
    border-bottom: 0;
}

.single_table th {
    padding: 10px 20px;
    background-color: #ecf4ec;
}

.single_table td {
    padding: 10px 20px;
}

.single_button_container {
    justify-content: center;
    gap: 2rem;
}

.single_button_container .news_button a {
    width: 350px;
}

.single_button {
    text-align: center;
}

.single_button a {
    font-family: 'Noto Sans JP', sans-serif;
    position: relative;
    display: inline-block;
    max-width: 350px;
    width: 350px;
    padding: 10px;
    font-size: 2rem;
    font-weight: 500;
    color: #02ac2a;
    border: 2px solid #02ac2a;
    border-radius: 9999px;
}

.single_button a:after {
    position: absolute;
    font-family: 'Font Awesome 5 Free';
    font-size: 2.5rem;
    font-weight: 900;
    content: '\f0da';
    padding: 0 12px 0 15px;
    top: 13%;
    right: 10px;
    color: #fff;
    background-color: #02ac2a;
    border-radius: 9999px;
}

.single_button a:hover {
    color: #fff;
    border: 2px solid #05d135;
    background: #05d135;
    transition: .3s;
}

.single_button a:hover:after {
    color: #05d135;
    background-color: #fff;
}

@media (max-width: 768px) {
    .single_top {
        margin-top: 120px;
    }

    .col_6 {
        width: 100%;
        margin: 0 auto;
        margin-bottom: 20px;
    }

    .col_4 {
        width: 100%;
        text-align: center;
    }

    .single_text {
        display: flex;
        justify-content: center;
    }

    .single_table {
        margin: 0 auto;
    }

}

@media (max-width: 600px) {
    .col_5 {
        width: 100%;
        margin-bottom: 20px;
    }


}


/**
 * MP4表示時
 */
.c-singleMP4	{
	display: flex;
	justify-content: center;
	margin: 50px 0;
	padding: 0;
}
.c-singleMP4 video	{
	width:95%;
	height:100%;
}