@charset "UTF-8";
@import url(sanitize.css);
@import url(https://fonts.googleapis.com/css2?family=M+PLUS+1p:wght@300;700&display=swap&text=祇);

body {
    font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", "Hiragino Kaku Gothic ProN",
        "Hiragino Sans", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
li,
th,
td,
dt,
dd,
label {
    /* font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", "Hiragino Kaku Gothic ProN",
        "Hiragino Sans", sans-serif; */
    font-weight: normal;
    color: #181818;
    line-height: 1.5;
    margin: 0;
    padding: 0;
}
table {
    border-collapse: collapse;
}
th,
td {
    border: solid 1px #181818;
    padding: 3px 6px;
}
html {
    font-size: 62.5%;
}
body {
    font-size: 1.6rem;
    background: #f0f3f5;
}
ul {
    margin: 0;
    padding: 0;
}
li {
    list-style-type: none;
}
a {
    color: #477fee;
    text-decoration: none;
    font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", "Hiragino Kaku Gothic ProN",
        "Hiragino Sans", sans-serif;
    margin: 0;
    padding: 0;
}
.tel-link {
    position: relative;
    font-weight: 700;
    background-image: linear-gradient(to right, #1972e6, #1972e6 4px, transparent 4px, transparent 2px);
    background-size: 6px 1.7px;
    background-repeat: repeat-x;
    background-position: 24px bottom;
    margin-left: 24px;
    padding-bottom: 0px;
    display: inline-block;
}
_::-webkit-full-page-media,
_:future,
:root .tel-link {
    padding-bottom: 1px;
}

.tel-link img {
    width: 21px;
    height: auto;
    vertical-align: -0.45em;
    margin-right: 2.5px;
    margin-left: -24px;
}

.t-border {
    display: flex;
    align-items: center;
}
.t-border:before,
.t-border:after {
    border-top: 1px solid;
    content: "";
    flex-grow: 1;
}
.t-border:before {
    margin-right: 1rem;
}
.t-border:after {
    margin-left: 1rem;
}

.t-border_r {
    display: flex;
    align-items: center;
}
.t-border_r::after {
    content: "";
    flex-grow: 1;
    margin: 0 0 0 1rem;
    height: 1px;
    background: #181818;
}

/*qr*/
.sp {
    display: none;
}
.qr {
    margin: 0.7em auto 1em;
    text-align: center;
    font-size: 1.4rem;
}
.pc {
    display: none;
}
.qr span {
    display: none;
}
.qr span.sp {
    display: inline;
}
.qr a {
    display: inline-block;
    max-width: 64%;
    color: #fff;
    padding: 8px 32px 8px 12px;
    background: linear-gradient(
        90deg,
        rgba(44, 124, 230, 1) 20.49058879972039%,
        rgba(43, 123, 230, 1) 20.49058879972039%,
        rgba(25, 114, 230, 1) 80.49152417033241%
    );
    text-align: left;
    border-radius: 8px;
    position: relative;
}
@media screen and (max-width: 767.98px) {
    .qr a {
        max-width: 76%;
    }
}
.qr a:before {
    display: block;
    content: "";
    position: absolute;

    width: 8px;
    height: 8px;
    border: 0;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: rotate(45deg);
    top: 50%;
    right: 12px;
    margin-top: -4px;
}

.qr span .sp {
    display: none;
}

header {
    background: #fff;
    padding: 10px;
    display: flex;
    justify-content: space-between;
}
#logo img {
    width: 150px;
    height: auto;
    margin: 0;
}

/*****************
    ハンバーガー
******************/
.h-menu {
    position: relative;
    padding-bottom: 4px;
}
.h-menuCheckbox {
    display: none;
}
.h-menu_icon {
    display: inline-block;
    width: 30px;
    height: 30px;
    vertical-align: middle;
    position: absolute;
    right: 12px;
    top: 0px;
}
.h-menu_text {
    text-align: center;
    white-space: pre;
    font-size: 12px;
    font-weight: bold;
    display: block;
    margin: 0 auto;
    margin-top: 25px;
    margin-left: -8px;
}
/*3本線*/
.hamburger-icon,
.hamburger-icon::before,
.hamburger-icon::after {
    content: "";
    display: block;
    position: absolute;
    z-index: 100;
    top: 0;
    bottom: 0;
    width: 32px;
    height: 3px;
    background: #183d86;
    cursor: pointer;
}
.hamburger-icon:before {
    top: 10px;
}
.hamburger-icon:after {
    top: 20px;
    width: 20px;
}

/*メニュー以外を暗くする*/
#h-menu_black {
    display: none;
    position: fixed;
    z-index: 98;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: black;
    opacity: 0;
    transition: 0.7s ease-in-out;
}

/*中身*/
#h-menu_content {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 99;
    width: 100%;
    max-width: 320px;
    height: 100vh;
    padding: 8px 0px 0;
    background: #fff;
    overflow: auto;
    transition: 0.3s ease-in-out;
    -webkit-transform: translateX(105%);
    transform: translateX(105%);
}

/*チェックボックスにチェックが入ったら表示*/
input:checked ~ .h-menu_icon .hamburger-icon {
    background: transparent;
}
input:checked ~ .h-menu_icon .hamburger-icon::before {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    top: 10px;
    z-index: 999;
}
input:checked ~ .h-menu_icon .hamburger-icon::after {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    top: 10px;
    z-index: 999;
    width: 32px;
}
input:checked ~ #h-menu_black {
    display: block; /*カバーを表示*/
    opacity: 0.8;
}
#h-menu_checkbox:checked ~ #h-menu_content {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
    box-shadow: 6px 0 25px rgba(0, 0, 0, 0.15);
}
.h-menu_icon .hamburger-icon,
.h-menu_icon .hamburger-icon::before,
.h-menu_icon .hamburger-icon::after,
#h-menu_black,
#h-menu_content {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

#h-menu_content ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.h-menu-top {
    border-top: solid 1px #ccc;
    margin-top: 12px;
}
#h-menu_content ul li {
    border-bottom: solid 1px #dedede;
}
#h-menu_content li a {
    display: block;
    color: #181818;
    font-size: 1.4rem;
    padding: 15px 11px 15px 54px;
    text-decoration: none;
    transition-duration: 0.2s;
    background-color: #fff;
    background-repeat: no-repeat;
    background-size: 36px 36px;
    background-position: 8px center;
    position: relative;
}
#h-menu_content li a:before {
    display: block;
    content: "";
    position: absolute;
    top: 50%;
    right: 6px;
    width: 0;
    height: 0;
    margin-top: -7px;
    border: 7px solid transparent; /*top right bottom を透明化 */
    border-left: 9px solid #183d86;
}
#h-menu_content li a:hover {
    background-color: #cce4f5;
}
#h-menu_content p {
    background: #dbe1ec;
    font-weight: bold;
    min-height: 20px;
    padding-left: 20px;
}

/*****************
    文字サイズ変更
******************/
.fontchange {
    list-style: none;
    margin: 0 0 8px 8px;
    padding: 0;
    display: flex;
    align-items: center;
}
.fontchange dt {
    margin: 0 8px 0 0;
    padding: 0;
    font-weight: bold;
    white-space: nowrap;
    font-size: 14px;
}
.fontchange dd {
    margin-right: 20px;
    cursor: pointer;
    border: 1px solid #ccc;
    display: inline-block;
    padding: 7px;
    text-align: center;
    background-color: #eee;
    margin: 0 8px 0 0;
    font-size: 14px;
    line-height: 1;
}
#font_ch_pc {
    display: none;
    margin-left: auto;
}

