@charset "UTF-8";

/* ＝共通エリア＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
body {
    /* scrollbar-width: none; */
    /*Firefox対応のスクロールバー非表示コード*/
    /* -ms-overflow-style: none; */
    /*Internet Explore対応のスクロールバー非表示コード*/
}
body::-webkit-scrollbar {
    /* display: none; */
    /*Google Chrome、Safari、Microsoft Edge対応のスクロールバー非表示コード*/
}
/* header */
.mic_header {
    /* min-height: 105.5px; */
}
/* サイトロゴ */
.mic_sitetitle_m {
    display: none;
}

/* ナビゲーション */
.mic_logoarea {
    border-bottom: solid 1px #ccc;
    /* background-color: #0093cb; */
}
.navbar-menu > .navbar-item {
    /* 後でコメントアウト */
    border-right: solid 1px #ccc;
    min-width: 110px;
}
.navbar-menu > .navbar-item:first-child {
    /* 後でコメントアウト */
    border-left: solid 1px #ccc;
}
/* ナビゲーション:アクティブページ */
.nav_active {
    /* background-color: #f2f2f2; */
    /* color: hsl(204, 86%, 53%)!important; */
    /* border-bottom: solid 1px #3e8ed0; */
    border-bottom: solid 2px #3e8ed0;
}

/* .navbar.is-white {
    background-color: #0093cb !important;
}

.navbar.is-white .navbar-start > .navbar-item {
    color: #fff;
}
.navbar.is-white .navbar-start .navbar-link {
    color: #fff;
}
.navbar.is-white .navbar-start .navbar-link::after {
    border-color: #fff;
}
.has-background-info {
    background-color: #000 !important;
} */

/* ナビゲーション:スクロール時上部固定 */
.container {
    position: relative;
}
.mic_navi {
    background-color: #ffffff;
    width: 100%;
    --docs-outer: 1.5rem;
    --docs-inner: 1.5rem;
    --docs-side-padding: 1rem;
    /* border-bottom: 2px solid #e9e9e9;
    border-bottom-width: 2px;
    border-bottom-style: solid; */
    border-bottom-color: rgb(233, 233, 233);
    position: relative;
}
.mic_navi.scroll {
    position: fixed;
    top: 0;
    z-index: 10;
}
/* ナビゲーション 問い合わせボタン */
a.has-background-info.has-text-white:hover,
a.has-background-info.has-text-white:focus {
    background-color: #3488ce !important;
    color: #ffffff !important;
}

/* スクロールバー */
::-webkit-scrollbar {
    /* width: 10px; */
    /* height: 10px; */
}

::-webkit-scrollbar-track {
    /* background-color: #ededed; */
}

::-webkit-scrollbar-thumb {
    /* background: #dbdbdb; */
    /* width: 130px; */
}

/* パンくずリスト */
.breadcrumb {
    border-top: solid 1px #777;
    border-bottom: solid 1px #777;
}

/* メイン画面 */
main {
    min-height: calc(100vh - 145px);
}
/* 内容 URL等折り返し */
.detail_area {
    word-break: break-word;
}
/* box子要素のはみ出し防止 */
.box .field {
    overflow-wrap: break-word;
}

/* 一番上に戻るボタン */
#page_top {
    position: fixed;
    bottom: 30px;
    right: 20px;
}
#page_top a {
    font-size: 1.5em;
    background-color: #999;
    color: #fff;
    text-align: center;
    text-decoration: none;
    padding: 8px 16px;
}
#page_top a:hover {
    background-color: #666;
    text-decoration: none;
}

/* 1023以下 */
@media screen and (max-width: 1023px) {
    .container {
        margin: 0 5px;
    }
    /* headerナビゲーション*/
    .navbar > .container {
        margin: 0;
    }

    .mic_logoarea .container {
        display: flex;
        justify-content: center;
    }
    /* gナビ */
    .nav_active {
        border-bottom: hidden;
    }
    .navbar-menu > .navbar-item:first-child {
        border-left: hidden;
    }
}

/* ＝汎用パーツ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
/* リスト内 aタブ */
.m_list a {
    color: #363636;
}
.m_list a:hover {
    color: #296fa8;
    /* text-decoration: underline;
	text-decoration-color: #3e8ed0; */
}

/* aタブ リンク強調 */
a.m_link {
    color: #296fa8;
}
a.m_link:hover {
    color: #363636;
}

.box a:hover .title {
    color: #296fa8;
}

