<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";
/* フォント変更 */
.page {
  font-family: "Noto Sans JP", "Helvetica Neue", Arial,
    "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}


/* 記事タイトル行折り返し*/
.notion-page-title-text {
    white-space: normal;
    border-bottom: none;
}


/* 固定ボタン*/
#page_top {
    width: 60px;
    height: 60px;
    position: fixed;
    right: 20px;
    bottom: 20px;
    background: #b89971;
    opacity: 0.7;
    display: block;
    text-decoration: none;
    font-weight: bold;
    font-size: 10px;
    color: #fff;
    margin: auto;
    text-align: center;
    padding: 15px;
    line-height: 2em;
    border-radius: 60px;
    font-family: "Noto Sans JP", "Helvetica Neue", Arial,
    "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}

#page_top:hover {
    opacity :0.4;
}

/* ページ概要*//* 検索ボックス */
.notion-search {
    max-height: 95vh;
    top: 5vh;
    width: 100%;
    max-width: 800px;
}
.notion-search .quickFindMenu {
    max-height: 90vh;
}

.notion-search .notion-page-link:not(.notion-list-item) {
    max-width: var(--contens-width);
    border:none;
}
/* ページ概要*//* 検索ボックス非表示 */
.searchBlock, .notion-collection-view-search{
	display:none;
}

.notion-collection-view-search-wrapper {
    display: none;
}

/* 検索窓特定ページのみ表示 */
.page-item_manual .searchBlock {
	display:block;
}


/* カテゴリボタン見た目設定 */
.notion-gallery-grid {
    grid-template-columns: none;
}

.notion-collection-card-body {
    padding: 15px 10px;
}


/*640px以下で文字サイズ14px */
@media (max-width: 640px) {
    .notion {
        font-size: 14px;
    }
}


/*ハンバーガーメニュー見た目*/
.header__btn {
    color: #b89971;
}
.header__menuBtn {
    text-align: center;
    color: #b89971;
}

.notion-link {
    border: none;
}

/*余白消去*/
.contents {
    padding-top: 0;
}
/*記事のアイコンサイズ調整*/
.pageIcon-cover {
    position: static;
    font-size: 40px;
    line-height: 1.3em;
    width: auto;
    height: 55px;
}
@media (max-width: 640px) {
.pageIcon-cover {
    font-size: 4.25vw;
    width: 24px;
    height: 24px;
    }
}


.pageIcon-cover.emoji {
    position: static;
    font-size: 40px;
    line-height: 1.3em;
    width: auto;
    height: 50px;
    }
@media (max-width: 640px) {
.pageIcon-cover.emoji {
    font-size: 4.25vw;
    width: 20px;
    height: auto;
    }
}

/*記事のタイトル余白消去と文字サイズ調整*/
.title {
    margin-bottom: 0px;
}

@media (max-width: 640px) {
    .title {
        font-size: 4.25vw;
        width: 70vw;
    }
}

.titleSection__contentsWrapper {
    display: flex;
    gap: 10px;
    margin-bottom: 2rem;
}
@media (max-width: 640px) {
    .titleSection__contentsWrapper {
    /*justify-content: space-around;*/
}
}

.notion-file-link {
    color: #b89971;
}
/* web説明書タイトル行折り返し*/
.notion-file-title,
.notion-file-size {
    white-space: normal;
}


/* ブックマーク画像表示 */
@media (max-width: 640px) {
  .notion-bookmark-image {
    display: block;
  }
}</pre></body></html>