<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-collection-view-search {
  display:none;
}

/* 以下は、背景がブラウンのコールアウト部分を吹き出し風にする記述 */
.notion-callout.notion-brown_background_co {
    position: relative;
    margin-left: 10px;
    min-height: 100px;
    width: calc(100% - 50px) !important;
    border: none;
    border-radius: 25px;/* 角の丸み */
    background-color: #FEE3CA;/* 背景の色 */
    border: solid 3px #FEE3CA;/* 枠の色 */
    box-sizing: border-box;
    padding: 20px;
}
.notion-callout.notion-brown_background_co .notion-page-icon{
    position: absolute;
    top: -10px;
    left: -120px;
    max-width: 100px;
    width: 100px;
    max-height: 100px;
    height: 100px;
}
.notion-callout.notion-brown_background_co:before {
    content: "";
    position: absolute;
    top: 50px;
    left: -30px;
    margin-top: -14px;
    border: 14px solid transparent;
    border-right: 14px solid #FEE3CA;/* 枠の色 */
}

font-family: 'Zen Kurenaido', sans-serif;
.notion-callout.notion-brown_background_co:after {
    content: "";
    position: absolute;
    top: 50px;
    left: -27px;
    margin-top: -15px;
    border: 15px solid transparent;
    border-right: 15px solid #FEE3CA;/* 背景の色 */
}

@media (max-width: 640px) {
  .notion-callout.notion-brown_background_co:before {
    top: -15px;
    left: 20px;
    border-right: none;
    border-bottom: 15px solid #FEE3CA;/* 枠の色 */
  }
}


/* ここまでが、背景がブラウンのコールアウト部分を吹き出し風にする記述 */

/* 各ページのデータベース表示の上部の横線を消す記述 */
.notion-collection-row {
    border: none;
}
/* ここまで */

/* 各ページのH3の罫線を消す記述 */
.notion-h3{ 
border-bottom: none; 
}
/* ここまで */

/* ロゴサイズ調整 */
.header__img {
  height: 30px;
}

:root {
  --header-height: 80px;
}
/* ここまで */

/* データベースカードアイコンを非表示にする記述 */
.notion-collection-card-property .notion-page-title-icon {
display:none;
}
/* ここまで */

/* すべてのページのタイトルを隠す */
.title {
    display: none;
}
/* ここまで */

/* すべてのページのカバー画像を隠す*/
.coverImage {
    display: none;
}
/* ここまで */

/* タイトルのみカバー画像を表示 */
.page_id-864fcf7fa3eb42dca1f8df0fe573a7c1 .coverImage {
    display: block;
}
/* ここまで */</pre></body></html>