/* 上区切 */
.mic_breakline {
    --docs-outer: 1.5rem;
    --docs-inner: 1.5rem;
    --docs-side-padding: 1rem;
    border-top: 2px solid #e9e9e9;
    border-top-width: 2px;
    border-top-style: solid;
    border-top-color: rgb(233, 233, 233);
    position: relative;
}
/* 下区切 */
.mic_breakline_b {
    --docs-outer: 1.5rem;
    --docs-inner: 1.5rem;
    --docs-side-padding: 1rem;
    border-bottom: 2px solid #e9e9e9;
    border-bottom-width: 2px;
    border-bottom-style: solid;
    border-bottom-color: rgb(233, 233, 233);
    position: relative;
}
/* 回転アイテム */
.wise_item {
    transition-duration: 0.3s;
}
/* 時計回り90 */
.wise_item.cw_90 {
    transition-duration: 0.3s;
    transform: rotate(90deg);
}

/* 時計回り180 */
.wise_item.cw_180 {
    transition-duration: 0.3s;
    transform: rotate(180deg);
}
/* 反時計回り90 */
.wise_item.acw_90 {
    transition-duration: 0.3s;
    transform: rotate(-90deg);
}
/* 反時計回り180 */
.wise_item.acw_180 {
    transition-duration: 0.3s;
    transform: rotate(-180deg);
}
/* 角丸除去 */
.radius_0 {
    border-radius: 0;
}

/* ボタンの折り返し許可 */
.btn_wrap {
    flex-wrap: wrap;
    height: auto;
}
/* 注釈 */
.mic_annot {
    font-size: 0.85em;
}
/* フレーム（灰色） */
.item_frame {
    border: solid 1px #ddd;
}

/* 3カラム
.is_flex_3 .flex_item {
	width: 33%;
} */
/* mobileレイアウト */
@media screen and (max-width: 768px) {
    /* 3カラム */
    .is_flex_3_m .flex_item {
        width: 33%;
        padding-left: 5px;
        padding-right: 5px;
    }
    /* 2カラム */
    .is_flex_2_m .flex_item {
        width: 50%;
        padding-left: 5px;
        padding-right: 5px;
    }
}

/* ＝固有アイテム＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
/* トップページ　カテゴリメニュー */
.m_category_menu .flex_item {
    width: 25%;
}
@media screen and (min-width: 769px) {
    .m_category_menu .flex_item:nth-last-child(-n + 4) .button {
        border-bottom-width: 2px;
    }
    .m_category_menu .flex_item:nth-child(-n + 4) .button {
        border-top-width: 2px;
    }
    .m_category_menu .flex_item:nth-child(4n) .button,
    .m_category_menu .flex_item:last-child .button {
        border-right-width: 2px;
    }
    .m_category_menu .flex_item:nth-child(4n + 1) .button {
        border-left-width: 2px;
    }
}
/* mobileレイアウト */
@media screen and (max-width: 768px) {
    /* 2カラム */
    .m_category_menu .flex_item {
        width: 50%;
    }
    .m_category_menu .flex_item:nth-last-child(-n + 2) .button {
        border-bottom-width: 2px;
    }

    .m_category_menu .flex_item:nth-child(-n + 2) .button {
        border-top-width: 2px;
    }

    .m_category_menu .flex_item:nth-child(2n) .button,
    .m_category_menu .flex_item:last-child .button {
        border-right-width: 2px;
    }

    .m_category_menu .flex_item:nth-child(2n + 1) .button {
        border-left-width: 2px;
    }
}

/* Q&A検索 */
.candidate_area.hidden {
    display: none;
}
.candidate_area {
    position: absolute;
    top: 2.5em;
    left: 0;
    padding: 0;
    width: 100%;
    z-index: 99;
}
.candidate_area:hover {
    display: flex;
}
#candidate_cont li {
    margin-bottom: 0.75em;
}
#candidate_cont a {
    text-decoration: unset;
    display: block;
    width: 100%;
}
#candidate_cont a:hover {
    text-decoration: underline;
}

/* Q&Aリスト */
.m_list_qa {
    padding-left: 3em;
}
.m_list_qa li {
    list-style: none;
    position: relative;
}
.m_list_qa li::before {
    content: "\f059";
    font-family: "FontAwesome";
    font-size: 1.25rem;
    position: absolute;
    top: -1px;
    left: -1.25em;
}
/* mobileレイアウト */
@media screen and (max-width: 768px) {
    .m_list_qa {
        padding-left: 2em;
    }
}
/* 問い合わせ一覧　項目ホバーアクション */
.accordion_header .title:hover {
    color: #296fa8;
}
/* サブカラム */
.sub_column_inner {
    position: -webkit-sticky;
    position: sticky;
    top: 60px;
}
/* 目次 */
.item_agenda {
    overflow: auto;
    border: solid 1px #ddd;
    max-height: calc(100vh - 80px);
}
.agenda_h3 {
    margin-left: 1em;
    list-style-type: circle;
}
.item_agenda ul {
    /* font-size: 0.85em; */
    margin-left: 1.5em;
}
.item_agenda a {
    color: #4a4a4a;
}
.item_agenda a:hover {
    color: #3e8ed0;
}

