body {
    -webkit-font-feature-settings: "palt"on;
    font-feature-settings: "palt"on;
    -webkit-font-smoothing: antialiased;
}

.company-item {}

.sub-page .company-item h2.wp-block-heading,
.sub-page.single-post h1.entry-title {
    font-weight: 800;
    font-size: 3.2rem;
    padding-bottom: 1.6rem;
    margin-bottom: 5.6rem;
    position: relative;
    border-left: none;
    padding-left: 0;
}

.sub-page.single-post h1.entry-title {
    margin-bottom: 1.6rem;
}

.sub-page .company-item h2.wp-block-heading:before,
.sub-page.single-post h1.entry-title:before {
    content: "";
    width: 100%;
    height: 4px;
    left: 0;
    background: #1371b7;
    position: absolute;
    bottom: 0;
    z-index: -1;
}

.sub-page .company-item h2.wp-block-heading:after,
.sub-page.single-post h1.entry-title:after {
    content: "";
    width: 15%;
    height: 4px;
    background: #e1893b;
    position: absolute;
    bottom: 0;
    left: 0;
}

.sub-page .company-item h3.wp-block-heading,
.single-post .entry-content h2 {
    font-weight: 800;
    font-size: 2.4rem;
    padding-bottom: 0;
    margin-bottom: 3.2rem;
    position: relative;
    color: #e1893b;
}

.sub-page .company-item h3.wp-block-heading:before {
    content: none;
}

.sub-page .company-item h3.wp-block-heading:after {
    content: none;
}

.sub-page .company-item h4.wp-block-heading {
    font-size: 2rem;
}

.company-table td:first-child {
    background: #fbedd5;
    min-width: 144px;
    width: 200px;
}

.company-item .wp-block-image figcaption {
    font-size: calc(2rem* 0.75);
}

.company-item .w80 {
    width: 80%;
    display: block;
    margin: 0 auto;
}

.o-table-scroller__inner3 {
    overflow-x: scroll;
}

.scroll-table {
    border-collapse: collapse;
    width: 150%;
    height: auto;
}

.page-id-3681 #knowledge,
.single-post #knowledge {
    display: none;
}

.infomation article {
    /*    border: 1px dotted #e1893b;*/
    background: #f5f5f5;
    box-sizing: border-box;
    padding: 1.6rem;
    margin-bottom: 2.4rem;
}

.infomation article:hover {
    background: #F1F7ED;
    transition: .5s;
}

.infomation article h2,
.single-post .entry-content h3 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1.6rem;
}

.infomation article p {
    font-weight: 400;
    font-size: 1.6rem;
}

.single-post .entry-content p {
    font-size: 1.6rem;
    margin-bottom: 1.6rem;
}

.pagination {
    text-align: center;
    margin-top: 20px;
}

.pagination a {
    margin: 0 5px;
    padding: 10px;
    background-color: #f1f1f1;
    border: 1px solid #ccc;
    text-decoration: none;
}

.pagination a:hover {
    background-color: #F1F7ED;
    transition: .5s;
    color: #e1893b;
}

.sub-page.single-post .sub-mv {
    width: 100%;
    height: 100px;
    background: url(dist/img/news-header.png);
    background-size: cover;
    background-position: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
}

.single-post .entry-content {
    padding: 4.8rem 0;
}

.footer-nav__list-item {
    flex: 1;
}

.parent-pageid-3164 ul li,
.parent-pageid-3164 ol li {
    margin-top: .5rem;
    align-items: center;
}

@media screen and (max-width: 1000px) {
    .scroll-table {
        border-collapse: collapse;
        width: 800px;
        height: auto;
    }

    .company-item .w80 {
        width: 100%;
    }

    .parent-pageid-3164 ul li,
    .parent-pageid-3164 ol li {
        height: auto;
    }
}

/*フォーム関連*/