/*****************
    ヘッダー固定
******************/
#headfixed {
    width: 100%;
    position: fixed;
}

/*****************
    スプリング
******************/
#menu {
    margin: 40px auto;
    padding: 0 10px;
}
#menu2 {
    margin: 40px auto;
    padding: 0 0px;
}
main #menu {
    margin: 40px auto;
    padding: 0;
}
.mtitle {
    padding: 0.4em 1em;
    background: linear-gradient(to right, #f0f3f5 0%, #fff 15%, #fff 85%, #f0f3f5 100%);
    color: #181818;
    font-size: 1.8rem;
    font-weight: bold;
    text-align: center;
    margin: 0 auto 12px;
    line-height: 1;
    width: 76%;
}
#menu .t-border {
    margin: 8px 0 3px;
    font-weight: bold;
}
#menu ul,
#menu2 ul {
    margin-left: -6px;
    display: flex;
    flex-wrap: wrap;
}
#menu li,
#menu2 li {
    margin-bottom: 6px;
}
#menu a,
#menu2 a {
    display: block;
    border: solid 1px #e4e5e6;
    padding: 61px 0 3px;
    margin-left: 6px;
    color: #181818;
    background-color: #fff;
    background-repeat: no-repeat;
    background-size: 50px 50px;
    background-position: center 6px;
    font-size: 1.4rem;
    text-align: center;
    height: 100%;
    /* white-space: nowrap; */
}
.wid3 li {
    width: 33.333%;
}
.wid4 li {
    width: 25%;
}
.wid2_bd {
    margin-top: 14px;
    border-top: solid 1px #181818;
    padding-top: 14px;
}
.wid2 li {
    width: 50%;
}

.menu_special a {
    background: url(../images/icon_m-special.png);
}
.menu_special1 a {
    background: url(../images/icon_m-special1.png);
}
.menu_special2 a {
    background: url(../images/icon_m-special2.png);
}
.menu_topics a {
    background: url(../images/icon_m-topics.png);
}
.menu_series a {
    background: url(../images/icon_m-series.png);
}
.menu_machigai5 a {
    background: url(../images/icon_m-machigai5.png);
}
.menu_healthy a {
    background: url(../images/icon_m-healthy.png);
    position: relative;
}
.menu_healthy a span {
    transform: scale(0.7, 1);
    transform-origin: bottom left;
    text-align: center;
    display: block;
    width: 145% !important;
}
.menu_consult a {
    background: url(../images/icon_m-consult.png);
}
.menu_goout a {
    background: url(../images/icon_m-goout.png);
}
.menu_child a {
    background: url(../images/icon_m-child.png);
}
.menu_work a {
    background: url(../images/icon_m-work.png);
}
.menu_study a {
    background: url(../images/icon_m-study.png);
}
.menu_lecture a {
    background: url(../images/icon_m-lecture.png);
}
.menu_recruit a {
    background: url(../images/icon_m-recruit.png);
}
.menu_sports a {
    background: url(../images/icon_m-sports.png);
}
.menu_information a {
    background: url(../images/icon_m-information.png);
}
.menu_event a {
    background: url(../images/icon_m-event.png);
}
.menu_moji a {
    background: url(../images/icon_m-moji.png);
}
.menu_kita a {
    background: url(../images/icon_m-kita.png);
}
.menu_minami a {
    background: url(../images/icon_m-minami.png);
}
.menu_waka a {
    background: url(../images/icon_m-waka.png);
}
.menu_higashi a {
    background: url(../images/icon_m-higashi.png);
}
.menu_nishi a {
    background: url(../images/icon_m-nishi.png);
}
.menu_tobata a {
    background: url(../images/icon_m-tobata.png);
}
.menu_backnumber a {
    background: url(../images/icon_m-backnumber.png);
}
.menu_backnumber br {
    display: none;
}
.menu_pdf a {
    background: url(../images/icon_m-pdf.png);
}
.menu_top a {
    background: url(../images/icon_m-top.png);
}
.menu_kitaq a {
    background: url(../images/icon_m-kitaq.png);
}
.menu_top a span {
    transform: scale(0.7, 1);
    transform-origin: bottom left;
    text-align: center;
    display: block;
    width: 145% !important;
}

/*****************
    パンくず
******************/
.bread_wrapper {
    width: 100%;
    height: 40px;
    border-top: solid 1px #181818;
}
.bread {
    margin: auto;
    max-width: 980px;
    line-height: 40px;
}
.bread ul {
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}
.bread li {
    padding-right: 20px;
    font-size: 1.3rem;
}
.bread li:not(:last-child) {
    position: relative;
    padding-right: 40px;
}
.bread li:not(:last-child)::after {
    content: ">";
    display: block;
    position: absolute;
    width: 9px;
    height: 15px;
    top: -2px;
    right: 15px;
}
@media screen and (max-width: 767.98px) {
    .bread {
        padding: 0 0 0 0;
    }
    .bread ul {
        display: block;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        overflow-scrolling: touch;
        overflow: auto;
        white-space: nowrap;
        padding-left: 20px;
    }
    .bread li {
        display: inline;
        padding-right: 20px;
        flex: 0 0 40%;
    }
}

/*ページトップ*/
.pagetop {
    display: none;
    position: fixed;
    right: 12px;
    bottom: 50px;
    font-size: 1.3rem;
    text-shadow:
        1px 1px 0px #fff,
        -1px -1px 0px #fff,
        -1px 1px 0px #fff,
        1px -1px 0px #fff,
        1px 0px 0px #fff,
        -1px 0px 0px #fff,
        0px 1px 0px #fff,
        0px -1px 0px #fff;
    text-align: center;
}
.pagetop span {
    display: block;
    margin-left: -8px;
    line-height: 1.2;
}
.pagetop a {
    display: block;
    font-size: 0;
    width: 50px;
    height: 50px;
    text-align: center;
    background: rgba(96, 110, 121, 0.615);
    background: #606e799d;
    line-height: 50px;
    border-radius: 8px;
    margin-bottom: 4px;
}
.pagetop a:before {
    content: "";
    width: 16px;
    height: 16px;
    border: 0;
    border-top: solid 3px #fff;
    border-right: solid 3px #fff;
    position: absolute;
    top: 25px;
    left: 16px;
    margin-top: -4px;
    transform: rotate(-45deg);
}

.hagaki {
    position: relative;
    display: block;
    text-align: right;
    font-size: 1.4rem;
    margin-bottom: 0.5em;
    padding: 6px 32px 6px 0;
    background: url("../images/pop.png") no-repeat right 10px center;
    background-size: 16px;
    border-bottom: solid 1px #707070;
}
.hagaki a {
    position: relative;
    padding-right: 14px;
}
.popup_content img#hgk {
    width: 100%;
    height: auto;
    max-width: 600px;
    margin: 10px auto;
    padding: 0 10px;
    text-align: center;
    display: block;
}
/* footer */
footer {
    width: 100%;
    background: #fff;
    padding: 6px 0 0;
}

