@charset "utf-8";

/* ==================================================== */
/*  フォント
/* ==================================================== */
.serif {
    font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", 'Noto Serif JP', serif;
}
.font_other-lang {
    font-family: "Noto Sans SC", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
}


/* ==================================================== */
/*  基本
/* ==================================================== */
html,
body {
    width: 100%;
    height: 100%;
    font-size: 62.5%;
    scroll-behavior: smooth;
}
body {
    position: relative;
    color: #000000;
    font-family: Meiryo, "メイリオ", "Helvetica Neue", Arial, "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "ＭＳ Ｐゴシック", sans-serif;
    font-size: 1.5em;
    -webkit-font-smoothing: antialiased;
    line-height: 1.6;
    letter-spacing: .05em;
    color: #624629;
    word-break: break-all;
}
body.fix {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
}
main {
    display: block;
}
main figure {
    margin: 0;
}
a {
    color: inherit;
    text-decoration: none;
    transition: opacity 0.3s ease;
}
a:hover {
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

@media screen and (max-width: 1024px) {
    a a[href^="tel"] {
        pointer-events: none;
    }
    a:hover {
        opacity: 0.7;
        transition: opacity 0.3s ease;
    }
}

img {
    width: 100%;
    height: auto;
}
img[src$=".svg"] {
    /*IEでimgタグのsrcにsvgを指定した時に崩れる防止*/
    width: 100%;
    height: auto;
}
sup {
    font-size: 70%;
    vertical-align: top;
    position: relative;
    top: -0.1em;
}
sub {
    font-size: 70%;
    vertical-align: bottom;
    position: relative;
    bottom: -0.1em;
}


/* ==================================================== */
/*  全ページ共通（common）クラス
/* ==================================================== */
.flex {
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flexbox;
    display: -moz-flexbox;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: -moz-flex;
    -js-display: flex;
    display: flex;
}
.c-pc-only {
    display: inline-block !important;
}
.c-tab-only {
    display: none !important;
}
.c-sp-only {
    display: none !important;
}
.c-tab-over {
    display: inline-block !important;
}
.c-tab-less {
    display: none !important;
}
.clear {
    clear: both !important;
}
.c-justify {
    text-align: justify;
    text-justify: inter-ideograph;
    text-justify: inter-character;
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
    .c-pc-only {
        display: none !important;
    }
    .c-tab-only {
        display: inline-block !important;
    }
    .c-sp-only {
        display: none !important;
    }
    .c-tab-over {
        display: inline-block !important;
    }
    .c-tab-less {
        display: inline-block !important;
    }
}

@media screen and (max-width: 767px) {
    .c-pc-only {
        display: none !important;
    }
    .c-tab-only {
        display: none !important;
    }
    .c-sp-only {
        display: inline-block !important;
    }
    .c-tab-over {
        display: none !important;
    }
    .c-tab-less {
        display: inline-block !important;
    }
}


/* ==================================================== */
/*  全ページ共通レイアウト
/* ==================================================== */
header {
    position: fixed;
    width: 100%;
    top: 0;
    margin: 0 auto;
    z-index: 998;
}
header .globalnav-wrap h1.logo_nav_open {
    display: none;
}
header .globalnav-wrap h1.display_none {
    display: none !important;
    transition: all .8s ease;
}
header.show .globalnav-wrap h1 {
    display: none;
    transition: all .8s ease;
}
header .globalnav-wrap.open h1.logo_nav_close {
    display: none;
    transition: all .8s ease;
}
header .globalnav-wrap.open h1.logo_nav_open {
    position: relative;
    display: block;
    z-index: 9999;
}
.globalnav-wrap h1 {
    max-width: 226px;
    width: 49%;
    transition: all .6s ease;
}
.globalnav .close {
    display: none;
}
.globalnav-wrap {
    display: block;
    padding: 29px 2.7%;
}
.globalnav-wrap.open .globalnav-wrap h1 {
    display: none;
}
.nav-button-wrap {
    display: block;
    position: absolute;
    right: 37px;
    top: 33px;
    z-index: 1000;
    padding: 12px 11px 9px;
    cursor: pointer;
    background-color: #fff;
    text-align: center;
}
.nav-button-wrap.active {
    background-color: #fff;
}
.nav-button-name {
    font-family: Arial;
    font-size: 1.3rem;
    font-weight: bold;
    line-height: 1;
}
.nav-button,
.nav-button span {
    display: inline-block;
    transition: all 0.3s;
}
.nav-button {
    position: relative;
    width: 34px;
    height: 21px;
    z-index: 1000;
}
.nav-button span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #624629;
}
.nav-button span:nth-of-type(1) {
    top: 0;
}
.nav-button span:nth-of-type(2) {
    top: 9px;
}
.nav-button span:nth-of-type(3) {
    bottom: 0;
}
.active .nav-button span:nth-of-type(1) {
    top: -2px;
    transform: translateY(10px) rotate(-45deg);
}
.active .nav-button span:nth-of-type(2) {
    opacity: 0;
}
.active .nav-button span:nth-of-type(3) {
    transform: translateY(-10px) rotate(45deg);
}
.globalnav {
    display: none;
}
.globalnav-wrap.open .globalnav_center {
    height: 100%;
    width: 100%;
    position: fixed;
    left: 0;
    top: 0;
    background-color: #fff;
}
.globalnav-wrap.open .globalnav_center .globalnav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: space-between;
    max-width: 1000px;
    margin: 0 auto;
    padding: 125px 0 0 0;
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
}
.globalnav-wrap.open .globalnav_center .globalnav ul.nav_box {
    display: inline-block;
    max-width: 288px;
    width: 29%;
    padding: 0;
}
.globalnav-wrap.open .globalnav_center .globalnav ul.nav_box li.dropdown-btn {
    margin-bottom: 35px;
    line-height: 1.45;
}
.globalnav-wrap.open .globalnav_center .globalnav ul.nav_box.right_box li.dropdown-btn:first-child {
    margin-bottom: 140px;
}
.globalnav-wrap.open .globalnav_center .globalnav ul.nav_box li.dropdown-btn:last-child {
    margin-bottom: 0;
}
.globalnav-wrap.open .globalnav_center .globalnav ul.nav_box li.dropdown-btn .menu_parent {
    margin-bottom: 12px;
    padding: 4px 15px;
    color: #fff;
    background-color: #D9BDAA;
    font-weight: bold;
}
.globalnav-wrap.open .globalnav_center .globalnav ul.nav_box li.dropdown-btn .sub_tit {
    margin-bottom: 6px;
}
.globalnav-wrap.open .globalnav_center .globalnav ul.nav_box li.dropdown-btn ul.dropdown li {
    width: 100%;
    margin-bottom: 6px;
    padding-left: 20px;
}
.globalnav-wrap.open .globalnav_center .globalnav ul.nav_box li.dropdown-btn ul.dropdown li:last-child {
    margin-bottom: 0;
}
.globalnav-wrap.open .globalnav_center .globalnav ul.nav_box li.dropdown-btn ul.dropdown li a {
    display: block;
    position: relative;
    font-weight: normal;
    padding-left: 0.2em;
    text-indent: -0.2em;
}
.globalnav-wrap.open .globalnav_center .globalnav ul.nav_box li.dropdown-btn ul.dropdown li a:before {
    content: "- ";
    margin-left: -10px;
}
.globalnav-wrap.open .globalnav_center .globalnav ul.nav_box li.dropdown-btn ul.dropdown.menu_product {
    margin-bottom: 14px;
}
.globalnav-wrap.open .globalnav_center .globalnav ul.nav_box li.dropdown-btn ul.dropdown.menu_labeling-system li:not(:first-child) {
    padding-left: 40px;
}
.globalnav-wrap.open .globalnav_center .globalnav ul.nav_box li.dropdown-btn ul.dropdown.menu_others {
    margin-left: 10px;
}
.globalnav-wrap.open .globalnav_center .globalnav ul.nav_box li.dropdown-btn ul.dropdown.menu_others li {
    margin-bottom: 10px;
    padding-left: 10px;
}

