/* 製薬会社の方へのページ専用スタイル */
:root {
    --primary-color: #00a0c1;
    --secondary-color: #005b7f;
    --accent-color: #ffa500;
    --text-color: #333;
    --light-gray: #f5f5f5;
    --medium-gray: #e0e0e0;
    --dark-gray: #666;
    --light-bg: #f9f9f9;
    --box-shadow: 0 2px 0.5rem rgba(0, 0, 0, 0.05);
    --border-radius: 0.5rem;
}

/* コンテンツセクション */
.content_section {
    margin-bottom: 2.5rem;
}

.content_title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1.25rem;
    padding-bottom: 0.625rem;
    position: relative;
}

.content_title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0.3125rem;
    border-radius: 4px;
    background: linear-gradient(to right, #fac657, #ffd89e);
}

.content_title_sub {
    font-size: 1.25rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
    background: #00a0b8;
    color: #fff;
    border-radius: 0.5rem;
    margin-top: 2rem;
}

.content_subtitle {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--secondary-color);
    margin: 1.875rem 0.5rem 0.9375rem;
    padding-top: 1.875rem;
    border-top: 1px solid #e0e0e0;
}

.content_subtitle.first {
    padding-top: 0;
    border-top: none;
}

.content_subheading {
    font-size: 1.1rem;
    font-weight: 600;
    /*color: var(--secondary-color);*/
    margin: 1.75rem 0 0.75rem;
    position: relative;
    padding-left: 0.9375rem;
    border-left: 4px solid var(--primary-color);
}

.content_subsubtitle {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin: 1.25rem 0 0.625rem;
    position: relative;
    padding-left: 1rem;
}

.content_subsubtitle::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0.625rem;
    height: 0.625rem;
    background-color: var(--accent-color);
    border-radius: 50%;
}

/* メニュー */
.menu_btn_wrap ul {
    margin: 1rem 1rem 0 1rem;
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 0.3rem 1rem;
}

.menu_btn_wrap ul li {
    font-size: 0.9rem;
    padding-left: 1rem;
    position: relative;
}

.menu_btn_wrap ul li::before {
    content: "";
    display: block;
    width: 0.5rem;
    height: 0.5rem;
    background-color: #f3933a;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 0.5rem;
}


/* 画像コンテナ */
.image_container {
    margin: 1.875rem 0;
    text-align: center;
    background-color: #f9f9f9;
    padding: 1.25rem;
    border-radius: 0.5rem;
    box-shadow: 0 2px 0.5rem rgba(0, 0, 0, 0.05);
}

.content_image {
    max-width: 100%;
    height: auto;
    display: inline-block;
}

/* メニューカード */
.menu_cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(18.75rem, 1fr));
    gap: 1.875rem;
    margin-top: 1.875rem;
}

.menu_card {
    background-color: #fff;
    border-radius: 0.5rem;
    box-shadow: 0 0.25rem 0.625rem rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.menu_card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0.375rem 0.9375rem rgba(0, 0, 0, 0.15);
}

.menu_card_image {
    height: 11.25rem;
    overflow: hidden;
}

.menu_card_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.menu_card:hover .menu_card_image img {
    transform: scale(1.05);
}

.menu_card_content {
    padding: 1.25rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.menu_card_title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 0.625rem;
    position: relative;
    padding-left: 1.5625rem;
}

.menu_card_title::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1rem;
    height: 1rem;
    background-image: url(../shared/arr_02.png);
    background-size: contain;
    background-repeat: no-repeat;
}

.menu_card_description {
    color: var(--text-color);
    margin-bottom: 0.9375rem;
    line-height: 1.6;
    flex-grow: 1;
}

.menu_card_link {
    text-align: right;
    margin-top: auto;
}

.menu_card_link a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
}

.menu_card_link a:hover {
    text-decoration: underline;
}

.menu_card_link a::after {
    content: "";
    display: inline-block;
    width: 1rem;
    height: 1rem;
    margin-left: 0.3125rem;
    background-image: url(../shared/arr_02.png);
    background-size: contain;
    background-repeat: no-repeat;
}