/* フォーム全体のスタイル */
form {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* フォーム内の各フィールドのマージン調整 */
.form-group {
    margin-bottom: 20px;
}

/* ラベルスタイル */
label {
    display: block;
    font-weight: bold;
    margin-bottom: 8px;
    font-size: 1.2rem;
    /* フォントサイズを少し大きく調整 */
}

/* テキストフィールドとテキストエリア */
input[type="text"],
input[type="email"],
select,
textarea {
    width: 100%;
    padding: 12px;
    /* パディングを増やして視認性を向上 */
    font-size: 1.8rem;
    /* フォントサイズを大きく調整 */
    border: 1px solid #ddd;
    border-radius: 5px;
    transition: border-color 0.2s;
}

input[type="text"]:focus,
input[type="email"]:focus,
select:focus,
textarea:focus {
    border-color: #007bff;
    outline: none;
    box-shadow: 0 0 4px rgba(0, 123, 255, 0.2);
}

/* テキストエリア */
textarea {
    resize: vertical;
    min-height: 120px;
}

/* 必須フィールドの注意書き */
.required-label {
    color: #e74c3c;
    font-size: 1rem;
    /* フォントサイズを調整 */
    margin-left: 5px;
}

/* ボタンのスタイル */
.btn {
    display: inline-block;
    padding: 12px 24px;
    /* ボタンを大きくして押しやすく */
    font-size: 1.8rem;
    /* フォントサイズを調整 */
    font-weight: bold;
    color: #fff;
    background-color: #029167;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.btn.btn-secondary {
    background-color: #6c757d;
}

.btn:hover {
    background-color: #0056b3;
}

/* スペーシング調整 */
.btn+.btn {
    margin-left: 10px;
}

/* ラベルと入力欄のレイアウト調整 */
.form-label-outside {
    display: inline;
    font-size: 1.8rem;
}

.form-group p {
    margin: 0 0 10px;
    /* ラベルと入力欄の間隔を調整 */
}

ol.wp-block-list {
    list-style-type: none;
    /* デフォルトのリスト番号を非表示 */
    padding-left: 0;
    /* リストの左側の余白を削除 */
    counter-reset: list-item;
    /* カウンターを初期化 */
    padding-left: 8px;
}

ol.wp-block-list li {
    position: relative;
    counter-increment: list-item;
    /* 番号をインクリメント */
    padding-left: 30px;
    /* リスト番号のスペースを確保 */
    list-style-type: none;
}

ol.wp-block-list li::before {
    content: counter(list-item) ". ";
    /* リスト番号 */
    position: absolute;
    top: 4px;
    /* 上に配置 */
    left: 0;
    font-weight: bold;
    /* リスト番号を太字にする */
}

ul.wp-block-list {
    list-style: none;
    /* デフォルトのリストスタイルを削除 */
    padding-left: 0;
}

ul.wp-block-list li {
    position: relative;
    padding-left: 20px;
    /* アイコンのための余白 */
}

ul.wp-block-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 12px;
    width: 8px;
    height: 8px;
    background-color: #e1893b;
    border-radius: 50%;
    /* 丸形にする */
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    form {
        padding: 15px;
    }

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

    .company-table td:first-child {
        background: #fbedd5;
        min-width: 144px;
        width: 144px;
    }
}


/*ボタンカスタム*/
.sub-page .vk_button .vk_button_link.btn,
.sub-page .editor-styles-wrapper .vk_button .vk_button_link.btn {
    padding: 2rem;
    font-size: calc(1rem* 1.5);
}

.sub-page .vk_button .vk_button_link.btn-lg,
.sub-page .editor-styles-wrapper .vk_button .vk_button_link.btn-lg {
    font-size: calc(1rem* 1.5);
}

.page-id-3875 li {
    margin-bottom: 1.6rem;
}

.page-id-3875 ul ul {
    margin-top: 1.6rem;
}

.display-none {
    display: none;
}