footer .ward-tel {
    position: relative;
    display: block;
    text-align: right;
    font-size: 1.4rem;
    margin-bottom: 0.5em;
    padding-right: 8px;
}
footer .ward-tel a {
    position: relative;
    padding-left: 14px;
}
footer .open_btn:before {
    content: "";
    display: inline-block;
    width: 0;
    height: 0;
    border-top: solid 6px transparent;
    border-right: solid 6px transparent;
    border-bottom: solid 6px transparent;
    border-left: solid 6px #183d86;
    position: absolute;
    top: 50%;
    left: 2px;
    margin-top: -6px;
}
.open {
    cursor: pointer; /* マウスオーバーでカーソルの形状を変えることで、クリックできる要素だとわかりやすいように */
}
.popup_wrap input {
    display: none;
}
.popup_overlay {
    display: flex;
    justify-content: center;
    overflow: auto;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    width: 100%;
    height: 100%;
    background: #1818189d;
    opacity: 0;
    transition:
        opacity 0.2s,
        transform 0s 0.2s;
    transform: scale(0);
}
.popup_trigger {
    position: absolute;
    width: 100%;
    height: 100%;
}
.popup_content {
    position: relative;
    align-self: center;
    width: 75%;
    max-width: 800px;
    box-sizing: border-box;
    background: #fff;
    line-height: 1.4em;
    transition: 0.5s;
    border-radius: 12px;
    box-shadow: 0 0 5px rgba(94, 94, 94, 0.7);
}
.popup_content table {
    margin: 16px auto;
}
.popup_content caption {
    font-weight: bold;
    padding-bottom: 4px;
}
.close_btn {
    position: absolute;
    top: -20px;
    right: -20px;
    font-size: 30px;
    cursor: pointer;
    color: #000;
    width: 42px;
    height: 42px;
    border-radius: 21px;
    background: #fff;
    text-align: center;
    box-shadow: 1px 3px 3px #aaa;
}
.popup_wrap input:checked ~ .popup_overlay {
    opacity: 1;
    transform: scale(1);
    transition: opacity 0.5s;
}
.ward-tel .open_btn,
.hagaki .open_btn {
    cursor: pointer;
    transition: 0.3s ease;
    position: relative;
    padding-left: 14px;
    color: #477fee;
    text-align: right;
    font-size: 1.4rem;
    margin-bottom: 0.5em;
}
.infostation .open_btn,
.ward .open_btn,
.contents .open_btn,
#special .open_btn {
    cursor: pointer;
    transition: 0.3s ease;
    position: relative;
    color: #477fee;
    display: inline;
}

.open_btn:hover {
    transition: 0.3s ease;
}
.footer_inner {
    position: relative;
}
.footer_inner p {
    margin: 0 3em;
    font-size: 1.4rem;
    display: block;
}
.footer_inner p strong {
    font-size: 1.6rem;
}
.footer_inner #footmark {
    display: block;
    text-align: center;
    margin: 15px auto 0;
    padding-bottom: 8px;
    width: 160px;
}
footer .copy {
    background: #3a404a;
    font-size: 1.2rem;
    color: #fff;
    padding: 0.8em 0;
    text-align: center;
    margin-top: 0.8em;
}

/* index */
main#httop {
    padding: 0 10px;
    border: none;
}

#dayori_title {
    background: #3a404a;
    min-height: 1.2rem;
    display: block;
    position: relative;
    padding: 4px 14px;
}
#dayori_title #d_text {
    color: #fff;
    font-weight: bold;
    font-size: 2rem;
    text-align: left;
}
#dayori_title #d_text a {
    color: #fff;
}
#dayori_title #d_no {
    color: #fff;
    text-align: right;
    position: absolute;
    right: 10px;
    top: 8px;
}
#dayori_title h1 {
    color: #fff;
    font-weight: bold;
    font-size: 1.8rem;
}
#dayori_date {
    margin: 12px 4px 0 0;
    padding: 0.28em;
    background: #fff;
    border: 3px solid #3a404a;
    box-shadow: 7px 7px #cbd3e4; /*影の色とサイズ*/
    font-size: 2.8rem;
    font-weight: bold;
    text-align: center;
}

/*pdf版はこちら*/

.pdflink {
    display: block;
    background-color: #183d86;
    background: linear-gradient(to bottom, #1c428e, #183d86);
    box-shadow:
        1px 1px 2px rgba(0, 0, 0, 0.3),
        /* 外側の影の設定 */ 1px 2px 1.5px rgba(255, 255, 255, 0.3) inset; /* 内側の影の設定 */
    border-radius: 2em;
    color: #fff;
    text-align: center;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    letter-spacing: 0.1rem;
    transition: 0.5s;
    position: relative;
    line-height: 1;
    margin: 18px 6px 0;
}
.pdflink:before {
    display: block;
    content: "";
    position: absolute;
    top: 50%;
    right: 6px;
    width: 0;
    height: 0;
    margin-top: -7px;
    border: 7px solid transparent; /*top right bottom を透明化 */
    border-left: 7px solid #fff;
}
.pdflink span {
    background: url("../images/icon_m-pdfw.png") no-repeat 12px center;
    background-size: 30px;
    display: block;
    padding: 1.8rem;
}

#cover_wrap {
    display: flex;
    flex-direction: row-reverse;
    margin-top: 20px;
    align-items: flex-start;
}
#cover {
    text-align: center;
    display: block;
    width: 66%;
    height: auto;
    margin: 16px auto 22px;
    border: 1px solid #c2c2c2; /* 20240702 追加 */
}
#ind_cover {
    text-align: center;
    display: block;
    margin: 0;
    width: 40%;
    height: auto;
    border: 1px solid #c2c2c2; /* 20240702 追加 */
}
#abstract {
    border: solid 1px #181818;
    background: #fff;
    padding: 12px 12px 12px 10px;
    margin-right: 12px;
}
#abstract h2 {
    font-size: 1.8rem;
    margin: 0 0 0.5em;
    line-height: 1;
}
#abstract dl {
    font-size: 1.8rem;
    margin: 0 0.1em 0 1em;
    line-height: 1;
}
#abstract dt {
    display: list-item;
    list-style-type: circle;
    margin: 0.5em 0 0;
    line-height: 1;
}
#abstract dd {
    font-size: 1.4rem;
}

#ind_contact {
    border: solid 1px #181818;
    background: #fff;
    padding: 12px 16px;
}
#ind_contact h2 {
    font-size: 1.6rem;
    margin: 0;
}
#ind_contact dl {
    margin: 0;
}
#ind_contact section:nth-child(2) {
    margin: 1em 0 0;
}
#ind_contact dt {
    font-weight: bold;
}

#population {
    border: solid 1px #181818;
    background: #fff;
    padding: 12px 16px;
    margin: 32px 0 48px;
}
#population h2 {
    font-size: 1.8rem;
    margin: 0;
    text-align: left;
    font-weight: bold;
}
#population dl {
    margin: 0.7em 0 0;
    text-align: center;
}
#population dt {
    font-weight: bold;
    font-size: 2rem;
    margin-bottom: 0.6em;
}
#population p {
    font-size: 1.4rem;
    margin-top: 1em;
}