/* お問い合わせボックス */
.mc_box {
    padding: 0 1.25rem;
    margin: 1.25rem 0;
}

.fw_bold_circle {
    font-weight: 700;
    margin-bottom: 0.8rem;
    padding-left: 1.25rem;
    position: relative;
    line-height: 1.6;
}

.fw_bold_circle::before {
    content: "";
    display: block;
    width: 0.625rem;
    height: 0.625rem;
    border-radius: 50%;
    background-color: #005b7f;
    position: absolute;
    top: 0.5rem;
    left: 0.2rem;
}

/* 番号付きリスト */
.numbered_list {
    list-style: none;
    padding: 0;
    margin: 1.25rem 0;
}

.numbered_list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.9375rem;
}

.numbered_list .number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1.75rem;
    height: 1.75rem;
    background-color: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    margin-right: 0.9375rem;
    flex-shrink: 0;
    font-weight: 600;
}

.numbered_list .list_content {
    flex: 1;
    padding-top: 1px;
}

/* ドットリスト */
.dot_list {
    list-style: none;
    padding-left: 0;
    margin: 1.25rem 0;
}

.dot_list li {
    position: relative;
    padding-left: 1.25rem;
    margin-bottom: 0.625rem;
    line-height: 1.5;
}

.dot_list .dot {
    position: absolute;
    left: 0;
    top: 0.6em;
    width: 0.5rem;
    height: 0.5rem;
    background-color: var(--accent-color);
    border-radius: 50%;
    display: inline-block;
    transform: translateY(-50%);
}

/* テーブルスタイル */
.table_container {
    /*padding-left: 1.875rem;*/
    margin: 0.9375rem 0;
}

.data_table {
    width: 100%;
    border-collapse: collapse;
    margin: 0;
}

.data_table th,
.data_table td {
    padding: 0.5rem 0.75rem;
    text-align: left;
    border: 1px solid var(--medium-gray);
}

.data_table th {
    background-color: var(--light-gray);
    width: 20%;
    text-align: left;
}

/* テーブルスタイル - 薄い水色 */
.pharmaceutical_content table.th_purple,
.mc_box table.th_purple,
table.th_purple {
    width: 100%;
    border-collapse: collapse;
    margin: 0.9375rem 0;
    box-shadow: var(--box-shadow);
    /*border-radius: var(--border-radius);*/
    overflow: hidden;
}

.pharmaceutical_content table.th_purple thead th,
.mc_box table.th_purple thead th,
table.th_purple thead th{
    border-top: 1px solid #ddd;
}

.pharmaceutical_content table.th_purple th,
.pharmaceutical_content table.th_purple td,
.mc_box table.th_purple th,
.mc_box table.th_purple td,
table.th_purple th,
table.th_purple td {
    padding: 0.5rem 0.75rem;
    text-align: left;
    /*border: 1px solid #d1e8f0;*/
    border: none;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    border-right: 1px solid #ddd;
}

.pharmaceutical_content table.th_purple th,
.mc_box table.th_purple th,
table.th_purple th {
    background-color: #e0f4fa;
    /*color: #005b7f;*/
    font-weight: 400;
}

.pharmaceutical_content table.th_purple tr td:first-child,
.pharmaceutical_content table.th_purple tr th:first-child,
.mc_box table.th_purple tr td:first-child,
.mc_box table.th_purple tr th:first-child,
table.th_purple tr td:first-child,
table.th_purple tr th:first-child {
    /*width: 29%;*/
    width: 23%;
    border-left: 1px solid #ddd;
}