@media screen and (max-width: 1024px) {
    .open header {
        background-color: #fff;
    }
    header .globalnav-wrap h1 {
        max-width: 233px;
        width: 62%;
    }
    .nav-button-wrap {
        top: 15px;
        right: 5.3%;
    }
    .globalnav-wrap {
        height: 93px;
        padding: 18px 5.3%;
    }
    .globalnav-wrap.open .globalnav_center {
        top: 93px;
        padding-bottom: 105px;
    }
    .globalnav-wrap.open .globalnav_center .globalnav {
        display: block;
        padding: 0 5%;
    }
    .globalnav-wrap.open .globalnav_center .globalnav ul.nav_box {
        display: block;
        max-width: 100%;
        width: 100%;
        margin-bottom: 30px;
    }
    .globalnav-wrap.open .globalnav_center .globalnav ul.nav_box.right_box li.dropdown-btn:first-child {
        margin-bottom: 90px;
    }
    .globalnav-wrap.open .globalnav_center .globalnav ul.nav_box li.dropdown-btn .sub_tit {
        margin-bottom: 15px;
    }
    .globalnav-wrap.open .globalnav_center .globalnav ul.nav_box li.dropdown-btn .menu_parent {
        margin-bottom: 20px;
    }
    .globalnav-wrap.open .globalnav_center .globalnav ul.nav_box li.dropdown-btn ul.dropdown li {
        margin-bottom: 12px;
    }
    .globalnav-wrap.open .globalnav_center .globalnav ul.nav_box li.dropdown-btn ul.dropdown.menu_product {
        margin-bottom: 25px;
    }
    .globalnav-wrap.open .globalnav_center .globalnav ul.nav_box li.dropdown-btn ul.dropdown.menu_others li {
        padding-left: 10px;
    }
}