/*PDF版*/
#pdf h3 {
    font-weight: bold;
    margin-bottom: 8px;
}
#pdf table {
    margin: 0 auto 24px;
}
#pdf th,
#pdf td {
    background: #fff;
}
#pdf th {
    padding: 6px 22px;
    font-weight: bold;
    text-align: left;
    line-height: 1.3;
}
#pdf th span {
    font-size: 1.4rem;
    font-weight: 500;
}
#pdf td {
    text-align: center;
    white-space: nowrap;
    padding: 6px 6px;
}
#pdf td a {
    display: inline-block;
    color: #fff;
    padding: 3px;
    background: linear-gradient(
        90deg,
        rgba(44, 124, 230, 1) 20.49058879972039%,
        rgba(43, 123, 230, 1) 20.49058879972039%,
        rgba(25, 114, 230, 1) 80.49152417033241%
    );
    text-align: center;
    border-radius: 4px;
    position: relative;
    width: 100%;
    margin-top: 8px;
}
#pdf td a:first-child {
    margin-top: 0;
}
#pdf th#pdftop {
    font-weight: 500;
    line-height: 1.2;
    position: relative;
    padding: 0;
}
#pdf th#pdftop a {
    display: block;
    padding: 6px 22px;
}
#pdf th#pdftop:before,
#pdf_ward a:before {
    display: block;
    content: "";
    position: absolute;
    top: 50%;
    right: 4px;
    width: 0;
    height: 0;
    margin-top: -7px;
    border: 7px solid transparent;
    border-left: 9px solid #183d86;
}
#pdf th#pdftop span {
    font-size: 11px;
    color: #5a5a5a;
}
#pdf_ward {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 6px;
}
#pdf_ward li {
    width: 50%;
    border-style: solid;
    border-width: 0 1px 1px 0;
    border-color: #707070;
    box-sizing: border-box;
    background: #fff;
}
#pdf_ward li a {
    display: block;

    padding: 4px 22px;
    position: relative;
}
ul#pdf_ward > li:nth-child(n + 1):not(:nth-child(n + 3)) {
    border-top-width: 1px;
}
ul#pdf_ward > li:nth-child(2n + 1) {
    border-left-width: 1px;
}

/*過去の市政だより*/
#backnumber .year-button {
    display: flex;
    justify-content: center;
}
#backnumber .year-button:last-child {
    margin-top: 12px;
}
#backnumber .year-button a {
    background: #409b4e;
    padding: 5px 18px;
    color: #fff;
    border-radius: 6px;
}
#backnumber .year-button a:nth-child(1) {
    margin-right: 10px;
}

#backnumber article {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
#backnumber article div {
    border: solid 1px #b9b9b9;
    text-align: center;
    background: #fff;
    width: 48.5%;
    margin-top: 10px;
    padding: 15px 8px 4.5rem;
    position: relative;
}

#backnumber article div:empty {
    border: none;
}
#backnumber article img {
    width: 60%;
}
#backnumber h2 {
    font-size: 1.8rem;
    font-weight: bold;
    margin: 30px auto 0;
}
#backnumber h2:nth-child(2) {
    margin: 12px auto 0;
}
#backnumber h3 {
    font-size: 1.4rem;
    font-weight: bold;
    margin: 8px 0 0;
}
#backnumber p {
    font-size: 1.4rem;
    margin: 4px 0 0;
    text-align: left;
}
#backnumber article a {
    position: relative;
    display: block;
    color: #fff;
    padding: 3px;
    background: linear-gradient(
        90deg,
        rgba(44, 124, 230, 1) 20.49058879972039%,
        rgba(43, 123, 230, 1) 20.49058879972039%,
        rgba(25, 114, 230, 1) 80.49152417033241%
    );
    text-align: center;
    border-radius: 8px;
    width: 48%;
}
/*#backnumber article a:before{
	display: block;
	content: "";
	position: absolute;
	top: 50%;
	left: 0px;
	width: 0;
	height: 0;
	margin-top: -7px;
	border: 7px solid transparent;
	border-left: 9px solid #477FEE;
}*/
.bklink {
    display: flex;
    justify-content: space-between;
    position: absolute;
    bottom: 12px;
    transform: translateX(-50%);
    left: 50%;
    width: 100%;
    padding: 0px 8px;
}

.tab_wrap {
    background: #fff;
}
.tab_wrap h1,
#dayori_mid {
    font-size: 1.6rem;
    padding: 0.6em 1.4rem;
    background: #fff;
}
#dayori_mid_ha {
    font-size: 1.6rem;
    padding: 0.6em 1.4rem;
    background: #fff;
    border-bottom: solid 1px #707070;
}
.backmid span {
    display: block;
}

/*特集*/
#special {
    padding: 12px;
    margin: 10px;
    background: #fff;
}
#special_title {
    position: relative;
    padding: 0.2em 0.9em;
    margin-bottom: 2.4rem;
    text-align: center;
}
#special_title:before,
#special_title:after {
    position: absolute;
    content: "";
}
#special_title:after {
    top: 0;
    left: 0;
    width: 50px;
    height: 50px;
    border-top: 2px solid #000;
    border-left: 2px solid #000;
}
#special_title:before {
    right: 0;
    bottom: 0;
    width: 50px;
    height: 50px;
    border-right: 2px solid #000;
    border-bottom: 2px solid #000;
}
#special_title h2 {
    font-weight: bold;
    font-size: 2.745rem;
    line-height: 1.2;
    margin: 0 auto 0.3em;
    display: inline-block;
    text-align: left;
}
#special_title h2 span {
    font-size: 1.6rem;
}

#special p {
    margin-bottom: 0.8em;
}
#special h3 {
    margin-top: 2.563em;
    font-weight: bold;
    margin-bottom: 0.5em;
    font-size: 2.2rem;
    line-height: 1.2;
}
#special h4 {
    margin-top: 1.5em;
    font-weight: bold;
    font-size: 2.025rem;
    line-height: 1.3;
    margin-bottom: 0.5em;
}
#special h5 {
    font-size: 1.6rem;
    font-weight: bold;
}
/*未*/
.list_disc li {
    list-style-type: disc;
    margin-left: 1.2em;
    margin-bottom: 0.2em;
}
.list_b li {
    margin-bottom: 1em;
}
.list_t li {
    margin-top: 1em;
}
.centering {
    margin-left: auto;
    margin-right: auto;
}

/*まちがい5*/
#machigai5 {
    padding: 12px;
    margin: 10px;
    background: #fff;
}
#machigai5 h2 {
    margin-top: 0 !important;
    margin-bottom: 3.8rem !important;
}
#machigai5 h3 {
    position: relative;
    padding: 1rem 2rem;
    text-align: center;
    border: 2px solid #0079c3;
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1em;
}
#machigai5 h3:before {
    font-size: 15px;
    font-size: 1.5rem;
    position: absolute;
    top: -24px;
    left: -3px;
    height: 24px;
    padding: 0 1em;
    content: "今回のテーマ";
    color: #fff;
    background: #0079c3;
}
#machigai5 h4 {
    background: #858c8e;
    color: #fff;
    padding: 2px 8px;
    margin: 1em 0 0.5em;
    font-weight: bold;
}
.pwm {
    display: none;
}

/*トピックス*/
#topics h4 {
    margin-top: 1.7em;
    font-weight: bold;
    font-size: 1.8rem;
    line-height: 1.3;
    margin-bottom: 0.7em;
}
#topics h5 {
    margin-top: 0.9em;
    margin-bottom: 0.1em;
    font-weight: bold;
    font-size: 1.6rem;
}
#topics h6 {
    margin-top: 0.6em;
    margin-bottom: 0.1em;
    font-weight: bold;
    font-size: 1.6rem;
}
#topics p {
    margin-top: 0.6em;
}
#topics li {
    margin-top: 0.6em;
}
#topics h4:nth-child(1),
#topics p:nth-child(1) {
    margin-top: 0 !important;
}
.mid_sc {
    display: inline-block;
    border: solid 1px #181818;
    padding: 2px 6px;
}
.mid_bd {
    display: inline-block;
    border-top: solid 1px #181818;
    border-bottom: solid 1px #181818;
    padding: 2px 6px;
}
.mid_stripe {
    background-image: linear-gradient(0deg, rgba(180, 180, 180, 0.28), rgba(180, 180, 180, 0));
    padding: 0.4em 0.5em;
    border-bottom: solid 1px #bdbdbd;
    border-top: solid 1px #bdbdbd;
    position: relative;
}
.mid_stripe::after {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    content: "";
    background-image: repeating-linear-gradient(
        135deg,
        transparent,
        transparent 3px,
        rgba(255, 255, 255, 0.5) 3px,
        rgba(255, 255, 255, 0.5) 6px
    );
}
.mid_stripe span {
    z-index: 100;
    position: relative;
}