.pharmaceutical_content table.th_purple tr td:not(:first-child),
.pharmaceutical_content table.th_purple tr th:not(:first-child),
.mc_box table.th_purple tr td:not(:first-child),
.mc_box table.th_purple tr th:not(:first-child),
table.th_purple tr td:not(:first-child),
table.th_purple tr th:not(:first-child) {
    width: auto;

}
.download_btn_td{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.histry_list .download_btn_td{
    margin-top: 0.3rem;
}

.pharmaceutical_content table.th_purple tr:nth-child(even),
.mc_box table.th_purple tr:nth-child(even),
table.th_purple tr:nth-child(even) {
    /*background-color: #f5fbfd;*/
}

.pharmaceutical_content table.th_purple tr:hover,
.mc_box table.th_purple tr:hover,
.table.th_purple tr:hover {
    background-color: none;
}

.table.th_purple .keihisanshutu_tr:hover {
    background-color: #fff !important;
}


/* テーブルスタイル - 薄い緑色 */
table.th_green {
    width: 100%;
    border-collapse: collapse;
    margin: 0.9375rem 0;
    box-shadow: var(--box-shadow);
    /*border-radius: var(--border-radius);*/
    overflow: hidden;
}

table.th_green th,
table.th_green td {
    padding: 0.5rem 0.75rem;
    text-align: left;
    border: 1px solid #ccc;
}

table.th_green th {
    background-color: #e2efda;
    color: #005b7f;
    font-weight: 400;
}

table td.download_btn_td{
    display: table-cell;
}

.link_name_dl{
    display: flex;
    align-items: flex-start;
}

.link_name_dl .link_name{
    flex: 1;
    padding-right: 1em;
}

.link_name_dl .link_download{
    width: 5em;
    
}

/* ファイルリンク */
.file_link {
    display: inline-flex;
    align-items: center;
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 400;
    transition: all 0.3s;
    margin: 2px 0;
}

.file_link:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

/* ファイルタイプアイコン */
.file_icon {
    margin-right: 0.5rem;
    font-size: 1.1em;
}

.file_icon.pdf {
    color: #e74c3c;
}

.file_icon.doc {
    color: #2b579a;
}

.file_icon.xls {
    color: #217346;
}

.file_icon.ppt {
    color: #d24726;
}

.file_icon.txt {
    color: #5f6368;
}

.file_icon.zip {
    color: #f7b731;
}

/* PDFリンク */
.pdf_link {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    display: inline-flex;
    align-items: center;
}

.pdf_link:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.pdf_link i {
    color: #e74c3c;
    margin-right: 0.3125rem;
}

/* PDFアイコンのスタイル */
.pdf_icon {
    color: #e74c3c;
    margin-right: 0.3125rem;
    font-size: 1.1em;
}

.dl_list {
    margin-left: 0.5rem;
}

.dl_list a {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: var(--secondary-color);
    padding: 0.3125rem 0;
    transition: color 0.3s ease;
    gap: 0.625rem;
}

.dl_list a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.dl_list li {
    margin-bottom: 0.625rem;
    line-height: 1.5;
}

/* 小見出し */
h4 {
    font-size: 1.1rem;
    font-weight: 600;
    /*color: var(--secondary-color);*/
    margin: 1.25rem 0 0.625rem;
    position: relative;
    padding-left: 1rem;
}

.masta_h4 {
    color: unset;
    padding: 0;
    display: grid;
    justify-content: center;
    margin: 1.25rem 0 1.25rem;
}

/* SDV・監査ページのスタイル */
.remote_info_box {
    padding: 1.25rem 1.25rem 0.625rem 1.25rem;
    border: 3px solid #005b7f;
    border-radius: 5px;
    margin: 0 0 1.875rem 0;
    text-align: center;
}

.goto_news_link {
    margin: 0.9375rem 0;
}

.goto_news_link a {
    color: var(--primary-color);
    text-decoration: none;
}

.goto_news_link a:hover {
    text-decoration: underline;
}

.oritatami_list {
    margin: 0;
    padding: 0;
}

.oritatami_list>dt {
    background-color: #00a0b8;
    color: #fff;
    padding: 0.9375rem;
    cursor: pointer;
    position: relative;
    font-weight: 600;
    font-size: 1.1rem;
    transition: .3s all ease;
}

.oritatami_list>dt.closed {
    margin-bottom: 1em;
}

.oritatami_list > dt:hover{
    background-color: #007d91;
}

.oritatami_list>dt::after {
    content: '+';
    position: absolute;
    right: 0.9375rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.8rem;
}

.oritatami_list>dt.closed::after {
    content: '開く ▼';
}

.oritatami_list>dt:not(.closed)::after {
    content: '閉じる ▲';
}

.oritatami_list>dd {
    margin: 0 0 1em 0;
    padding: 1.25rem;
    display: none;
    background-color: #fafafa;
    padding: 1.25rem 1.75rem;
}

.oritatami_list dd table{
    background: #fff;
}

.oritatami_list dd table th{
    background: rgba(0,160,184,0.1);
}


.oritatami_list dd ul li {
    padding-left: 1rem;
    position: relative;
}

.oritatami_list dd ul li::before {
    content: "";
    display: block;
    width: 0.625rem;
    height: 0.625rem;
    border-radius: 50%;
    background-color: #005b7f;
    position: absolute;
    top: 0.5rem;
    left: 0.2rem;
}

.direct_viewing_flow {
    margin-bottom: 1.875rem;
}

.dvf_title {
    font-size: 1.1em;
    /*color: var(--secondary-color);*/
    font-weight: bold;
    margin: 1.5em 0 0.5em;
    padding-bottom: 0.3125rem;
    border-bottom: 2px solid var(--primary-color);
}

.required_documents_list {
    margin: 0.625rem 0;
}

.required_documents_list dt {
    font-weight: bold;
    margin: 0.625rem 0 0.3125rem;
}

.required_documents_list dd {
    padding-left: 1.25rem;
}

.fc_red {
    color: #e74c3c;
}

.fw_bold_red {
    font-weight: 700;
    color: #e74c3c;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin: 0.9375rem 0;
}

table th,
table td {
    border: 1px solid #007c8f5c;
    padding: 0.5rem 0.75rem;
}

table th {
    /*background-color: #00a0b8;*/
    background: rgba(0,160,184,0.08);
    width: 20%;
    text-align: left;
    font-weight: 600;
    /*color: #fff;*/
}

.photo_box_wrapper {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
}

.photo_box {
    display: inline-block;
    padding: 5px;
    background: #fff;
    box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.1);
    line-height: 0;
}