#main {}

@media screen and (max-width: 767px) {
    #main.home {
        padding-top: 0;
    }
}

#footer {
    position: relative;
    margin-top: 180px;
    padding-top: 30px;
    background-color: #F8F3EF;
    z-index: 3;
}
#footer .footer_content {
    justify-content: space-between;
    margin: 0 auto 100px;
}
#footer .footer_content .text_box p {
    margin-bottom: 10px;
    font-size: 1.8rem;
    font-weight: bold;
}
#footer .footer_content .link_area ul {
    display: flex;
}
#footer .footer_content .link_area ul li {
    flex-grow: 1;
    position: relative;
    height: auto;
    margin-right: 30px;
}
#footer .footer_content .link_area ul li:after {
    position: absolute;
    top: 0;
    left: 100%;
    margin-left: 15px;
    content: "";
    width: 1px;
    height: 100%;
    background-color: #624629;
}
#footer .footer_content .link_area ul li:last-child {
    margin-right: 0;
}
#footer .footer_content .link_area ul li:last-child:after {
    content: none;
}
#backtop {
    position: fixed;
    right: 3%;
    bottom: 5%;
}
#backtop a {
    position: relative;
    padding-top: 25px;
    color: #fff;
    font-size: 1.0rem;
    display: block;
    background-color: #D8BDAC;
    width: 55px;
    height: 55px;
}
#backtop a:before {
    content: "";
    display: block;
    position: absolute;
    top: 24px;
    right: 50%;
    width: 10px;
    height: 10px;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    transform: translateX(50%) rotate(315deg);
}
.copyright {
    padding: 23px 4%;
    background-color: #624629;
    text-align: center;
    color: #fff;
    font-size: 1.1rem;
}
.inner {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 40px;
}
.inner_1140 {
    max-width: 1220px;
    margin: 0 auto;
    padding: 0 40px;
}
.inner_895 {
    max-width: 975px;
    margin: 0 auto;
    padding: 0 40px;
}

@media screen and (max-width: 1024px) {
    .copyright {
        padding: 15px 4%;
    }
    .inner {
        width: 100%;
        padding: 0 5%;
    }
    .inner_1140 {
        width: 100%;
        padding: 0 5%;
    }
    .inner_895 {
        width: 100%;
        padding: 0 5%;
    }
    #footer .footer_content {
        margin-bottom: 120px;
    }
}