.frames4 img {
    width: 100%;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
    display: block;
}
.font-l {
    font-size: 2rem;
}
.font-xl {
    font-size: 1.2em;
}
.font-small {
    font-size: 87.5%;
}
.font-ss {
    font-size: 82.5%;
}

/*すこやかハート*/
#healthy h2 {
    margin-bottom: 0.2em;
}
#healthy h3 {
    font-weight: bold;
    margin-bottom: 0.5em;
    font-size: 2.4rem;
    line-height: 1.2;
    padding-left: 0.55em;
    border-left: solid 6px #e95471;
    background: #fef6f8;
    padding-top: 3px;
    padding-bottom: 3px;
}
#healthy h4 {
    margin-top: 1.7em;
    font-weight: bold;
    font-size: 1.8rem;
    line-height: 1.3;
    margin-bottom: 0.3em;
    /* border-radius: 7px; */
    /* background: #fbe3e9; */
    /* padding: 2px 6px; */
}
#healthy h4.noleft {
    padding-left: 0;
    border-left: none;
}
#healthy h4.mid_sc {
    display: inline-block;
    border: none;
    background: #fff574;
    border-radius: 0;
}
#healthy h4.mid_bd {
    display: block;
    border-top: solid 1px #e9518e;
    border-bottom: solid 1px #e9518e;
    border-radius: 0;
    background-color: transparent;
}

#healthy h5 {
    margin-top: 0.9em;
    margin-bottom: 0.1em;
    font-weight: bold;
    font-size: 1.6rem;
}
#healthy h6 {
    margin-top: 0.6em;
    margin-bottom: 0.1em;
    font-weight: bold;
    font-size: 1.6rem;
}
#healthy p {
    margin-top: 0.6em;
}
#healthy li {
    margin-top: 0.6em;
}
#healthy > p:nth-child(2) {
    font-weight: bold;
    color: #f092ae;
    margin: 0 0 1em !important;
}
#healthy .hmark {
    color: #e9518e;
}

/*連載*/
#topics .series h4 {
    font-size: 2.025rem;
}
#topics .series h5 {
    font-size: 1.8rem;
    margin-top: 1em;
}
#topics .renkei {
    float: right;
    margin-top: 0;
    display: inline-block;
    width: 90px;
}
.renkei img {
    width: 90px;
    height: auto;
    padding-bottom: 4px;
}

.nav-tabs-outer {
    overflow-x: scroll;
    overflow-y: hidden;
    border-bottom: 1px solid #707070;
}
.nav-tabs {
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
}
.nav-tabs-outer ul {
    margin-top: 0;
    margin-bottom: -1px;
    display: flex;
}
.nav-tabs li {
    display: block;

    margin-bottom: -1px;
    position: relative;
    text-align: center;
}
.nav-tabs > li.active > a,
.nav-tabs > li.active > a:hover,
.nav-tabs > li.active > a:focus {
    color: #fff;
    cursor: default;
    background-color: #183d86;
    border: 1px solid #ddd;
    border-bottom-color: transparent;
}
.nav-tabs > li > a {
    margin: 0px 3px;
    line-height: 1.42857143;
    border: 1px solid #707070;
    border-radius: 8px 8px 0 0;
    background: #e0e1e3;
    color: #181818;
    white-space: nowrap;
    font-size: 1.4rem;
    position: relative;
    display: block;
    padding: 10px 6px;
    width: 6em;
}
.nav-tabs-outer::-webkit-scrollbar {
    height: 2px;
}
.nav-tabs-outer::-webkit-scrollbar-track {
    margin: 0 2px;
    background: #ccc;
    border-radius: 5px;
}
.nav-tabs-outer::-webkit-scrollbar-thumb {
    border-radius: 5px;
    background: #666;
}

/*アコーディオン*/
.accordion-container article {
    margin-bottom: 10px;
}
.accordion-container .accordion-title {
    position: relative;
    margin: 0;
    padding: 0.8em 2.4rem 0.8em 1.2rem;
    background-color: #fff;
    font-size: 1.6rem;
    font-weight: bold;
    color: #181818;
    cursor: pointer;
    border: solid 1px #181818;
}
.accordion-container .accordion-title:hover,
.accordion-container .accordion-title:active,
.accordion-title.on {
    background-color: #fff;
}

.accordion-container .accordion-title::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 12px;
    width: 15px;
    height: 2px;
    /*縦線に*/
    transform: rotate(90deg);
    background: #181818;
    transition: all 0.3s ease-in-out;
}

.accordion-container .accordion-title::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 12px;
    /*横線*/
    width: 15px;
    height: 2px;
    background: #181818;
    transition: all 0.2s ease-in-out;
}

.accordion-container .accordion-title.on::before {
    transform: rotate(180deg);
}

.accordion-container .accordion-title.on::after {
    opacity: 0;
}

.accordion-content {
    display: none;
    padding: 8px;
    border: 1px solid #181818;
    border-top-color: transparent;
    /*background:#fff;*/
}
.accordion-container p {
    margin-top: 0.5em;
}
.accordion-container h4 {
    font-weight: bold;
    margin-top: 1.6em;
}
.accordion-container h4:nth-child(1),
.accordion-container p:nth-child(1),
#topics p:nth-child(1) {
    margin-top: 0;
}
.accordion-content h5 {
    font-size: 1.6rem;
    margin: 0.8em 0 0;
    font-weight: bold;
}
.infostation li:nth-child(n + 2) {
    margin-top: 1em;
}
/*.ward li:nth-child(n+2){
	margin-top:1.2em;
}*/
.accordion-content li {
    margin-top: 0.8em;
}

.spword_b {
    display: inline-block;
    background: #3a404a;
    color: #fff;
    padding: 0 2px;
}
span.spword_b {
    margin-left: 2px;
}
p.spword_b,
#topics p.spword_b {
    margin-top: 1.7em;
    margin-bottom: 0.2em;
}
.item {
    margin: 0;
    padding-top: 0.2em;
}
.item dt {
    font-size: 1.6rem;
    color: #8d8d8d;
    white-space: nowrap;
    background-repeat: no-repeat;
    background-size: auto 100%;
    background-position: left center;
    padding: 2px 0 2px 2.2rem;
    line-height: 1;
    display: block;
    height: 1.2em;
    margin-top: 0.7rem;
    margin-bottom: 3px;
    font-weight: bold;
}
.item dd {
    padding-left: 2.2rem;
    font-size: 1.6rem;
    display: block;
}
.info_target {
    background: url("../images/icon_i-target.png");
}
.info_capacity {
    background: url("../images/icon_i-capacity.png");
}
.info_fee {
    background: url("../images/icon_i-fee.png");
}
.info_appli {
    background: url("../images/icon_i-appli.png");
}
.info_inquiry {
    background: url("../images/icon_i-inquiry.png");
}
.info_inchrge {
    background: url("../images/icon_i-inchrge.png");
}
.info_optime {
    background: url("../images/icon_i-optime.png");
}
.info_holiday {
    background: url("../images/icon_i-holiday.png");
}