.category_open,
.category_close {
    padding-left: 1.4rem;
    position: relative;
}

.category_open::before {
    content: "+";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1rem;
    height: 1rem;
    line-height: 0.9rem;
    background-color: #005b7f;
    color: #fff;
    border-radius: 50%;
    text-align: center;
}

.category_close::before {
    content: "-";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1rem;
    height: 1rem;
    line-height: 0.8rem;
    background-color: #005b7f;
    color: #fff;
    border-radius: 50%;
    text-align: center;
}

.histry_list {
    display: none;
    padding-left: 1.4rem;
}

.shoshiki_ac_wrap {
    margin-top: 1.875rem;
}

.shoshiki_ac_wrap .content_shoshiki {
    font-size: 1.25rem;
    font-weight: 500;
    /*color: var(--secondary-color);*/
    color: #222;
    margin: 1.875rem 0.5rem 0.9375rem;
    padding-top: 0;
    border-top: none;
    padding-left: 0.9375rem;
    border-left: 4px solid var(--primary-color);
    position: relative;
    cursor: pointer;
    transition: .3s all ease;
}

.shoshiki_ac_wrap .content_shoshiki:hover {
    background-color: rgba(77, 156, 163, 0.1);
}

.shoshiki_open,
.shoshiki_close {
    position: relative;
}

.shoshiki_open::before {
    content: "開く";
    position: absolute;
    top: 0.2rem;
    right: 2rem;
    display: inline-block;
    font-size: 0.9rem;
}

.shoshiki_open::after {
    font-family: FontAwesome;
    content: "\f0d7";
    position: absolute;
    top: 0.2rem;
    right: 1rem;
    display: inline-block;
    font-size: 1rem;
    color: #4d9ca3;
}

.shoshiki_close::before {
    content: "閉じる";
    position: absolute;
    top: 0.2rem;
    right: 2rem;
    display: inline-block;
    font-size: 0.9rem;
}

.shoshiki_close::after {
    font-family: FontAwesome;
    content: "\f0d8";
    position: absolute;
    top: 0.2rem;
    right: 1rem;
    display: inline-block;
    font-size: 1rem;
    color: #4d9ca3;
}