/* パンくず
==================================================== */
.breadcrumb {
    position: static;
    width: 100%;
    margin-bottom: 70px;
    padding: 12px 0;
    background-color: #F8F3EF;
    overflow-x: auto;
}
.breadcrumb ul {
    display: flex;
    padding: 0 8%;
}
.breadcrumb ul li {
    margin-right: 38px;
    font-size: 1.4rem;
    white-space: nowrap;
}
.breadcrumb ul li:last-of-type {
    padding-right: 8%;
    color: #B0A293;
}
.breadcrumb ul li a {
    position: relative;
    display: inline-block;
}
.breadcrumb ul li a:after {
    position: absolute;
    content: "＞";
    top: 1px;
    right: -27px;
    font-size: 1.2rem;
}

@media screen and (max-width: 767px) {
    .breadcrumb {
        margin-bottom: 60px;
    }
}

/* コンテンツページ
==================================================== */
/* タイトル（背景画像は個別cssで指定します） */
.main_tit_box {
    position: relative;
    width: 100%;
    height: 250px;
    color: #ffffff;
    text-align: center;
}
.main_tit_box .text_box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    width: 100%;
    padding: 0 5%;
    text-shadow: 0 0 6px rgb(0, 0, 0, 0.2);
}
.main_tit_box .text_box span.sub_tit {
    display: inline-block;
    margin-bottom: 10px;
    font-size: 1.5rem;
    font-weight: bold;
    border-bottom: 1px solid #ffffff;
    letter-spacing: 0.1em;
}
.main_tit_box .text_box span.sub_tit-circle {
    display: inline-block;
    margin-bottom: 15px;
    padding: 6px 23px 3px;
    color: #624629;
    background-color: #ffffff;
    font-size: 1.6rem;
    font-weight: bold;
    border-radius: 17px;
    text-align: center;
    text-shadow: none;
}
.main_tit_box .text_box span.sub_tit-noline {
    display: inline-block;
    margin-bottom: 8px;
    font-size: 1.8rem;
    font-weight: bold;
    letter-spacing: 0.1em;
}
.main_tit_box .text_box h1.main_tit {
    font-size: 3.4rem;
    font-weight: bold;
    line-height: 1.4;
    letter-spacing: 0.1em;
}

@media screen and (max-width: 1024px) {
    .main_tit_box-circle .text_box {
        top: 62%;
    }
    .main_tit_box-noline .text_box {
        top: 65%;
    }
}

@media screen and (max-width: 767px) {
    .main_tit_box {
        height: 240px;
    }
    .main_tit_box .text_box {
        top: 70%;
    }
    .main_tit_box .text_box span.sub_tit-circle {
        font-size: 1.3rem;
    }
    .main_tit_box .text_box span.sub_tit-noline {
        font-size: 1.5rem;
    }
    .main_tit_box .text_box h1.main_tit {
        font-size: 3rem;
    }
    .main_tit_box-circle .text_box {
        top: 70%;
    }
}

/* 下線つき見出し */
h2.contents_tit {
    margin-bottom: 42px;
    padding-bottom: 5px;
    font-size: 2.2rem;
    font-weight: bold;
    border-bottom: 1px solid #624629;
}
h2.contents_tit span {
    font-size: 1.5rem;
}

@media screen and (max-width: 767px) {
    h2.contents_tit {
        margin-bottom: 35px;
    }
    h2.contents_tit span {
        display: block;
    }
}

/* 下線つき見出し（木質ボードの製品詳細で使用） */
.product-name_tit {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 30px;
    padding-bottom: 14px;
    border-bottom: 1px solid #624629;
}
.product-name_tit h2.contents_tit {
    margin: 0;
    padding: 0;
    font-size: 2.2rem;
    font-weight: bold;
    border-bottom: none;
}
.product-name_tit p.product-name {
    padding: 8px 40px;
    background-color: #F8F3EF;
    border-radius: 30px;
    font-size: 1.8rem;
    font-weight: bold;
}

@media screen and (max-width: 767px) {
    .product-name_tit {
        flex-direction: column-reverse;
        align-items: flex-start;
    }
    .product-name_tit p.product-name {
        margin-bottom: 10px;
        font-size: 1.6rem;
    }
}