.infostation,
.ward,
.contents,
#backnumber {
    padding: 10px;
    margin: 10px;
    background: #fff;
}
.infostation h2,
.ward h2,
.contents h2 {
    font-size: 2.2rem;
    border-bottom: solid 1px #181818;
    line-height: 1.5;
    margin: 0 0 0.8em;
    font-weight: bold;
}
.infostation h2 span,
.contents h2 span {
    border-bottom: 3px solid #008040;
    padding-bottom: 1px;
}
_::-webkit-full-page-media,
_:future,
:root .infostation h2 span,
.ward h2,
.contents h2 span {
    padding-bottom: 4px;
}
.ward_btext {
    margin-top: 1em;
}
.ward_btext p {
    font-size: 1.4rem;
}
.ward_btext .illust {
    width: 90%;
}

.ward_column p {
    margin-top: 1em;
}
.ward_column .item dt {
    margin-top: 1em;
}

/*お知らせ*/
.info_contents {
    background: #fffcd1;
}
.info_contents p {
    font-weight: bold;
    padding: 8px 12px;
}

/*画像写真*/
.fullimg {
    margin: 1.1428em 0;
    width: 100%;
}
.fullimg img {
    width: 100%;
    height: auto;
}

.healthy_pop {
    display: none;
}

.pic-wrapper,
.pic,
.illust,
.w100,
.w90,
.w80,
.w70,
.w60,
.w50,
.w40,
.w30,
.w20,
.w15,
.w10 {
    margin: 1.1428em auto !important;
    text-align: center;
    font-size: 1.4rem;
}

.pic-wrapper img,
.illust img,
.pic img,
.w100 img,
.w90 img,
.w80 img,
.w70 img,
.w60 img,
.w50 img,
.w40 img,
.w30 img,
.w20 img,
.w15 img,
.w10 img {
    margin-bottom: 4px;
}
.pic img {
    width: 70%;
    height: auto;
}
.illust img {
    width: 50%;
    height: auto;
}
.w100 img {
    width: 100%;
    height: auto;
}
.w90 img {
    width: 90%;
    height: auto;
}
.w80 img {
    width: 80%;
    height: auto;
}
.w70 img {
    width: 70%;
    height: auto;
}
.w60 img {
    width: 60%;
    height: auto;
}
.w50 img {
    width: 50%;
    height: auto;
}
.w40 img {
    width: 40%;
    height: auto;
}
.w30 img {
    width: 30%;
    height: auto;
}
.w20 img {
    width: 20%;
    height: auto;
}
.w15 img {
    width: 15%;
    height: auto;
}
.w10 img {
    width: 10%;
    height: auto;
}
@media screen and (max-width: 767.98px) {
    .pic img {
        width: 90%;
    }
    .illust img {
        width: 70%;
    }
    .w100 img {
        width: 100%;
    }
    .w90 img {
        width: 100%;
    }
    .w80 img {
        width: 100%;
    }
    .w70 img {
        width: 90%;
    }
    .w60 img {
        width: 80%;
    }
    .w50 img {
        width: 70%;
    }
    .w40 img {
        width: 60%;
    }
    .w30 img {
        width: 50%;
    }
    .w20 img {
        width: 40%;
    }
    .w15 img {
        width: 35%;
    }
    .w10 img {
        width: 30%;
    }
}

/*見出し色*/
#topics h2 span {
    border-bottom: 3px solid #8ec54a;
}
#machigai5 h2 span {
    border-bottom: 3px solid #0079c3;
}
#healthy h2 span {
    border-bottom: 3px solid #f092ae;
}
#pdf h2 span {
    border-bottom: 3px solid #183d86;
}
#consult h2 span {
    border-bottom: 3px solid #008040;
}
#goout h2 span {
    border-bottom: 3px solid #aa0035;
}
#child h2 span {
    border-bottom: 3px solid #aa0035;
}
#work h2 span {
    border-bottom: 3px solid #0081a3;
}
#study h2 span {
    border-bottom: 3px solid #8f1470;
}
#lecture h2 span {
    border-bottom: 3px solid #00aeb3;
}
#recruit h2 span {
    border-bottom: 3px solid #e3530b;
}
#sports h2 span {
    border-bottom: 3px solid #de005a;
}
#information h2 span {
    border-bottom: 3px solid #2c578f;
}
#event h2 span {
    border-bottom: 3px solid #692019;
}

#moji h2 span {
    border-bottom: 3px solid #23ac39;
}
#kokurakita h2 span {
    border-bottom: 3px solid #5e308f;
}
#kokuraminami h2 span {
    border-bottom: 3px solid #de690b;
}
#wakamatsu h2 span {
    border-bottom: 3px solid #fff100;
}
#yahatahigashi h2 span {
    border-bottom: 3px solid #0068b7;
}
#yahatanishi h2 span {
    border-bottom: 3px solid #007a40;
}
#tobata h2 span {
    border-bottom: 3px solid #e83228;
}
.cou {
    border: solid 1px #cdc029;
    margin-bottom: 1em;
    font-weight: bold;
    background: #ffed7d;
    padding: 8px;
    border-radius: 10px;
}
#kenko_table ul {
    /*font-size:1.4rem;*/
    margin-bottom: 1em;
}
#kenko_table li {
    margin-top: 1em;
}

/*施設BTN*/
.event_btn {
    margin: 1em auto 0.5em;
    font-size: 1.4rem;
    text-align: center;
}
.event_btn a {
    display: inline-block;
    color: #fff;
    padding: 9px 36px 9px 16px;
    font-size: 1.4rem;
    background: linear-gradient(
        89.10395138477566deg,
        rgba(136, 50, 42, 1) 20.999217983316978%,
        rgba(105, 32, 25, 1) 80.6072896221786%
    );
    text-align: center;
    border-radius: 8px;
    position: relative;
}
.event_btn a:before {
    display: block;
    content: "";
    position: absolute;
    width: 8px;
    height: 8px;
    border: 0;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: rotate(45deg);
    top: 50%;
    right: 12px;
    margin-top: -4px;
}
#event .accordion-content h4:nth-child(1) {
    margin-top: 1em;
}

/*選択タブ*/
.AB-wrap {
    background-color: #fff;
}
.AB-wrap .AB-btn-wrap {
    display: flex;
    margin-bottom: 2rem;
}
.AB-btn {
    text-align: center;
    list-style: none;
    cursor: pointer;
    padding: 8px 0;
    line-height: 1;
    background: #dee1e5;
    color: #626d7d;
    border-top: solid 2px #cfd3d9;
    border-bottom: solid 2px #cfd3d9;
    font-size: 1.4rem;
    font-weight: bold;
    width: 11em;
}
.btn-A {
    border-radius: 6px 0 0 6px;
    border-left: solid 2px #cfd3d9;
}
.btn-B {
    border-radius: 0 6px 6px 0;
    border-right: solid 2px #cfd3d9;
}
.AB-btn.show {
    background: #119f18;
    color: #fff;
}

.AB-contents {
    display: none;
}
.AB-contents.show {
    display: block;
}
.tab-B > div {
    display: flex;
}