.shoshiki_ac_box {
    display: none;
}

.masta_table tbody tr th {
    background-color: var(--light-gray);
    width: 6%;
    text-align: center;
    font-weight: 600;
}

.masta_table tbody tr td {
    font-size: 0.9rem;
}

.contact_table tr td a{
    text-decoration: underline;
}

.contact_table .ondokanri_url {
    box-sizing: border-box;
    display: inline-flex;
    align-items: center;
    border: 2px solid #00a0b8;
    padding: 0.45rem 2.25rem 0.45rem 1.25rem;
    border-radius: 0.25rem;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s;
    margin: 0.6rem 0;
    position: relative;
    color: #111;
}

.contact_table .ondokanri_url::after{
    font-family: "FontAwesome";
    content: "\f101";
    color: #f3933a;
    font-size: 1.2rem;
}

.contact_table .btn_common1{
    margin: 0.5em 0 1em;
}

     .two_column_layout .main_content .contact_table td .btn_common1 a{
        text-decoration: none;
        color: #111;
        background: #fff;
        padding: 0.5em 1.5em;
    }

    .two_column_layout .main_content .contact_table td .btn_common1 a:hover{
        background: rgba(0,160,184,0.06);
    }

         .two_column_layout .main_content .contact_table td .btn_common1 a .lbl{
            font-size: 1rem;
         }


/* ページトップへ戻るボタン */
/*
.page_top {
    position: fixed;
    right: 1.25rem;
    bottom: 1.25rem;
    width: 3.125rem;
    height: 3.125rem;
    background-color: rgba(0, 160, 193, 0.7);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 100;
}

.page_top.visible {
    opacity: 1;
    visibility: visible;
}

.page_top:hover {
    background-color: rgba(0, 160, 193, 0.9);
    transform: translateY(-0.3125rem);
}

.page_top img {
    width: 1.25rem;
    height: auto;
}
*/
.mc_box table.th_purple.seidokanri_table tr th:first-child,
.mc_box table.th_purple.seidokanri_table tr td:first-child {
    width: auto;
}

.mc_box table.th_purple.seidokanri_table tr th:last-child,
.mc_box table.th_purple.seidokanri_table tr td:last-child {
    width: 7rem;
    white-space: nowrap;
}

.mc_box table.th_purple.seidokanri_table tr:hover {
    background-color: #fff;
}

.mc_box table.th_purple.seidokanri_table tr:nth-child(even) {
    background-color: #f5fbfd;
}

/*企業治験ページ*/
.kigyochiken_menu {
    margin: 2.5rem 1.875rem;
}

.kigyochiken_menu_row {
    display: flex;
    justify-content: space-between;
    gap: 1.875rem;
    margin-bottom: 1.875rem;
}

.kigyochiken_menu_item {
    flex: 1;
    display: block;
    border: 2px solid #00a0c1;
    border-radius: 5rem;
    overflow: hidden;
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    background-color: #fff;
}

.kigyochiken_menu_item:hover {
    background-color: #00a0c1;
    border-color: var(--primary-color);
    color: #fff;
}

.kigyochiken_menu_content {
    padding-left: 2.5rem;
    position: relative;
    margin: 0.3125rem 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 2.9rem;
}

.kigyochiken_menu_content h2 {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--primary-color);
    margin: 0;
}

.kigyochiken_menu_item:hover h2 {
    color: #fff;
}

.kigyochiken_menu_item:hover .arrow_icon {
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 2.5rem;
    content: url(../shared/arr_04.png);
}

.content_area p.center_homon_pdf {
    margin: 0 0 1.875rem 0;
}


.contact_table th {
    width: 25%;
}

.contact_table tbody tr td {
    font-size: 0.9rem;
}

.contact_table tbody tr td ul li {
    padding-left: 1rem;
    position: relative;
}

.contact_table tbody tr td ul li::before {
    content: "";
    display: block;
    width: 0.625rem;
    height: 0.625rem;
    border-radius: 50%;
    background-color: #005b7f;
    position: absolute;
    top: 0.5rem;
    left: 0.2rem;
}