/* 角丸見出し（幅は個別cssで指定します） */
.kadomaru_tit {
    display: inline-block;
    font-size: 1.8rem;
    font-weight: bold;
    padding: 10px;
    background-color: #F8F3EF;
    border-radius: 30px;
    text-align: center;
}

/* table 共通 */
.table_tit {
    margin-bottom: 15px;
    font-size: 1.7rem;
    font-weight: bold;
}
.table_note {
    width: 90%;
    margin-left: auto;
    text-align: right;
    padding-top: 12px;
}
.table_note p {
    display: inline-block;
    text-align: left;
    font-size: 1.3rem;
}
.table_note.w_800 {
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
}
.table_note_flex {
    display: flex;
    justify-content: flex-end;
}
.table_note_flex span {
    display: inline-block;
    width: 5%;
    margin-right: 20px;
    font-size: 1.3rem;
}

@media screen and (max-width: 767px) {
    .table_note {
        width: 100%;
        padding-top: 20px;
    }
    .table_note_flex {
        display: block;
        text-align: left;
    }
    .table_note_flex span {
        width: 100%;
        margin-bottom: 7px;
        font-weight: bold;
        text-align: left;
    }
}

/* 木質ボードの製品詳細 共通 */
.product_note {
    padding-top: 80px;
    font-size: 1.3rem;
    text-align: right;
}

@media screen and (max-width: 767px) {
    .product_note {
        text-align: left;
    }
}

/* 背景色
==================================================== */
.bg_beige {
    background-color: #F8F3EF;
}

/* アイコン
==================================================== */
a[target=_blank]:after {
    content: '';
    display: inline-block;
    width: 21px;
    height: 21px;
    margin: 0 0 2px 8px;
    background-image: url(../img/common/icon_target.svg);
    background-repeat: no-repeat;
    background-size: contain;
    vertical-align: middle;
}
a[href*=".pdf"]:after {
    content: '';
    display: inline-block;
    width: 21px;
    height: 21px;
    margin: 0 0 2px 8px;
    background-image: url(../img/common/icon_pdf.svg);
    background-repeat: no-repeat;
    background-size: contain;
    vertical-align: middle;
}
a[href$=".xlsx"]:after,
a[href$=".xls"]:after {
    content: '';
    display: inline-block;
    width: 21px;
    height: 21px;
    margin: 0 0 2px 8px;
    background-image: url(../img/common/icon_excel.svg);
    background-repeat: no-repeat;
    background-size: contain;
    vertical-align: middle;
}
a[href$=".doc"]:after,
a[href$=".docx"]:after {
    content: '';
    display: inline-block;
    width: 21px;
    height: 21px;
    margin: 0 0 2px 8px;
    background-image: url(../img/common/icon_word.svg);
    background-repeat: no-repeat;
    background-size: contain;
    vertical-align: middle;
}

/* リンクボタン
==================================================== */
/* moreボタン - ベージュ */
a.btn_more_beige {
    position: relative;
    display: block;
    width: 137px;
    height: 33px;
    padding-left: 25px;
    color: #FFFFFF;
    background-color: #DDC9BC;
    text-align: left;
    line-height: 33px;
}
a.btn_more_beige:before {
    position: absolute;
    content: "";
    background: url(../img/common/arrow_01.svg) no-repeat;
    width: 29px;
    height: 6px;
    background-size: cover;
    background-position: center;
    top: 37%;
    right: 20px;
}

/* moreボタン - 白 */
a.btn_more_white {
    position: relative;
    display: block;
    width: 137px;
    height: 33px;
    padding-left: 25px;
    background-color: #FFFFFF;
    text-align: left;
    line-height: 33px;
}
a.btn_more_white:before {
    position: absolute;
    content: "";
    background: url(../img/common/arrow_02.svg) no-repeat;
    width: 29px;
    height: 6px;
    background-size: cover;
    background-position: center;
    top: 37%;
    right: 20px;
}