/*北九州自慢*/
.jimanpic {
    font-size: 1.4rem;
    text-align: center;
}
.jimanpic strong {
    font-size: 1.9rem;
}
.jimanpic img {
    padding-bottom: 4px;
}
#jiman .tk {
    text-align: right;
}
#jiman .topbd {
    border-top: solid 1px #181818;
    padding-top: 1.7em;
}

/*お詫びと訂正*/
.correct {
    border: solid 1px #e4e5e6;
    background-color: #fff;
    padding: 0.8em;
    margin-top: 0.8em;
}
.correct h2 {
    font-size: 1.8rem;
    font-weight: bold;
}
.correct h3 {
    font-size: 1.8rem;
    font-weight: bold;
}

#pdf .correct {
    border: solid 1px #181818;
    background-color: #fff;
    padding: 0.8em;
    margin: 1em 0 1.3em;
}
#pdf .correct h2 {
    font-size: 1.8rem;
    font-weight: bold;
    border: none;
    margin-bottom: 0.5em;
}
#pdf .correct h3 {
    font-size: 1.8rem;
    font-weight: bold;
}

@media screen and (min-width: 768px) {
    h1,
    h2,
    h3,
    h4,
    h5,
    h6,
    p,
    li,
    th,
    td,
    dt,
    dd,
    label,
    a {
        font-weight: 500;
    }
    .tel-link {
        display: inline;
    }

    .open_btn {
        z-index: 1000;
    }
    a:hover,
    label:hover {
        text-decoration: underline;
    }
    label.close_btn:hover {
        text-decoration: none;
    }

    /*machigai5*/
    .flex_pc {
        display: flex;
    }
    .flex_pc img {
        width: 97%;
    }

    header {
        width: 220px;
        padding: 0;
        flex-direction: column;
        margin: 0;
        float: left;
    }
    #logo {
        margin-left: 28px;
        padding: 18px 0 8px;
    }
    #wrapper {
        max-width: 900px;
        margin: 0 auto;
        position: relative;
    }
    /* ハンバーガーボタン */
    .h-menu {
        position: static;
        padding-bottom: 0;
    }
    .h-menu_icon {
        display: none; /*768px以上では使用しない */
    }
    #h-menu_content {
        position: static;
        z-index: 99;
        width: 220px;
        -webkit-transform: none;
        transform: none;
        height: auto;
        transition: 0s;
    }
    #h-menu_content li a {
        padding-top: 8px;
        padding-bottom: 8px;
        padding-left: 46px;
        background-size: 28px 28px;
    }
    #h-menu_content p {
        padding-left: 12px;
    }

    #font_ch_sp {
        display: none;
    }
    #font_ch_pc {
        width: 200px;
        white-space: nowrap;
        position: absolute;
        right: 10px;
        top: 8px;
        display: flex;
    }

    .fontchange {
        background: #fff;
        padding: 4px 0 4px 8px;
        margin-bottom: 2px;
        margin-top: 2px;
    }

    #dayori_title {
        margin: 0 0 0 240px;
        justify-content: flex-start;
        align-items: center;
        min-height: auto;
        border-bottom: solid 1px #e8eded;
        padding-top: 8px;
        padding-bottom: 8px;
    }
    #dayori_title #d_text {
        margin-right: 1em;
        padding-top: 4px;
        font-size: 2.4rem;
    }
    #dayori_title #d_text a {
        font-weight: bold;
    }
    #dayori_title #d_no {
        position: static;
        text-align: left;
    }
    #dayori_title .d_no_ind {
        position: absolute !important;
        right: 10px !important;
        bottom: 0.5rem !important;
        top: auto !important;
    }
    #dayori_mid {
        margin-left: 240px;
        margin-bottom: 32px;
    }
    #dayori_mid_ha {
        margin-left: 240px;
        border-bottom: none;
    }

    div.header-sub {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    div.header-sub,
    main {
        margin: 0 0 0 240px !important;
        max-width: 700px;
        border: solid 1px #e8eded;
    }

    #menu {
        margin-top: 0;
        padding-top: 40px;
        clear: both;
    }
    main #menu {
        clear: none;
    }
    /*
#menu ul{
    margin-left:0;
}
#menu .menu_backnumber{
    line-height:1.2;

}
#menu .menu_backnumber a{
    height:86.67px;
    background-position: center 0px;
    padding-top:48px;
}
#menu .menu_backnumber br{
    display:inline;
}*/
    #menu a:hover {
        background-color: #cce4f5;
        text-decoration: none;
        transition: 0.3s ease;
    }

    .infostation,
    .ward,
    .contents,
    #backnumber {
        padding: 10px 12px;
        margin: 10px;
        background: #fff;
    }

    .tab_wrap {
        margin-left: 240px;
    }
    .nav-tabs-outer {
        overflow-x: visible;
        overflow-y: visible;
        border-bottom: none;
    }
    .nav-tabs-outer ul {
        margin: 0 8px;
        display: block;
    }
    .nav-tabs-outer .nav-tabs li {
        display: inline-block;
        margin-bottom: 10px;
        float: none;
        position: relative;
    }
    .nav-tabs {
        padding-left: 0;
        margin-bottom: 0;
        list-style: none;
    }
    .nav-tabs > li.active > a,
    .nav-tabs > li.active > a:hover,
    .nav-tabs > li.active > a:focus {
        color: #fff;
        cursor: default;
        background-color: #183d86;
        border: 1px solid #ddd;
        border-bottom-color: transparent;
    }
    .nav-tabs > li > a {
        margin: 0px 3px;
        line-height: 1.42857143;
        border: 1px solid #707070;
        border-radius: 0;
        background: #fff;
        color: #181818;
        white-space: nowrap;
        font-size: 1.4rem;
        position: relative;
        display: block;
        padding: 6px 6px;
        transition: 0.3s ease-in-out;
        width: 118.4px;
    }
    .nav-tabs li a:hover {
        background-color: #cce4f5;
        text-decoration: none;
    }

    .hagaki {
        margin-left: 240px;
        margin-bottom: 0;
        border-bottom-color: #e8eded;
    }

    /*.wid2 li,.wid3 li,.wid4 li{
    width:88.3px;
}*/

    .bread_wrapper {
        height: auto;
        padding: 11px;
    }
    .bread {
        max-width: 880px;
    }
    .bread li {
        font-size: 1.4rem;
    }

    footer {
        padding: 16px 0 0;
    }
    footer .ward-tel {
        max-width: 880px;
        margin: 0 auto;
        padding-right: 0;
    }
    .footer_inner {
        max-width: 880px;
        margin-left: auto;
        margin-right: auto;
    }
    .footer_inner p {
        margin-left: auto;
        margin-right: auto;
    }
    .footer_inner p:first-child {
        margin-top: -1.5em;
    }
    footer .copy {
        margin-top: 16px;
    }
    #footmark {
        position: absolute;
        right: 0;
        bottom: 0;
    }

    /*index*/
    #ind_flex {
        display: flex;
        justify-content: space-between;
        margin-bottom: 40px;
    }
    #ind_contact {
        white-space: nowrap;
        margin-right: 12px;
    }
    #population {
        margin: 0;
    }
    .pdflink {
        width: 400px;
        margin: 18px auto 0;
    }
    .pdflink:hover {
        opacity: 0.7;
        text-decoration: none;
    }
    #pdf td a {
        border: solid 1px transparent;
    }
    #pdf td a:hover {
        text-decoration: none !important;
        border-color: #1a73e6;
        color: #1a73e6;
        background: #fff;
        box-sizing: border-box;
        transition: 0.5s;
        padding: 3px;
    }
    #pdf th#pdftop a:hover,
    #pdf_ward li a:hover {
        background-color: #cce4f5;
        text-decoration: none;
        transition: 0.3s ease;
    }
    #pdf_ward li {
        width: 25%;
        border-width: 1px 1px 0 0;
    }
    ul#pdf_ward > li:nth-child(2n + 1) {
        border-left-width: 0px;
    }
    ul#pdf_ward > li:nth-child(n + 4):not(:nth-child(1)) {
        border-bottom-width: 1px;
    }
    ul#pdf_ward > li:nth-child(n + 4) a {
    }
    ul#pdf_ward > li:nth-child(4n + 1) {
        border-left-width: 1px;
    }

    #backnumber article a,
    #backnumber .year-button a {
        border: solid 1px transparent;
    }
    #backnumber .year-button a:hover {
        background: #fff;
        border-color: #409b4e;
        color: #409b4e;
        transition: 0.3s ease;
        text-decoration: none;
    }
    #backnumber article a:hover {
        text-decoration: none !important;
        border-color: #1a73e6;
        color: #1a73e6;
        background: #fff;
        transition: 0.3s ease;
    }

    .AB-btn:hover {
        opacity: 0.7;
        transition-duration: 0.2s;
    }

    .pwm {
        display: block;
    }
    .pwm .popup_content {
        max-width: 1200px;
        padding-left: 12px;
    }
    .healthy_pop {
        margin-bottom: 1em;
        display: block;
    }
    .healthy_pop label {
        color: #477fee;
    }

    .qr a,
    .event_btn a {
        border: solid 2px transparent;
    }
    .qr a:hover {
        text-decoration: none !important;
        border-color: #1a73e6;
        color: #1a73e6;
        background: #fff;
        box-sizing: border-box;
        font-weight: bold;
        transition-duration: 0.2s;
    }
    .qr a:hover:before {
        border-right-color: #1a73e6;
        border-top-color: #1a73e6;
        transition-duration: 0.2s;
    }
    .event_btn a:hover {
        text-decoration: none !important;
        border-color: #9c463e;
        color: #9c463e;
        background: #fff;
        box-sizing: border-box;
        font-weight: bold;
        transition-duration: 0.2s;
    }
    .event_btn a:hover:before {
        border-right-color: #9c463e;
        border-top-color: #9c463e;
        transition-duration: 0.2s;
    }
    .event_btn br {
        display: none;
    }

    .ward_btext {
        margin-top: 1em;
        position: relative;
        min-height: 190px;
        font-size: 1.6rem;
    }
    .btext2 {
        min-height: inherit;
    }
    .ward_btext p {
        margin-right: 232px;
    }
    .btext2 p {
        margin-right: 0;
    }
    .ward_eye .illust {
        position: absolute;
        right: 0;
        top: 0;
        margin: 0 !important;
        display: block;
        width: 220px;
        text-align: center;
    }
    .ward_eye img {
        width: 220px;
        margin: 0 0 4px !important;
    }

    br.sbr {
        display: none;
    }

    /*.tab-child a{
border:solid 1px #b6b6b6!important;color:#9ca0a7!important;background:#e0e1e3!important;
}
.menu_child a:before{
	display:none!important;
}*/
} /*end*/