/* 目次　スクロール時装飾 */
.agenda.active,
.agenda.active a {
    color: #3e8ed0;
    font-weight: bolder;
}
@media screen and (max-width: 1023px) {
    .item_agenda {
        max-height: 350px;
    }
}

/* タブメニュー */
.m_tabs {
    margin: 0 0 2em;
}
.m_tabs a {
    display: block;
    text-align: center;
}
.m_tabs li {
    border: 1px solid #aeaeae;
}
.m_tabs li a,
.m_tabs li a:hover,
.m_tabs li a:visited {
    color: #4a4a4a;
}
.m_tabs li.is-active {
    background-color: #3e8ed0;
    border: 1px solid #3e8ed0;
}
.m_tabs li.is-active a,
.m_tabs li.is-active a:hover,
.m_tabs li.is-active a:visited {
    color: #fff;
}

@media screen and (max-width: 768px) {
    .m_tabs li:not(:last-of-type),
    .m_tabs li:hover:not(:last-of-type) {
        border-bottom-style: none;
    }

    .m_tabs li:first-of-type,
    .m_tabs li:first-of-type > a:hover {
        border-top-left-radius: 4px;
        border-top-right-radius: 4px;
    }

    .m_tabs li:last-of-type,
    .m_tabs li:last-of-type > a:hover {
        border-bottom-left-radius: 4px;
        border-bottom-right-radius: 4px;
    }
}
@media screen and (min-width: 769px) {
    .m_tabs li:not(:last-of-type),
    .m_tabs li:hover:not(:last-of-type) {
        border-right-style: none;
    }
    .m_tabs li:first-of-type,
    .m_tabs li:first-of-type > a:hover {
        border-top-left-radius: 4px;
        border-bottom-left-radius: 4px;
    }

    .m_tabs li:last-of-type,
    .m_tabs li:last-of-type > a:hover {
        border-top-right-radius: 4px;
        border-bottom-right-radius: 4px;
    }
}

/* 詳細部分　レスポンシブ化 */
@media screen and (max-width: 768px) {
    /* 見出しサイズ */
    .detail_area h2 {
        font-size: 1.5em;
    }
    .detail_area h3 {
        font-size: 1.25em;
    }

    /* テーブルレイアウト */
    .detail_area table {
        border: solid 1px #dbdbdb;
    }
    .detail_area tr th {
        display: none;
    }
    .detail_area table td {
        display: block;
        border: none;
    }
    .detail_area tr td:first-child {
        border-bottom: none;
        font-weight: bold;
        background-color: #f2f2f2;
    }
}
/* 検索フォームレイアウト */
.search_button {
    width: 18%;
}
.search_button .button {
    width: 100%;
}
.search_button .narrow {
    display: none;
}
@media screen and (max-width: 400px) {
    .search_button .narrow {
        display: inline;
    }
    .search_button .wide {
        display: none;
    }
}

/*
@media screen and (max-width:768px) {
	.m_qa_search .search_button {
		width: 50px;
	}
} */

/* ＝固有アイテム 管理ページ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
/* 管理ページ header*/
/* .mic_control_navi {
	position: fixed;
	top: 0;
	z-index: 10;
} */
.mic_control_menu {
    max-width: unset;
    padding: 0 3rem;
}
/* 管理ページ サブカラム */
.sub_column_tab {
    position: fixed;
    top: 50px;
    right: 0;
    width: 44px;
    text-align: center;
}
.sub_column_inner {
    width: 100%;
    position: -webkit-sticky;
    position: sticky;
    top: 60px;
}

@media screen and (max-width: 1214px) {
    .sub_column {
        position: fixed;
        top: 54px;
        right: 0;
        display: none;
        height: 100%;
    }
    .sub_column.show_active {
        display: block;
        overflow-y: scroll;
    }
}
@media screen and (max-width: 1023px) {
    .mic_control_menu {
        padding: 0;
    }
    .sub_column_inner {
        position: unset;
    }
}

/* IE対応　※2022/06まで!!! */
main {
    display: block;
}

/* 問合せ */
/* textarea */
textarea[name="inquiry"] {
    min-height: 15em;
    overflow: hidden;
}
textarea[name="note"] {
    min-height: 10em;
    overflow: hidden;
}
.textarea::placeholder {
    color: rgba(54, 54, 54, 0.6); /* 60%の不透明度、だいぶ見やすくなります */
}
.checkbox-grid {
    column-count: 2;
    column-gap: 0.2rem;
}
/* .checkbox-grid label.checkbox {
    width: 45%;
    margin-bottom: 0.4em;
} */
/* manual-detail.css などの一番下に追記 */
pre.copy-target,
.note-editable pre.copy-target {
    white-space: pre-wrap !important; /* 折り返す */
    overflow-wrap: anywhere !important; /* 連続文字も折る */
    word-break: break-word !important; /* 古ブラウザ補助 */
}
.rogo {
    width: 30%;
    margin-left: 0%;
}
.rogo-b {
    width: 15%;
}