/* 茶色ボーダーと矢印 */
a.btn_about {
    position: relative;
    display: block;
    width: 257px;
    height: 34px;
    padding-left: 28px;
    border: 1px solid #624629;
    text-align: left;
    line-height: 34px;
}
a.btn_about:before {
    position: absolute;
    content: "";
    background: url(../img/common/arrow_02.svg) no-repeat;
    width: 29px;
    height: 6px;
    background-size: cover;
    background-position: center;
    top: 37%;
    right: 20px;
}

/* 茶色ボーダーと三角矢印 */
a.btn_link-web {
    position: relative;
    display: block;
    width: 134px;
    height: 34px;
    padding-left: 2%;
    border: 1px solid #624629;
    text-align: left;
    line-height: 34px;
}
a.btn_link-web:before {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
    top: 10px;
    right: 10px;
    border-left: 6px solid #624629;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
}
a[target=_blank].btn_link-web:after {
    content: none;
}

/* 木質ボード 一覧ボタン */
a.btn_link-product {
    position: relative;
    display: block;
    width: 100%;
    height: 109px;
    background-color: #624629;
}
a.btn_link-product:after {
    position: absolute;
    content: "";
    background: url(../img/common/arrow_circle_01.svg) no-repeat;
    width: 39px;
    height: 39px;
    background-size: cover;
    background-position: center;
    top: 54px;
    right: 15px;
}
a.btn_link-product p {
    color: #ffffff;
    font-size: 1.8rem;
    font-weight: bold;
}
a.hb_link p {
    padding: 10% 0 0 1.464vw;
}
a.mdf_link p {
    padding: 6% 0 0 1.464vw;
}
a.ib_link p {
    padding: 5% 0 0 1.464vw;
}
a.pb_link p {
    padding: 10% 0 0 1.464vw;
}
a.btn_link-product p span {
    display: block;
    font-size: 1.4rem;
    opacity: 0.7;
}

@media screen and (max-width: 767px) {
    a.btn_link-product {
        height: auto;
        padding: 20px 0 25px 22px;
    }
    a.btn_link-product:after {
        top: 34%;
        right: 22px;
    }
}

/* 木質ボード 詳細ボタン */
a.btn_link-product_detail {
    position: relative;
    display: inline-block;
    width: 194px;
    padding: 22px 23px;
    border: 1px solid #624629;
    background-color: #ffffff;
    font-size: 1.8rem;
    font-weight: bold;
}
a.btn_link-product_detail:after {
    position: absolute;
    content: "";
    background: url(../img/common/arrow_circle_03.svg) no-repeat;
    width: 39px;
    height: 39px;
    background-size: cover;
    background-position: center;
    top: 16px;
    right: 16px;
}

@media screen and (max-width: 767px) {
    a.btn_link-product_detail {
        width: 90%;
    }
}

/* 表示制度 一覧ボタン */
a.btn_link-regulations {
    position: relative;
    display: block;
    max-width: 270px;
    width: 24%;
    height: 109px;
    border: 1px solid #624629;
}
a.btn_link-regulations:after {
    position: absolute;
    content: "";
    background: url(../img/common/arrow_circle_02.svg) no-repeat;
    width: 39px;
    height: 39px;
    background-size: cover;
    background-position: center;
    top: 54px;
    right: 15px;
}
a.btn_link-regulations p {
    font-size: 1.8rem;
    font-weight: bold;
}
a.regulations_link p {
    padding: 10% 0 0 1.464vw;
}
a.member_link p {
    padding: 10% 0 0 1.464vw;
}
a.application_link p {
    padding: 5% 0 0 1.464vw;
}
a.certificate_link p {
    padding: 10% 0 0 1.464vw;
}
a.btn_link-regulations p span {
    display: block;
    font-size: 1.4rem;
    color: #B0A293;
}

@media screen and (max-width: 1024px) {
    a.btn_link-regulations {
        max-width: 450px;
        width: 48%;
        margin-bottom: 20px;
    }
    a.regulations_link p {
        padding: 7% 0 0 1.464vw;
    }
    a.member_link p {
        padding: 7% 0 0 1.464vw;
    }
    a.application_link p {
        padding: 3% 0 0 1.464vw;
    }
    a.certificate_link p {
        padding: 7% 0 0 1.464vw;
    }
}

