@charset "utf-8";
html body {
    font-family: "Helvetica Neue", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
    font-size: 0.75em;
    line-height: 1.5;
    color: #333;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: bold;
    margin: 0;
    padding: 0;
}

h1 {
    font-size: 1.25em;
    margin-bottom: 1rem;
}

h2 {
    font-size: 1.125em;
}

h3 {
    font-size: 1.0em;
}

.submit_area {
    text-align: center;
}

/* ハンバーガーメニュー */
.nav_oc {
    width: 2.5rem;
    height: 2.5rem;
    top: 0.5rem;
    right: 0.5rem;

    display: block;
    position: fixed;
    z-index: 10000;
    /*transition: .3s all ease;*/
}

.menu-trigger {
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    padding: 0 0 0.72rem 0;
    outline: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    /*transition: .3s all ease;*/
    background: rgba(43, 26, 86, 1);
}

.menu-trigger:focus {
    box-shadow: none;
}

.menu-trigger .lines {
    position: relative;
    display: block;
    width: 1.25rem;
    height: 1rem;
    /*transition: .3s all ease;*/
    transition: none !important;
}

.menu-trigger .lines span {
    display: inline-block;
    transition: all .4s;
    box-sizing: border-box;
    background-color: #fff;
    position: absolute;
    width: 1.25rem;
    left: 0;
    height: 2px;
    transition: none !important;
}

.menu-trigger .lines span:nth-of-type(1) {
    top: 0;
}

.menu-trigger .lines span:nth-of-type(2) {
    top: calc(50% - 1px);
}

.menu-trigger .lines span:nth-of-type(3) {
    bottom: 0;
}

.menu-trigger.active .lines span {
    transition: none !important;
}

.menu-trigger.active .lines span:nth-of-type(1) {
    top: 0.5rem;
    transform: rotate(45deg);
}

.menu-trigger.active .lines span:nth-of-type(2) {
    opacity: 0;
}

.menu-trigger.active .lines span:nth-of-type(3) {
    top: 0.5rem;
    transform: rotate(-45deg);
}

/* サイドメニュー */
.side_nav {
    box-sizing: border-box;
    position: fixed;
    top: 0;
    right: 0;
    z-index: -1;
    opacity: 0;
    width: 16rem;
    height: 100%;
    transition: .3s all ease;
    background: rgba(255, 255, 255, 0);
    fixed-direction: column;
    allign-items: center;
    padding-top: 5rem;
}

.side_nav.active {
    z-index: 9999;
    opacity: 1;
    background: rgba(255, 255, 255, 0.99);
    box-shadow: -0.5rem 0 0.5rem 0.1rem rgba(0, 0, 0, 0.1);
}

.side_nav .side_global_nav {
    width: 100%;
    padding: 0 1rem;
    margin: 0;
}

.side_nav .side_global_nav > ul {
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    padding: 0;
    list-style: none;
}

.side_nav .side_global_nav > ul > li {
    position: relative;
    border-bottom: 1px dotted #aaa;
    list-style: none;
}

.side_nav .side_global_nav > ul > li > a {
    display: block;
    font-size: 1rem;
    padding: 0.8rem;
    color: #222;
    text-decoration: none;
    position: relative;
    transition: .3s all ease;
    text-align: center;
}

/* メニュー */
.user_menu a,
.admin_menu a {
    color: #222;
    display: block;
    padding: 0.5rem 1rem;
    font-weight: bold;
    text-decoration: none;
    background: #fff;
    transition: .3s all ease;
    white-space: nowrap;
}

.user_menu a:hover,
.admin_menu a:hover {
    background: rgba(43, 26, 86, 0.1);
}

.user_menu a.active,
.admin_menu a.active {
    background: rgba(43, 26, 86, 1);
    color: #fff;
}

/* TinyMCEで作成された領域用 */
.f100header, .f100header *,
.admin-footer, .admin-footer *,
.initial-style, .initial-style * {
    font-size: initial;
    line-height: initial;
    color: initial;
    margin: initial;
    padding: initial;
    border: initial;
    background: initial;
    text-align: initial;
    vertical-align: initial;
    box-sizing: initial;
}

/* PicoCSS 上書き */
button,
button[type="button"],
button[type="submit"],
input[type="button"],
input[type="submit"] {
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
    width: auto;
    height: 1.75rem;
    margin-top: 10px;
}

/* コピーボタン */
/*
button.cp_copy {
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    cursor: pointer;
    transition: .3s all ease;
    margin-bottom: 0;
}
*/

/* 注意ボタン */
.button-danger {
    background-color: #dc3545;
    border-color: #dc3545;
}

.button-danger:hover {
    background-color: #c82333;
    border-color: #bd2130;
}

/* 注意テキスト */
.text-danger {
    color: #dc3545;
}

/* ページャー */
.pager {
    font-size: 0.875rem;
    line-height: 1;
    display: flex;
    margin: 0;
    padding: 0;
}

.pager li {
    list-style: none;
    margin-right: 0.2em;
}

.pager a {
    position: relative;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #666;
    text-decoration: none;
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 0.25rem;
    transition: .3s all ease;
}

.pager a:hover {
    background: rgba(0,99,164,0.2);
}

.pager a.current {
    background: #0063a4;
    color: #fff;
}
 .pager .next {
    margin-right: 0;
    margin-left: 0.5em;
}

 .pager .prev {
    margin-right: 0.5em;
 }

.pager .next a,
.pager .prev a {
        width: auto;
}

.pager .next a::after,
.pager .prev a::after{
    display: block;
    content: "";
    width: 100%;
    border-bottom: 1px solid #0063a4;
    position: absolute;
    bottom: 0;
    left: 0;
    transition: .3s all ease;
    opacity: 0;
}

.pager .next a:hover,
.pager .prev a:hover{
    background: none;
    color: #0063a4;
}

.pager .next a:hover::after,
.pager .prev a:hover::after{
    opacity: 1;
}