@media screen and (max-width: 767.98px) {
    /*.tab-child a{
border:solid 1px #ededef!important;color:#e0e1e3!important;background:#f9f9fa!important;
}*/

    br.pbr {
        display: none;
    }
}

@media screen and (min-width: 520px) and (max-width: 889px) {
    #backnumber article div {
        width: 32%;
    }
    #backnumber article div img {
        width: 66.6%;
    }
}
@media screen and (min-width: 890px) {
    #backnumber article div {
        width: 24%;
    }
    #backnumber article div img {
        width: 66.6%;
    }
}

.add0h {
    margin-top: 0.5em !important;
}
.add {
    margin-top: 1em !important;
}
.add1h {
    margin-top: 1.5em !important;
}
.add2 {
    margin-top: 2em !important;
}
.add2h {
    margin-top: 2.5em !important;
}
.add3 {
    margin-top: 3em !important;
}
.line {
    background: linear-gradient(transparent 75%, #fff33b 75%);
}
.mark {
    color: #e60013;
}
.mark_pink {
    color: #ef90ad;
}
.mark_orange {
    color: #ed6d01;
}
.no_mg {
    margin: 0 !important;
}
.nomg_t {
    margin-top: 0 !important;
}
.nomg_b {
    margin-bottom: 0 !important;
}
.pic span,
.illust span,
.w100 span {
    text-align: left;
    display: inline-block;
}
.net {
    font-size: 1.5rem;
    text-align: right;
}
.flexbox {
    display: flex;
}
.emph {
    text-emphasis: filled;
    -webkit-text-emphasis: filled;
}
.strike {
    text-decoration-line: line-through;
    text-decoration-style: solid;
    text-decoration-color: #e6061e;
    text-decoration-thickness: 3px;
}
.text-right {
    text-align: right;
}
.text-center {
    text-align: center;
}

/* MAP */
.gmap label {
    position: absolute;
    right: 3px;
    top: 14px;
    background: #fff;
    line-height: 0.8;
    font-size: 12px;
    color: #666 !important;
    text-align: center;
    padding: 32px 3px 3px;
    box-shadow: 0 0 2px #dbdcdd;
}
.gmap label span {
    display: block;
    font-size: 36px;
}
.gmap label::before,
.gmap label::after {
    /* 共通設定 */
    content: "";
    position: absolute;
    right: 19px;
    top: 15px;
    width: 3px; /* 棒の幅（太さ） */
    height: 26px; /* 棒の高さ */
    background: #666;
}
.gmap label::before {
    transform: translate(-50%, -50%) rotate(45deg);
}
.gmap label::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.accordion-container .accordion-content h4 label,
.accordion-container .accordion-content h5 label {
    font-weight: bold;
}
.accordion-container .accordion-content section {
    margin-top: 1.6em;
}
.accordion-container .accordion-content section:nth-of-type(1) {
    margin-top: 0;
}
.tableMap td {
    /* background: #fff !important; */
    margin: 0 calc(50% - 50vw);
    width: 100vw;
    border: none;
    padding: 0 !important;
}

.accordion-content input,
#special input,
.otwrap input {
    display: none;
}
.accordion-content .gmap,
#special .gmap,
.otwrap .gmap {
    height: 0;
    padding: 0;
    overflow: hidden;
    opacity: 0;
    transition: 0.8s;
    position: relative;
}
.accordion-content input:checked ~ .gmap,
#special input:checked ~ .gmap,
.otwrap input:checked ~ .gmap {
    padding: 10px 0;
    height: auto;
    opacity: 1;
}

.mlabel {
    background: url("../images/map.png") no-repeat right 2px;
    cursor: pointer;
    color: #477fee;
    padding-right: 18px;
    padding-top: 4px;
    background-size: 1.6rem;
}
@media (min-width: 768px) {
    .gmap iframe {
        width: 100% !important;
        height: 380px !important;
    }
}
@media (max-width: 767.98px) {
    .accordion-content input:checked ~ .gmap,
    #special input:checked ~ .gmap,
    .otwrap input:checked ~ .gmap {
        padding-bottom: 300px;
    }
    .gmap iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100% !important;
    }
}