@media screen and (max-width: 767px) {
    a.btn_link-regulations {
        width: 90%;
        height: auto;
        margin: 0 auto 20px;
        padding: 20px 0 20px 22px;
    }
    a.btn_link-regulations:after {
        top: 34%;
        right: 22px;
    }
    a.regulations_link p,
    a.member_link p ,
    a.application_link p,
    a.certificate_link p {
        padding: 0;
    }
}

/* ベーシックボタン */
.commom-btn{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 55px;
}
.commom-btn .commom-btn_link {
    display: inline-block;
    font-weight: bold;
    text-align: center;
    line-height: 1;
    width: 216px;
    padding: 25px 0;
    margin: 1em;
}
.commom-btn .commom-btn_link01 {
    color: #fff;
    background: #624629;
}
.commom-btn .commom-btn_link02 {
    color: #624629;
    background-color: #fff;
    border: solid 1px #624629;
}
@media screen and (max-width: 767px) {
    .commom-btn {
        display: block;
    }
    .commom-btn .commom-btn_link {
        width: 100%;
        margin: 0 0 15px 0;
    }
}

/* table
==================================================== */
/* table */
@media screen and (max-width: 1024px) {
  table {
    width: auto;
  }
}

@media screen and (max-width: 767px) {
  table {
    width: max-content;
  }
}

/* 横スクロール */
@media screen and (max-width: 1024px) {
    /*===========
    .scroll_box
    ===========*/
    .scroll_box{
        overflow-x: auto;
        padding-bottom: 10px;
        -webkit-overflow-scrolling: touch;
    }
    /*===========
    scrollbar
    ===========*/
    /*スクロールバー全体の高さ*/
    .scroll_box::-webkit-scrollbar {
        height: 4px;
    }
    /*スクロールバー全体の背景*/
    .scroll_box::-webkit-scrollbar-track {
        background: #eee;
    }
    /*スクロールバーの動く部分*/
    .scroll_box::-webkit-scrollbar-thumb {
        background: #aaa;
        border: none;
    }
    /*スクロールバーの動く部分のホバー（マウスオーバー）*/
    .scroll_box::-webkit-scrollbar-thumb:hover {
        background: #999;
    }
}

@media screen and (max-width: 767px) {
    /*===========
    scroll-arrow
    ===========*/
    .scroll-arrow {
        display: block;
        content: '';
        width: 40%;
        height: 7px;
        border-bottom: solid 1px #AA8968;
        border-right: solid 1px #AA8968;
        transform: skew(45deg);
        margin-top: 15px;
        margin-left: auto;
    }
}

/* ページナビ
==================================================== */
.wp-pagenavi {
    display: flex;
    justify-content: center;
    margin-top: 4.5em;
    text-align: center;
}
.wp-pagenavi .current {
    background: #624629;
    border: solid 1px #624629;
    color: #fff;
}
.wp-pagenavi .pages {
    border: none;
}
.wp-pagenavi span {
    margin: 0 7.5px;
    width: 42px;
    height: 42px;
    line-height: 42px;
    display: inline-block;
    border: solid 1px #624629;
    text-align: center;
    font-weight: bold;
}
.wp-pagenavi a,
.wp-pagenavi .extend {
    display: inline-block;
    width: 42px;
    height: 42px;
    line-height: 42px;
    padding:0;
    margin: 0 6px;
    border: solid 1px #624629;
    text-align: center;
    font-weight: bold;
}

.wp-pagenavi .pages {
    display: none;
}

/* アニメーション
==================================================== */
/* コンテンツフェードイン */
.fadeInUp {
    opacity: 0;
    transform: translateY(20px);
    transition: 1s;
}


/* reCAPTCHA 非表示
==================================================== */
.grecaptcha-badge { visibility: hidden; z-index: 5; }

.wpcf7-form .grecaptcha-badge{ visibility: visible; }


/* A4縦でPCレイアウトを印刷させる
==================================================== */
@media print {
    html,
    html body {
        *zoom: 0.65;
    }
    body {
        width: 960px;
    }
}