.seihan_botan {
    padding: 0.7rem;
    border: 1.2px solid;
    color: #222;
    background-color: #fff;
}

.seihan_botan:hover {
    transition: all 0.3s ease;
    background-color: #e8e8e8;
    opacity: 1;
}

.br_sp {
    display: none;
}

.dl_list_common1{}

    .dl_list_common1 dt{
        font-weight: 600;
        margin-bottom: 0.3em;
    }

    .dl_list_common1 dd{
        margin-bottom: 1em;
        padding-left: 1em;
    }

    .dl_list_common1 dd:last-child{
        margin-bottom: 0;
    }

@media screen and (max-width: 1150px) {
    .br_sp {
        display: unset;
    }
}

@media screen and (max-width: 767px) {
    .menu_cards {
        grid-template-columns: 1fr;
    }

    .content_title {
        font-size: 1.5rem;
    }

    .content_subtitle {
        font-size: 1.2rem;
    }

    .content_subsubtitle {
        font-size: 1rem;
    }

    .data_table {
        font-size: 0.9rem;
    }

    .data_table th,
    .data_table td {
        padding: 0.5rem 0.625rem;
    }
}

@media screen and (max-width: 479px) {

    .pharmaceutical_content table.th_purple tr td:not(:first-child),
    .pharmaceutical_content table.th_purple tr th:not(:first-child),
    .mc_box table.th_purple tr td:not(:first-child),
    .mc_box table.th_purple tr th:not(:first-child),
    table.th_purple tr td:not(:first-child),
    table.th_purple tr th:not(:first-child) {
        width: auto;
        /*
        display: flex;
        justify-content: space-between;
        flex-direction: column;
        align-items: flex-start;
        */
    }

    table th,
    table td {
        padding: 0.5rem 0.3rem;
    }

    table th {
        text-align: center;
        width: 31%;
    }

    .content_inner {
        padding: 0 5vw;
    }

    .numbered_list .number {
        width: 1.5rem;
        height: 1.5rem;
        font-size: 0.9rem;
    }

    .data_table {
        display: block;
        overflow-x: auto;
    }

    /*
    .page_top {
        right: 0.9375rem;
        bottom: 0.9375rem;
        width: 2.5rem;
        height: 2.5rem;
    }

    .page_top img {
        width: 1rem;
    }
*/
    .kigyochiken_menu {
        margin: 2rem 0;
    }

    .kigyochiken_menu_row {
        flex-direction: column;
        gap: 1.2rem;
        margin-bottom: 1.2rem;
    }

    .kigyochiken_menu_content {
        padding: 0.5rem 1.25rem;
        line-height: 1.5;
        min-height: auto;
    }

    .kigyochiken_menu_content h2 {
        height: 2.5rem;
        font-size: 1.15rem;
        font-weight: 500;
        display: grid;
        align-items: center;
    }

    .kigyochiken_menu_item:hover .arrow_icon {
        margin-right: 0;
    }

    .dvf_title:first-of-type {
        margin: 0 0 0.9375rem;
    }

    .contact_table th {
        width: 41%;
    }

}

/* 戻るボタン */
.back_btn {
    margin: 1.875rem 0;
    text-align: center;
}

.back_btn a {
    display: inline-block;
    padding: 0.625rem 1.25rem;
    background-color: #f5f5f5;
    color: var(--secondary-color);
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.back_btn a:hover {
    background-color: #e0e0e0;
}

/* サブカラムタイトル */
#sub_nav_title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #666;
    margin: 0 0 0.625rem 0;
    padding: 0 0 0.625rem 0;
}

@media screen and (min-width:1px) and (max-width:479px) {
    .remote_info_box {
        margin: 0 0 1.875rem 0;
        padding: 0.625rem;
        text-align: left;
    }

    .content_area .remote_info_box p {
        margin-bottom: 0;
    }

    .mc_box {
        padding: 0;
    }

    .menu_btn_wrap ul {
        margin: 1rem 1rem 0 2rem;
    }

    .index_menu_row {
        gap: 1.875rem;
    }

    
}