@charset "UTF-8";

/******************** CSS RESET ********************/
*,
*::before,
*::after {
    box-sizing: border-box;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

body {
    line-height: 1;
}

ol,
ul {
    list-style: none;
}

img {
    max-width: 100%;
    vertical-align: bottom;
}

hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #ccc;
    margin: 1em 0;
    padding: 0;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

address {
    font-style: normal;
}

input:not([type="radio"]):not([type="checkbox"]),
button,
textarea {
    padding: 0;
    margin: 0;
    background: none;
    border: none;
    border-radius: 0;
    -webkit-appearance: none;
}

input[type="radio"] {
    margin-top: 0;
    padding-top: 0;
}

input,
label {
    vertical-align: middle;
}

legend {
    width: 100%;
}

/******************** 共通設定 ********************/
body {
    font-family: arial, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Meiryo UI", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    line-height: 1.5;
    letter-spacing: 0.1em;
    color: #333;
    font-size: 100%;
    -webkit-text-size-adjust: 100%;
    -webkit-overflow-scrolling: touch;
}

@media print,
screen and (min-width: 769px) and (max-width: 1000px) {
    body {
        width: 1000px;
    }
}

@media (min-width: 769px) {
    body {
        position: static !important;
        width: 100% !important;
    }
}

/**** テキスト ****/
p,
li {
    margin-top: 12px;
}

.small {
    font-size: 85%;
}

strong {
    color: #900;
}

/**** リンク ****/
a:link {
    text-decoration: underline;
    color: #2b3095;
}

a:visited {
    text-decoration: underline;
    color: #791e78;
}

a:hover {
    text-decoration: none;
    color: #9f0000;
}

a:active {
    text-decoration: none;
    color: #9f0000;
}

.link_white:link {
    text-decoration: underline;
    color: #fff;
}

.link_white:visited {
    text-decoration: underline;
    color: #eee;
}

.link_white:hover {
    text-decoration: underline;
    color: #ffff00;
}

.link_white:active {
    text-decoration: underline;
    color: #ffff00;
}

a:link>strong {
    color: #2b3095;
}

a:visited>strong {
    text-decoration: underline;
    color: #791e78;
}

a:hover>strong {
    text-decoration: none;
    color: #9f0000;
}

a:active>strong {
    text-decoration: none;
    color: #9f0000;
}

/**** 別ウィンドウで開く ****/
.window {
    display: inline-block;
    font-size: 62.5%;
    font-weight: normal;
    background: #fff;
    color: #333;
    border-radius: 4px;
    padding: 1px 4px;
    margin: 0 4px;
    border: 1px solid #000;
    vertical-align: text-bottom;
    word-wrap: break-word;
}

h2 .window {
    font-size: 56.25%;
}

.main_naka h2 .window {
    font-size: 49%;
}

/**** 本文へ_スキップ用リンク ****/
.skip {
    position: relative;
    text-align: center;
    width: 100%;
    margin: 0;
}

.skip a {
    background-color: #fff;
    width: 1px;
    font-size: 0.1%;
    line-height: 0.1;
    position: absolute;
    top: auto;
    left: -3000px;
    z-index: 9999;
    padding: 4px 0;
}

.skip a:active,
.skip a:focus {
    display: block;
    width: 100%;
    margin: 0 auto;
    font-size: 100%;
    left: 0;
    right: 0;
    top: 0;
    line-height: 1.5;
}

/**** フォーム ****/
#body input,
header button,
#main_outline button,
footer button,
#body textarea {
    background: #fff;
    border: 1px solid #999;
    font-size: 85%;
}

/* text,textarea */
#body input[type="text"],
#body textarea,
#body input[type="password"] {
    font-family: arial, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Meiryo UI", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    background: #fff;
    border: 1px solid #999;
    padding: 8px 6px;
}

/* select */
#body select[size],
#body select[multiple],
#body select[size][multiple] {
    padding: 6px;
}

/* submit,reset,button */
#body input[type="submit"],
#body input[type="reset"],
header button[type="button"],
#main_outline button[type="button"],
footer button[type="button"],
header button,
#main_outline button,
footer button {
    background: #000;
    border-radius: 4px;
    cursor: pointer;
    color: #fff;
    display: inline-block;
    text-align: center;
    padding: 6px 16px;
}

#body input[type="submit"]:hover,
#body input[type="reset"]:hover,
header button[type="button"]:hover,
#main_outline button[type="button"]:hover,
footer button[type="button"]:hover,
header button:hover,
#main_outline button:hover,
footer button:hover {
    /*background: #666;*/
}

/**** その他 ****/
.anchor,
.notit {
    display: block;
    height: 1px;
    margin-top: -1px;
}

.date {
    font-size: 85%;
    color: #555;
    display: inline-block;
    margin-left: 12px;
}

.noscript {
    font-size: 85%;
    color: #a90000;
}

.none {
    display: none;
}

/******************** レイアウトCSS ********************/

/********************************************
2カラムの場合ここにliguid.cssをの中身をコピーして、
liguid.cssは削除する
********************************************/

.design {
    clear: both;
    background-image: url(img/bg-boardB-width.jpg);
    background-size: 300px;
}

.zone04_in {
    margin: 0 auto;
    padding: 0 12px;
    max-width: 1200px;
    width: 100%;
}

@media only screen and (max-width: 1024px) {
    .zone01 {
        float: none;
        width: 100%;
    }

    .zone02 {
        float: none;
        width: 100%;
    }
}


/********************** ヘッダー **********************/
.main_header {
    width: 100%;
}

@media only screen and (max-width: 1024px) {
    .main_header {
        overflow: hidden;
        margin-bottom: -4px;
    }
}

/**** ヘッダー上段リンク ****/
.h_top_wrap {
    margin-left: auto;
    width: calc(100% - 230px);
    font-size: 75%;
}

.sub-index3h .h_top_wrap {
    margin-left: auto;
    width: calc(100% - 430px);
    font-size: 75%;
}

.h_top {

    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.h_top .h_toplist01 {
    display: flex;
    align-items: center;
    margin: 4px auto 4px 0;
}

.h_top .h_toplist02 {
    display: flex;
    flex-wrap: wrap;

    align-items: center;
    justify-content: flex-end;
    margin: 0;
}

.h_top .h_toplist01>li {
    margin: 0 16px 0 0;
    padding: 0 0 0 14px;
    position: relative;
}

.h_top .h_toplist01>li::before {
    content: '';
    display: block;
    position: absolute;
    top: .5em;
    left: 0;
    border-right: 2px solid #999;
    border-bottom: 2px solid #999;
    width: 6px;
    height: 6px;
    transform: rotate(-45deg);
}

.h_top .h_toplist02>li {
    margin: 10px 0 0 12px;
}

.h_top .h_toplist02>li:first-child {
    margin: 10px 0 0;
}

.h_top .h_toplist02>li a {
    display: block;
    padding: 0;
    color: #000;
    text-decoration: none;
}

@media only screen and (max-width: 1024px) {
    .h_top_wrap {
        display: none;
    }
}


/* ▼ 羽村市トップページ ▼ */
.h_top .h_toplist02>li:first-child a {
    padding: 3px 7px;
    background: #fff;
    border: 1px solid #000;
    border-radius: 4px;
}

/* ▲ 羽村市トップページ ▲ */

/* ▼ d ▼ */
/* ▲ d ▲ */

/* ▼ d ▼ */
/* ▲ d ▲ */

/* ▼ 色の反転 ▼ */
.bg_color {
    display: flex;
    align-items: center;
    margin-right: 16px;
}

.bg_tit {
    padding: 0;
    margin: 0 6px 0 0;
}

.bg_list {
    display: flex;
    align-items: center;
}

.bg_list li {
    padding: 0;
    margin: 0 0 0 4px;
}

.bg_list li a {
    display: block;
    border: 1px solid #ccc;
    border-radius: 4px;
    background: #fff;
    text-decoration: none;
    padding: 0 4px;
}

.bg_list li:first-child a {
    background: #000;
}

.bg_list li:first-child a>strong {
    color: #fff;
}

/* ▲ 色の反転 ▲ */

/* ▼ フォントサイズ ▼ */

.font_size,
.font_tit,
.font,
.font_list,
.font_list li {
    float: left;
}

.font_size {
    display: flex;
    align-items: center;
    margin-left: 16px;
}

.font_tit {
    margin: 1px 6px 0 0;
}

.font_list li {
    margin: 0;
}


.h_top .h_toplist02>li .font_list li a {
    display: block;
    padding: 3px 4px;
    background: #fff;
    border: 1px solid #000;
}

.h_top .h_toplist02>li .font_list li:last-child a {
    background: #000;
}

.h_top .h_toplist02>li .font_list li:last-child a strong {
    color: #fff;
}

/* ▲ フォントサイズ ▲ */

/* ▼ 検索窓 ▼ */
header .h_top .h_toplist02>li:last-child .src_box {
    width: 200px;
}

header .h_top .h_toplist02>li:last-child .src_box .q {
    width: calc(100% - 40px) !important;
    height: 26px !important;
    font-size: 110% !important;
}

header .h_top .h_toplist02>li:last-child .src_box button {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    padding: 3px;
    width: 40px;
    font-size: 100%;
    color: #fff;
    text-align: center;
    background: #000;
    border: 1px solid #000;
    border-radius: 0;
    cursor: pointer;
}

/* ▲ 検索窓 ▲ */

/**** ヘッダーメイン ****/
.head {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin: 0 auto;
    padding: 8px 12px;
    max-width: 1200px;
    width: 100%;
}

@media only screen and (max-width: 1024px) {
    .head {
        padding: 8px 12px 8px 0;
    }

    .sub-index3k .head,
    .sub-index4k .head,
    .sub-index1h .head,
    .sub-index2h .head,
    .sub-index4h .head {
        padding: 8px 12px 12px;
    }

    .sub-index3h .head {
        padding: 24px 12px;
    }
}

@media only screen and (max-width: 1024px) {
    .head {
        min-height: 90px;
    }
}



.is-show .head {
    padding: 4px 12px;
}


.sub-index3k .is-show .head,
.sub-index4k .is-show .head,
.sub-index3h .is-show .head {
    padding: 10px 12px;
}

.inbody .head {
    padding: 8px 0;
    max-width: none;
}

.inbody .is-show .head {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin: 0 auto;
    padding: 4px 12px 12px;
    max-width: 1200px;
}

.head_in {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    width: 100%;
}

.inbody .head_in {
    margin: 0 auto;
    padding: 8px 12px;
    max-width: 1200px;
    width: 100%;
}

@media only screen and (max-width: 1024px) {

    .head_in,
    .inbody .head_in {
        padding: 8px 12px 8px 0;
    }
}

@media only screen and (max-width: 480px) {

    .head_in,
    .inbody .head_in {
        padding: 0px 12px 8px 0;
    }
}

.is-show .head_in,
.inbody .is-show .head_in {
    padding: 0;
    width: 230px;
}

.h_main {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 0;
    max-width: 200px;
    width: 100%;
    overflow: hidden;
}

.is-show .h_main {
    max-width: 150px;
}

.h_main .h1 {
    display: none;
    margin: 0;
    width: 100%;
}

.is-show .h_main .h1,
.inbody .h_main .h1 {
    display: block;
}

.h_main .h1 img {
    max-width: none;
    width: 100%;
}


/* ▽ ホーム ▽ */
.h_main .back_home {
    margin-top: 2px;
    width: 100%;
}

@media only screen and (max-width: 480px) {
    .h_main .back_home {
        max-width: 150px;
    }
}

.h_main .back_home a {
    display: flex;
    margin: 0 auto;
    padding: 1px 15px 0 30px;
    width: fit-content;
    align-items: center;
    font-weight: bold;
    color: #fff;
    text-decoration: none;
    background-color: #000;
    background-image: url(img/back-home.png);
    background-size: 16px;
    background-position: 11px 4px;
    background-repeat: no-repeat;
    border-radius: 13px;
}

.is-show .h_main .back_home a {
    padding: 1px 10px 1px 27px;
    font-size: 87.5%;
    background-size: 14px;
}

@media only screen and (max-width:1024px) {
    .h_main .back_home a {
        padding: 1px 13px 0 32px;
        background-position: 11px 4px;
    }
}

@media only screen and (max-width: 480px) {
    .h_main .back_home a {
        padding: 1px 13px 1px 26px;
        font-size: 75%;
        background-size: 12px;
        background-position: 12px 3.5px;
    }
}

/* △ ホーム △ */

.h_main .mainsite {
    margin: 0;
}

.h_main .mainsite a {
    display: block;
    border: 1px solid #ccc;
    background: #444;
    color: #fff;
    font-size: 85%;
    padding: 3px 10px 2px;
    text-decoration: none;
    border-radius: 4px;
}

.h_main .mainsite li a:hover {
    background: #555;
}

@media only screen and (max-width:1024px) {
    .head_in {
        padding: 0;
        width: 100%;
    }

    .h_main {
        position: relative;
        z-index: 1;
    }

    .h_main .h1 {
        width: 190px;
    }

    .sub-index3h .h_main .h1 {
        width: 290px;
    }

    .h_main .mainsite {
        display: none;
    }
}

@media only screen and (max-width: 480px) {
    .h_main .h1 {
        width: 150px;
    }

    .sub-index3k .h_main .h1 {
        width: 175px;
    }

    .sub-index4k .h_main .h1 {
        width: 240px;
    }

    .sub-index3h .h_main .h1 {
        width: 275px;
    }
}

/* 言語選択 */
.language {
    position: relative;
}

.lang_btn {
    margin: 0;
}

.lang_btn a {
    background: #fff;
    display: inline-block;
    border: 1px solid #ccc;
    border-radius: 2px;
    text-decoration: none;
    padding: 4px 10px;
    letter-spacing: 0;
    transition: all 0.2s;
}

.lang_btn a:hover {
    background: #efefef;
    transition: all 0.2s;
}

.lang_list {
    background: rgba(255, 255, 255);
    border: 1px solid #ccc;
    border-top: 0;
    border-bottom: 0;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    z-index: 100;
    display: none;
    border-radius: 0 0 4px 4px;
}

.lang_list li {
    border-bottom: 1px solid #ccc;
    padding: 0;
    margin: 0;
}

.h_top .h_toplist02 .lang_list li a {
    display: inline-block;
    padding: 2px;
    text-align: center;
    width: 100%;
    border: none;
}

.lang_list li:last-child {
    border-radius: 0 0 4px 4px;
}

/* 検索ボックス */
.h_main .src_box {
    width: 38%;
    margin: 0 0 0 auto;
}

.src_box .q {
    float: left;
    width: calc(100% - 50px) !important;
    margin: 0;
    height: 40px !important;
    padding: 0 6px !important;
    border: 1px solid #000 !important;
    border-right: none;
}

.h_main .src_box #search_button,
.src_box #search_button_sp {
    width: 50px;
    min-height: 40px;
    margin: 0;
    padding: 0;
    background: #000;
    color: #fff;
    font-size: 80%;
    cursor: pointer;
    border: 1px solid #aaa;
    border-left: none;
    white-space: normal;
    border: 1px solid #000;
    border-radius: 0;
}

.h_main .src_box #search_button:hover,
.src_box #search_button_sp:hover {
    background: #006fab;
}

@media only screen and (max-width: 1024px) {
    .h_main .src_box {
        display: none;
    }

    .src_box .q {
        width: calc(100% - 54px) !important;
    }

    .src_box #search_button_sp {
        width: 54px;
    }
}

/**** グローバルナビ ****/

.g_navi {
    display: none;
}

.inbody .g_navi {
    display: block;
    width: 100%;
    background: #fff;
}

.inbody .is-show .g_navi {
    background: none;
}


.is-show .g_navi {
    position: relative;
    display: block;
    width: calc(100% - 230px);
    height: 100%;
    letter-spacing: 0.1em;
    z-index: 1;
}

.is-show .g_navi_in {
    display: flex;
    width: 100%;
}

.inbody .g_navi_in {
    display: flex;
    margin: 0 auto;
    padding: 0 12px;
    max-width: 1200px;
    width: 100%;
}

.inbody .is-show .g_navi_in {
    padding: 0;
}

.g_navi_in>li {
    width: calc(100% / 6);
    margin: 0;
    display: flex;
}

.inbody .g_navi_in>li {
    padding: 10px;
}

.inbody .is-show .g_navi_in>li {
    padding: 0;
}

.g_navi_in>li>a {
    position: relative;
    display: block;
    padding-top: 13px;
    padding-bottom: 11px;
    width: 100%;
    color: #000;
    text-align: center;
    text-decoration: none;
    line-height: 1.5;
    transition: all 0.3s;
    z-index: 2;
}

.inbody .g_navi_in>li>a {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 50px;
}

.inbody .is-show .g_navi_in>li>a {
    min-height: auto;
}

@media only screen and (max-width: 1024px) {

    .g_navi,
    .inbody .g_navi {
        display: none;
    }
}

/* 追従メニュー */
.clone-nav {
    background: rgba(255, 255, 255, 0.9);
    position: fixed !important;
    left: 0;
    top: 0;
    max-width: 100%;
    width: 100%;
    transition: .4s;
    transform: translateY(-170%);
    z-index: 9999;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.is-show {
    transform: translateY(0);
}

.clone-nav .h_top_wrap {
    display: none;
}

.clone-nav .h1 {
    padding: 0;
    flex-shrink: 0;
}

.clone-nav .h1 img {
    width: 100%;
}


.clone-nav .h1 .go_home {
    display: none;
}

.clone-nav .h_shien {
    font-size: 90%;
}

.clone-nav .g_navi_in>li a {
    position: relative;
    padding-top: 6px;
    padding-bottom: 8px;
    letter-spacing: 0;
}

.g_navi_in>li a::before {
    position: absolute;
    bottom: 0;
    left: 1%;
    display: block;
    content: "";
    width: 98%;
    height: 0;
    background: #ffc000;
    border-radius: 2px;
    transition-duration: 0.5s;
}

.inbody .g_navi_in>li a::before {
    bottom: 4px;
}

.inbody .is-show .g_navi_in>li a::before {
    bottom: 0;
}

.g_navi_in>li.active a::before,
.g_navi_in>li a:hover::before {
    height: 4px;
}

.clone-nav .src_box .q,
.clone-nav .head_in .src_box #search_button {
    height: 32px;
    vertical-align: top;
}

.clone-nav:focus-within {
    transform: translateY(0);
}

@media only screen and (max-width: 998px) {
    .clone-nav-in {
        flex-wrap: wrap;
        padding: 10px 0 0;
    }

    .clone-nav .h1 {
        padding: 0 12px 10px;
        width: auto;
    }

    .clone-nav .h1 img {
        width: 250px;
    }

    .clone-nav .g_navi_in {
        width: 100%;
    }
}

@media only screen and (max-width: 1024px) {
    .clone-nav {
        display: none;
    }
}

/**** スマホメニューに関するスタイル ****/
#menu_button {
    position: absolute;
    top: 80px;
    right: 0;
    float: right;
    margin: -64px 10px 0;
    display: inline-block;
}

.sub-index3k #menu_button {
    top: 76px;
}

.sub-index4k #menu_button {
    top: 72px;
}

#menu_button a {
    position: relative;
    background: none;
    font-size: 70%;
    display: inline-block;
    text-decoration: none;
    letter-spacing: -0.5px;
    text-align: center;
    padding-top: 34px;
    min-height: 54px;
    width: 54px;
    border: 1px solid #000;
    border-radius: 4px;
    z-index: 2;
}

#menu_button a .icon_ham {
    position: absolute;
    top: 10px;
    left: 50%;
    margin-left: -15px;
    display: inline-block;
    background: #000;
    height: 3px;
    width: 30px;
    border-radius: 50%;
}

#menu_button a .icon_ham:before,
#menu_button a .icon_ham:after {
    content: '';
    position: absolute;
    left: 50%;
    margin-left: -15px;
    background: #000;
    height: 3px;
    width: 30px;
    border-radius: 50%;
}

#menu_button a .icon_ham:before {
    top: 8px;
}

#menu_button a .icon_ham:after {
    top: 16px;
}

#menu_button a .icon_ham strong.menu_text,
#menu_button a.simple-menu:visited>strong,
#menu_button a.simple-menu:link>strong {
    color: #000 !important;
}

@media print,
screen and (min-width: 1025px) {

    #menu_button,
    #lan_drop {
        display: none !important;
    }
}

#sidr {
    position: fixed;
    top: 0;
    height: 100%;
    z-index: 9999;
    width: 260px;
    overflow-x: hidden;
    overflow-y: auto;
    font-size: 100%;
    background: #fff;
    border-left: 4px solid #000;
    box-sizing: border-box;
    color: #333;
}

@media print,
screen and (min-width: 1025px) {
    #sidr {
        display: none !important;
    }
}

#sidr .sidr-inner {
    padding: 0 0 15px;
}

.sidr.right {
    left: auto;
    right: -260px;
}

#sidr .close {
    text-align: left;
    position: relative;
    padding: 0;
    margin: 0;
}

#sidr .close a {
    background: #000;
    display: inline-block;
    color: #fff;
    padding: 14px 10px 14px 32px;
    position: relative;
    width: 100%;
}

#sidr .close a:before,
#sidr .close a:after {
    content: '';
    background: #fff;
    height: 2px;
    width: 16px;
    position: absolute;
    left: 10px;
    top: 50%;
    margin-top: 0;
    transform: rotate(-45deg);
}

#sidr .close a:after {
    transform: rotate(45deg);
}

#sidr .src_box {
    padding: 10px;
    border-bottom: 3px solid #000;
}

#sidr ul {
    display: block;
    border-bottom: 3px solid #000;
    margin: 0;
    padding: 0;
}

#sidr ul li {
    background: none;
    border-bottom: 1px solid #000;
    display: block;
    text-align: left;
    margin: 0;
    padding: 0;
    position: relative;
}

#sidr ul li::before {
    content: '';
    position: absolute;
    right: 12px;
    top: 50%;
    margin-top: -4px;
    width: 6px;
    height: 6px;
    border-top: 1px solid #999;
    border-right: 1px solid #999;
    transform: rotate(45deg);
}

#sidr ul li:last-child {
    border-bottom: none;
}

#sidr ul li a {
    display: inline-block;
    padding: 12px 19px 12px 10px;
    text-decoration: none;
    width: 100%;
}

#sidr ul li.mainsite {
    background: #eee;
    border-top: 2px solid #000;
    font-size: 85%;
}

#sidr ul.sidr_navi_sub {
    display: flex;
}

#sidr ul.sidr_navi_sub li {
    border-bottom: 0;
    font-size: 85%;
    width: 50%;
}

#sidr ul.sidr_navi_sub li a {
    display: flex;
    align-items: center;
    height: 100%;
    letter-spacing: -0.01em;
}

#sidr ul.sidr_navi_sub li:nth-child(odd) {
    border-right: 1px solid #bbb;
}

/**** 支援機能 ****/
#sidr .side_shien {
    background: #e8f4f9;
}

#sidr ul.sidr_navi02 {
    border-bottom: 0;
    padding: 10px 10px 4px;
    display: flex;
    flex-wrap: wrap;
}

#sidr ul.sidr_navi02 li {
    border: 0;
    margin-right: 1.25%;
    margin-bottom: 6px;
    width: 24%;
}

#sidr ul.sidr_navi02 li:nth-of-type(4n) {
    margin-right: 0;
}

#sidr ul.sidr_navi02 li::before {
    display: none;
}

#sidr ul.sidr_navi02 li a {
    display: inline-block;
    background: #fff;
    border: 1px solid #bbb;
    border-radius: 4px;
    font-size: 70%;
    letter-spacing: -0.01em;
    padding: 6px 2px;
    text-align: center;
}

#sidr ul.sidr_navi03 {
    display: flex;
    flex-wrap: wrap;
    background: #eee;
    border-top: 1px solid #bbb;
}

#sidr ul.sidr_navi03 li {
    border-bottom: 0;
    font-size: 85%;
    width: 50%;
}

#sidr ul.sidr_navi03 li:first-child {
    width: 100%;
}

#sidr ul.sidr_navi03 li:first-child::before {
    display: none;
}

#sidr ul.sidr_navi03 li:nth-child(even) {
    border-right: 1px solid #bbb;
}

#sidr ul.sidr_navi03 li:nth-child(2),
#sidr ul.sidr_navi03 li:nth-child(3) {
    border-top: 1px solid #bbb;
}

#sidr ul.sidr_navi03 a {
    display: flex;
    align-items: center;
    height: 100%;
    letter-spacing: 0;
}

/*********** フッター ***********/
.main_footer {
    margin-top: 46px;
    width: 100%;
    overflow: hidden;
}

.inbody .main_footer {
    margin-top: 90px;
}

@media only screen and (max-width: 1024px) {
    .main_footer {
        min-width: 100%;
    }
}

@media only screen and (max-width:480px) {

    .main_footer,
    .inbody .main_footer {
        margin-top: 50px;
    }
}

/**** ▼▼▼▼ マイページのスタイル ▼▼▼▼ ****/
.online_strage_a {
    padding-bottom: 24px;
}

.online_strage_a .mypage {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 12px;
}

.online_strage_a .mypage_h2_wrapper {
    background-color: #000;
    padding-left: 16px;
    position: relative;
}

.online_strage_a .mypage_title {
    float: left;
    color: #fff;
    margin: 0;
    padding: 0;
    position: absolute;
    z-index: -1;
}

.online_strage_a .mypage_h2_wrapper p {
    float: right;
}

.online_strage_a .mypage_contents {
    padding: 4px 16px 16px;
    background-color: #fff;
    border: 2px solid #000;
    border-top: 0;
}

.online_strage_a .mypage_list li {
    display: inline-block;
    font-size: 85%;
}

.online_strage_a .mypage_list li p.online_strage_title {
    background: #fff;
    border: 1px solid #ccc;
    padding: 2px 8px;
    margin: 0;
    border-radius: 4px;
}

.online_strage_a .online_strage button {
    background: #fff;
    color: #333;
    font-size: 68.75%;
    padding: 2px 4px;
    margin: 12px 0;
    vertical-align: bottom;
}

#body .online_strage_a .online_strage button[type="button"] {
    background: #fff;
    color: #2b3095;
    font-size: 75%;
    padding: 4px 6px;
}

#body .online_strage_a .online_strage button[type="button"]:hover {
    background: #efefef;
    color: #9f0000;
}

@media only screen and (max-width: 1024px) {
    .online_strage_a .mypage {
        width: 100%;
    }
}

/**** ▲▲▲▲ マイページのスタイル ▲▲▲▲ ****/

/**** ▼▼▼▼ トップへ戻る ▼▼▼▼ ****/
.foot_modori {
    margin-top: 21px;
}

.foot_modori .modoriin {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 12px;
    text-align: right;
}

.foot_modori a {
    position: relative;
    display: block;
    margin-left: auto;
    padding: 9px 10px 7px 22px;
    max-width: 175px;
    width: 100%;
    min-height: 30px;
    font-size: 85%;
    letter-spacing: 2px;
    color: #fff;
    text-decoration: none;
    background: #000;
    line-height: 1;
}

.foot_modori a::before {
    position: absolute;
    top: 11px;
    left: 7px;
    display: block;
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 5px 9px 5px;
    border-color: transparent transparent #fff transparent;
}

@media only screen and (max-width: 1024px) {
    .foot_modori .modoriin {
        width: 100%;
    }
}

/**** ▲▲▲▲ トップへ戻る ▲▲▲▲ ****/

/**** ▼▼▼▼ メインフッター ▼▼▼▼ ****/
.foot_wrap {
    padding: 0;
}

.foot {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 12px;
}


/** ▼▼ リンク集 ▼▼ **/
.foot_link {
    margin-top: 38px;
    text-align: center;
}

.foot_link li {
    padding: 0;
    display: inline-block;
    position: relative;
    margin-left: 12px;
    margin-right: 12px;
}

.foot_link li a {
    letter-spacing: 0;
}

/** ▲▲ リンク集 ▲▲ **/

/** ▼▼ フッター情報 ▼▼ **/
.foot_id {
    margin-top: 16px;
}

.foot .address {
    margin-top: 8px;
    text-align: center;
}

.foot .address a[href^="tel:"] {
    cursor: default;
    color: #222;
    text-decoration: none;
}

.foot .address span {
    display: block;
}

.foot .address:first-child span:first-child {
    font-weight: bold;
}

.foot_copy {
    font-size: 85%;
    padding: 8px 12px;
    margin-top: 16px;
    text-align: center;
}

.foot_copyin {
    width: 1000px;
    margin: 0 auto;
}

@media only screen and (max-width: 1024px) {
    .foot {
        padding: 10px;
        width: 100%;
    }

    .foot_copyin {
        padding: 0 10px;
        width: 100%;
    }

    .foot .address a[href^="tel:"] {
        cursor: pointer;
        color: #2b3095;
        text-decoration: underline;
    }
}

/** ▲▲ フッター情報 ▲▲ **/

/**** ▲▲▲▲ メインフッター ▲▲▲▲ ****/

/********************** 領域共通のスタイル **********************/
.main {
    width: 100%;
    margin: 0 auto;
    padding: 0 0 24px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.main h2 {
    color: #fff;
    background: #000;
    padding: 14px 16px;
    font-size: 150%;
}

@media only screen and (max-width: 480px) {
    .main h2 {
        font-size: 125%;
    }
}

.main h2 a {
    color: #fff;
    display: block;
}

.main .h2 {
    background: #000;
    overflow: hidden;
}

.main .h2 p {
    float: right;
    padding: 14px 16px 14px 8px;
    margin: 0;
}

.main .h2 h2 {
    float: left;
}

.main li {
    position: relative;
    padding-left: 16px;
}

.main li::before {
    display: block;
    content: '';
    position: absolute;
    top: .5em;
    left: 0;
    width: 6px;
    height: 6px;
    border-right: 1px solid #999;
    border-bottom: 1px solid #999;
    transform: rotate(-45deg);
}

.main li .list_icon img {
    vertical-align: middle;
    margin-top: -5px;
    margin-right: 4px;
    max-height: 18px;
}

@media only screen and (max-width: 1024px) {
    .main {
        padding: 0 0 24px;
    }
}

/**** タイトル要素 アコーディオンのスタイル ****/
.ac_display {
    display: none;
}

@media print,
screen and (min-width: 769px) {
    .ac_box {
        pointer-events: none !important;
    }

    .ac_box+div {
        display: block !important;
    }
}

@media only screen and (max-width: 768px) {
    .ac_box h2 {
        padding-right: 72px;
    }

    .ac_display {
        display: inline-block;
        position: absolute;
        top: 50%;
        margin: -14px 0 0;
        right: 12px;
        font-size: 72%;
        background: #fff;
        border: 1px solid #ccc;
        z-index: 100;
    }

    .ac_display a {
        display: inline-block;
        position: relative;
        text-decoration: none;
        padding: 4px 4px 4px 18px;
    }

    .ac_display::before,
    .ac_display::after {
        content: '';
        background: #555;
        position: absolute;
        left: 4px;
        top: 11px;
        height: 2px;
        width: 10px;
    }

    .ac_display::after {
        transform: rotate(90deg);
    }

    .ac_box+div {
        display: none;
    }

    .ac_box {
        position: relative;
        width: 100%;
        overflow: hidden;
    }

    .ac_box.active p::after {
        display: none;
    }
}

/**** 分類1のスタイル ****/
@media only screen and (max-width: 1024px) {
    .main .category_p01 {
        padding: 0 10px;
    }
}

/**** ▼▼▼▼ 緊急情報のスタイル ▼▼▼▼ ****/
.emergency {
    margin: 24px auto 0;
    padding: 0 12px;
    max-width: 1200px;
    width: 100%;
}

.main .emergency h2,
.main .emergency .h2 {
    background: #a90000;
    color: #fff;
}

.main .emergency .h2 {
    overflow: hidden;
}

.main .emergency .h2 p {
    padding: 8px 16px 8px 8px;
    margin: 0;
}

.main .emergency_lower {
    border: 2px solid #a90000;
    border-top: none;
    padding: 4px 16px 16px;
    background: #fff;
}

/**** ▲▲▲▲ 緊急情報のスタイル ▲▲▲▲ ****/

/**** 画像リストのスタイル ****/
.ilist {
    margin-top: 24px;
}

.main .ilist_lower ul {
    display: flex;
    flex-flow: row wrap;
}

.main .ilist_lower ul>li {
    display: flex;
    padding-left: 0;
    margin-right: 12px;
    text-align: center;
    width: calc((100% - 60.1px) / 6);
}

.main .ilist_lower ul>li:nth-of-type(6n) {
    margin-right: 0;
}

.main .ilist_lower ul>li::before {
    display: none;
}

.main .ilist_lower ul>li a {
    display: block;
    background: #e8f4f9;
    padding: 16px;
    width: 100%;
    text-decoration: none;
}

.main .ilist_lower .ilist_right {
    margin-top: 8px;
}

.main .ilist_lower ul>li .ilist_title {
    text-align: center;
}

.main .ilist_lower ul>li .ilist_text {
    text-align: left;
    font-size: 85%;
    margin-top: 0;
}

.ilist .ilist_title {
    margin-top: 0;
}

@media only screen and (max-width: 1024px) {
    .main .ilist_lower ul>li {
        width: calc((100% - 36.1px) / 3);
    }

    .main .ilist_lower ul>li:nth-of-type(3n) {
        margin-right: 0;
    }
}

@media only screen and (max-width: 480px) {
    .main .ilist_lower ul>li:nth-of-type(n) {
        margin-right: 0;
        width: 100%;
    }
}

/**** 画像リスト2のスタイル ****/
.ilist2 {
    margin-top: 24px;
}

.main .ilist2_lower ul {
    display: flex;
    flex-flow: row wrap;
}

.main .ilist2_lower ul>li {
    display: flex;
    padding-left: 0;
    margin-right: 12px;
    text-align: center;
    width: calc((100% - 36.1px) / 4);
}

.main .ilist2_lower ul>li:nth-of-type(4n) {
    margin-right: 0;
}

.main .ilist2_lower ul>li::before {
    display: none;
}

.main .ilist2_lower ul>li a {
    padding: 16px;
    width: 100%;
    background: #e8f4f9;
    display: flex;
    text-decoration: none;
}

.main .ilist2_lower ul>li .ilist_left {
    align-self: center;
    width: 40%;
}

.main .ilist2_lower ul>li .ilist_right {
    align-self: center;
    width: 54%;
    margin-left: 6%;
}

.ilist2 .ilist_title {
    margin-top: 0;
}

@media only screen and (max-width: 1024px) {
    .main .ilist2_lower ul>li {
        width: calc((100% - 24.1px) / 2);
    }

    .main .ilist2_lower ul>li:nth-of-type(3n) {
        margin-right: 12px;
    }

    .main .ilist2_lower ul>li:nth-of-type(even) {
        margin-right: 0;
    }
}

@media only screen and (max-width: 480px) {
    .main .ilist2_lower ul>li:nth-of-type(n) {
        margin-right: 0;
        width: 100%;
    }
}

/**** ▼▼▼▼ 分類のスタイル ▼▼▼▼ ****/
.category,
.category2,
.category3,
.category4,
.category5 {
    margin-top: 24px;
}

.category2 {
    margin: 24px auto 0;
    padding: 0 12px;
    max-width: 1200px;
    width: 100%;
}

.main .category_3_ul {
    font-size: 85%;
}

.main .category_lower {
    padding: 4px 16px 16px;
    background: #fff;
    border: 2px solid #000;
    border-top: none;
}

/**** ▲▲▲▲ 分類のスタイル ▲▲▲▲ ****/

/**** 各課の窓口のスタイル ****/
.kakuka {
    margin-top: 24px;
}

/**** 催し物・講座のスタイル ****/
.event {
    margin: 24px auto 0;
    padding: 0 12px;
    max-width: 1200px;
    width: 100%;
}

.main .event_lower {
    padding: 4px 16px 16px;
    background: #fff;
    border: 2px solid #000;
    border-top: none;
}

.main .event_lower li {
    padding-left: 0;
}

.main .event_lower li::before {
    display: none;
}

.main .event_lower li .eve_cate {
    display: inline-block;
    font-size: 85%;
    background: #007bbb;
    color: #fff;
    border-radius: 4px;
    padding: 4px 4px 2px;
    margin-right: 8px;
    text-align: center;
    vertical-align: top;
    line-height: 1;
    min-width: 80px;
}

.main .event_lower .event_month li {
    margin-right: 8px;
    display: inline-block;
    font-size: 130%;
    margin-top: 8px;
    margin-bottom: 4px;
}

.main .event_lower .event_month img {
    vertical-align: middle;
}

.event_month li.pre a,
.event_month li.next a {
    display: inline-block;
    background: #E6E6E6;
    border: 1px solid #aaa;
    font-size: 81.25%;
    margin-bottom: 10px;
    text-decoration: none;
    padding: 0 5px;
    position: relative;
}

.event_month li.pre a {
    padding-left: 16px;
}

.event_month li.next a {
    padding-right: 15px;
}

.event_month li.pre a:before,
.event_month li.next a:before {
    content: '';
    position: absolute;
    top: 50%;
    margin-top: -4px;
    width: 0;
    height: 0;
    border-style: solid;
}

.event_month li.pre a:before {
    left: 4px;
    border-width: 4px 6px 4px 0;
    border-color: transparent #555 transparent transparent;
}

.event_month li.next a:before {
    right: 4px;
    border-width: 4px 0 4px 6px;
    border-color: transparent transparent transparent #555;
}

/**** イベントカレンダーのスタイル ****/
.calendar {
    margin: 24px auto 0;
    padding: 0 12px;
    max-width: 1200px;
    width: 100%;
}

.main .calendar_lower {
    padding: 4px 16px 16px;
    background: #fff;
    border: 2px solid #000;
    border-top: none;
    overflow: auto;
}

.main .calendar_lower li {
    padding-left: 0;
}

.main .calendar_lower li::before {
    display: none;
}

.main .calendar_lower .event_month li {
    margin-right: 8px;
    display: inline-block;
}

.main .calendar_lower .event_month img {
    vertical-align: baseline;
}

.main .calendar table {
    width: 100%;
}

.main .calendar caption {
    display: none;
}

.main .calendar th {
    border: 1px solid #ccc;
    text-align: center;
}

.main .calendar th img {
    vertical-align: middle;
}

.main .calendar td {
    border: 1px solid #ccc;
    text-align: center;
}

.main .calendar .sun {
    background: #ffd8d6;
}

.main .calendar .sat {
    background: #d9e4fc;
}

.main .calendar .today {
    background: #c9171e;
    color: #fff;
}

.main .calendar .today>strong {
    color: #fff;
}

/**** ▼▼▼▼ 新着情報のスタイル ▼▼▼▼ ****/
.new {
    margin: 24px auto 0;
    padding: 0 12px;
    max-width: 1200px;
    width: 100%;
}

.main .new_lower {
    padding: 4px 16px 16px;
    background: #fff;
    border: 2px solid #000;
    border-top: none;
}

.main .new div.date {
    margin-left: 0;
}

.main .new ul li {
    overflow: hidden;
}

.main .new ul li.catch_lst .new_lst {
    margin-right: 100px;
}

.main .new ul li.catch_lst .new_img {
    float: right;
    margin-top: 0;
}

/**** ▲▲▲▲ 新着情報のスタイル ▲▲▲▲ ****/

/**** ▼▼▼▼ トピックスのスタイル ▼▼▼▼ ****/
.topics {
    margin: 24px auto 0;
    padding: 0 12px;
    max-width: 1200px;
    width: 100%;
}

.main .topics_lower {
    padding: 4px 16px 16px;
    background: #fff;
    border: 2px solid #000;
    border-top: none;
}

.main .topics div.date {
    margin-left: 0;
}

.main .topics ul li.catch_lst .topics_lst {
    margin-right: 100px;
}

.main .topics ul li.catch_lst .topics_img {
    float: right;
    margin-top: 0;
}

/**** ▲▲▲▲ トピックスのスタイル ▲▲▲▲ ****/

/**** ▼▼▼▼ 新着情報・トピックス一覧のスタイル ▼▼▼▼ ****/
.main .more {
    font-size: 85%;
    margin-top: 16px;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    margin-left: auto;
}

.main .more li {
    padding: 0;
    margin: 8px 0 0 8px;
    min-width: 180px;
}

.main .more li::before {
    display: none;
}

.main .more li a {
    background: #fff;
    border: 2px solid #000;
    display: inline-block;
    padding: 8px;
    text-align: center;
    text-decoration: none;
    width: 100%;
}

.main .more li a:hover {
    background: #e8f4f9;
}

.main .more li.rss span {
    background: url(../images/rss_o.svg) no-repeat left center;
    background-size: 12px 12px;
    padding-left: 20px;
}

@media only screen and (max-width: 480px) {
    .main .more {
        max-width: 100%;
    }

    .main .more li {
        margin-left: 0;
        width: 100%;
    }

    .main .more li a {
        padding: 10px;
    }
}

/**** ▲▲▲▲ 新着情報・トピックス一覧のスタイル ▲▲▲▲ ****/

/**** ▼▼▼▼ ピックアップ1・ピックアップ2のスタイル ▼▼▼▼ ****/

/**** ▼▼ 共通スタイル ▼▼ ****/
.pickup,
.pickup2 {
    margin: 24px auto 0;
    padding: 0 12px;
    max-width: 1200px;
    width: 100%;
}

.main .pickup_lower,
.main .pickup2_lower {
    padding: 4px 16px 16px;
    background: #fff;
    border: 2px solid #000;
    border-top: none;
}

.main .pickup_lower .pickup_sub,
.main .pickup2_lower .pickup_sub {
    margin-top: 20px;
}

.main .pickup_lower .pickup_sub:first-child,
.main .pickup2_lower .pickup_sub:first-child {
    margin-top: 12px;
}

.main .pickup_lower .pickup_sub h3,
.main .pickup2_lower .pickup_sub h3 {
    background: #eee;
    padding: 4px 6px;
    font-size: 110%;
}

.main .pickup_lower .pickup_sub p,
.main .pickup2_lower .pickup_sub p {
    font-size: 85%;
    margin-top: 6px;
}

/**** ▲▲ 共通スタイル ▲▲ ****/

/**** ▼▼ ピックアップ1のスタイル ▼▼ ****/
/**** ▲▲ ピックアップ1のスタイル ▲▲ ****/

/**** ▼▼ ピックアップ2のスタイル ▼▼ ****/
/**** ▲▲ ピックアップ2のスタイル ▲▲ ****/

/**** ▲▲▲▲ ピックアップ1・ピックアップ2のスタイル ▲▲▲▲ ****/

/**** ▼▼▼▼ ランキングのスタイル ▼▼▼▼ ****/
.ranking {
    margin: 24px auto 0;
    padding: 0 12px;
    max-width: 1200px;
    width: 100%;
}

.main .ranking_lower {
    padding: 4px 16px 16px;
    background: #fff;
    border: 2px solid #000;
    border-top: none;
}

.main .ranking_lower ol {
    margin-left: 18px;
}

.main .ranking_lower ol li {
    list-style-type: decimal;
    padding-left: 0;
}

.main .ranking_lower ol li::before {
    display: none;
}

/**** ▲▲▲▲ ランキングのスタイル ▲▲▲▲ ****/

/**** ▼▼▼▼ 人口・世帯数のスタイル ▼▼▼▼ ****/
.j_s {
    margin: 24px auto 0;
    padding: 0 12px;
    max-width: 1200px;
    width: 100%;
}

.main .j_s_lower {
    padding: 4px 16px 16px;
    background: #fff;
    border: 2px solid #000;
    border-top: none;
}

.main .j_s li {
    padding-left: 0;
}

.main .j_s li::before {
    display: none;
}

.main .j_s li strong {
    margin-right: 8px;
}

.main .j_s p {
    font-size: 85%;
}

/**** ▲▲▲▲ 人口・世帯数のスタイル ▲▲▲▲ ****/

/**** バナー広告のスタイル ****/
.bana {
    margin-top: 24px;
}

.bana_lower {
    border: 2px solid #007bbb;
    border-top: none;
    padding: 4px 16px 16px;
    text-align: center;
}

.bana .bana_img {
    display: inline-block;
}

.bana .bana_img img {
    width: 100%;
}

.main .bana ul {
    display: flex;
    flex-wrap: wrap;
}

.main .bana li {
    padding-left: 0;
    width: 154px;
    margin-right: 8px;
}

.main .bana li:nth-of-type(6n) {
    margin-right: 0;
}

.main .bana li::before {
    display: none;
}

.main .bana li .window {
    margin-top: 5px;
}

@media only screen and (max-width: 1024px) {
    .main .bana li {
        margin: 12px 0 0;
        padding: 0 4px;
        width: calc(100% / 3);
    }
}

@media only screen and (max-width: 480px) {
    .main .bana li {
        width: 50%;
    }
}

/**** RSSのスタイル ****/
.rss {
    margin-top: 24px;
}

.rss .rss_lower {
    border: 2px solid #007bbb;
    border-top: none;
    padding: 4px 16px 16px;
}

.main .rss li {
    padding-left: 0;
}

.main .rss li::before {
    display: none;
}

/**** ▼▼▼▼ 外部RSSのスタイル ▼▼▼▼ ****/
.rssfide {
    margin: 24px auto 0;
    padding: 0 12px;
    max-width: 1200px;
    width: 100%;
}

.main .rssfide .h3 {
    overflow: hidden;
}

.main .rssfide .h3 h3 {
    float: left;
    margin: 10px 12px 10px 0;
}

.main .rssfide .h3 p {
    float: left;
    padding: 8px 0;
    margin: 0;
}

.rssfide .rssfide_lower {
    padding: 4px 16px 16px;
    background: #fff;
    border: 2px solid #000;
    border-top: none;
}

.rssfide .rssfide_management {
    background: #efefef;
    font-size: 85%;
    padding: 8px;
    margin-top: 12px;
}

.rssfide .rssfide_management .title {
    margin: 0 0 8px;
    padding: 0 0 4px;
    border-bottom: 1px solid #aaa;
}

.rssfide .rssfide_management .rssfide_copy {
    margin-top: 6px;
}

.main .rssfide .rssfide_management li {
    padding: 0;
    margin: 0;
}

.main .rssfide .rssfide_management li::before {
    display: none;
}

.main .rssfide .rssfide_list li p {
    padding: 0;
    margin: 0;
}

.main .rssfide .rssfide_list li .list p {
    font-size: 85%;
    margin-top: 4px;
}

/**** RSSアイコンのスタイル ****/
a.rss_icon,
a.rss_icon2 {
    background: #FF8F21;
    display: inline-block;
    color: #fff;
    text-decoration: none;
    text-shadow: 1px 1px 1px #b45c00, -1px 1px 1px #b45c00, 1px -1px 1px #b45c00, -1px -1px 1px #b45c00, 1px 0 1px #b45c00, 0px 1px 1px #b45c00, -1px 0 1px #b45c00, 0 -1px 1px #b45c00;
    vertical-align: middle;
    padding: 5px 5px 5px 7px;
    line-height: 1.1;
    position: relative;
    vertical-align: middle;
}

a.rss_icon {
    font-size: 90%;
}

a.rss_icon2 {
    font-size: 68.75%;
    padding: 3px 28px 1px 6px;
}

a.rss_icon img {
    margin-left: 4px;
    margin-top: -3px;
    height: auto;
    width: 16px;
    vertical-align: middle;
}

a.rss_icon2 img {
    position: absolute;
    top: 50%;
    margin-top: -9px;
    right: 6px;
    height: auto;
    width: 16px;
    vertical-align: middle;
}

/**** ▲▲▲▲ 外部RSSのスタイル ▲▲▲▲ ****/

/**** ▼▼▼▼ リンク・画像領域（画像）のスタイル ▼▼▼▼ ****/
.image {
    text-align: center;
    margin-top: 24px;
}

/**** ▲▲▲▲ リンク・画像領域（画像）のスタイル ▲▲▲▲ ****/

.main .image h2 {
    background: none;
    padding: 0;
}

.image .image_img {
    display: block;
}

/**** ▼▼▼▼ リンク・画像領域（テキスト）のスタイル ▼▼▼▼ ****/
.link {
    margin: 24px auto 0;
    padding: 0 12px;
    max-width: 1200px;
    width: 100%;
}

/**** ▲▲▲▲ リンク・画像領域（テキスト）のスタイル ▲▲▲▲ ****/

/**** RSS一覧のスタイル ****/
.rss_list {
    margin-top: 24px;
}

/**** ▼▼▼▼ オプションのスタイル ▼▼▼▼ ****/
.option {
    margin: 24px auto 0;
    padding: 0 12px;
    max-width: 1200px;
    width: 100%;
}

.main .option_lower {
    padding: 4px 16px 16px;
    background: #fff;
    border: 2px solid #000;
    border-top: none;
}

/**** ▲▲▲▲ オプションのスタイル ▲▲▲▲ ****/

/**** FAQ（よくある質問）のスタイル ****/
.faq {
    margin-top: 24px;
}

/**** 新着FAQ ****/
.faq_new {
    margin-top: 24px;
}

.main .faq_new_lower {
    border: 2px solid #007bbb;
    border-top: none;
    padding: 4px 16px 16px;
}

.main .faq_new_lower p {
    font-size: 85%;
    margin-top: 4px;
}

/**** 見られているFAQのスタイル ****/
.popular {
    margin-top: 24px;
}

.main .popular_lower {
    border: 2px solid #007bbb;
    border-top: none;
    padding: 4px 16px 16px;
}

.main .popular_lower p {
    font-size: 85%;
    margin-top: 4px;
}

/********************** 領域1個別のスタイル **********************/
@media print,
screen and (min-width: 769px) {
    .main .zone0102 .zone01 .ilist_lower ul>li {
        margin-right: 0;
        width: 100%;
    }

    .main .zone0102 .zone01 .ilist2_lower ul>li {
        margin-right: 0;
        width: 100%;
    }

    .main .zone0102 .zone01 .more li {
        width: calc(100% - 2px);
    }

    .main .zone0102 .zone01 .bana ul {
        justify-content: center;
    }
}

/********************** 領域2個別のスタイル **********************/
@media print,
screen and (min-width: 769px) {
    .main .zone0102 .zone02 .ilist_lower ul>li {
        width: calc((100% - 24.1px) / 3);
    }

    .main .zone0102 .zone02 .ilist_lower ul>li:nth-of-type(3n) {
        margin-right: 0;
    }

    .main .zone0102 .zone02 .ilist2_lower ul>li {
        width: calc((100% - 12.1px) / 2);
    }

    .main .zone0102 .zone02 .ilist2_lower ul>li:nth-of-type(even) {
        margin-right: 0;
    }
}

/********************** 領域3個別のスタイル **********************/

/********************** 領域4個別のスタイル **********************/


/********************** ▼▼▼▼▼▼▼▼▼▼▼▼ トップページ ▼▼▼▼▼▼▼▼▼▼▼▼ **********************/

/**************** ▼▼▼▼▼▼▼▼ メインビジュアルとメインテキスト・メイン地図 ▼▼▼▼▼▼▼▼ ****************/

/************ ▼▼▼▼▼ メインビジュアル ▼▼▼▼▼ ************/
.main .h1-title {
    margin-top: 0;
    background: #fff;
}


.main .h1-title h1 {
    margin: 0 auto;
    max-width: 1200px;
    width: 100%;
}

@media only screen and (max-width: 1280px) {
    .main .h1-title h1 {
        max-width: 1070px;
    }
}

.main .h1-title h1 img {
    max-width: none;
    width: 100%;
}

/************ ▲▲▲▲▲ メインビジュアル ▲▲▲▲▲ ************/

/************ ▼▼▼▼▼ メインテキスト ▼▼▼▼▼ ************/
.main .main_text {
    margin-top: 50px;
}

.main .main_text p {
    margin: 24px auto 0;
    text-align: center;
}

@media only screen and (max-width: 480px) {
    .main .main_text p {
        margin: 16px auto;
    }
}

.main .main_text p:first-child {
    margin-top: 0;
}

.main .main_text p span {
    margin-right: 12px;
}

.main .main_text p span:last-child {
    margin-right: 0;
}

@media only screen and (max-width: 480px) {}

/************ ▲▲▲▲▲ メインテキスト ▲▲▲▲▲ ************/

/************ ▼▼▼▼▼ メイン地図 ▼▼▼▼▼ ************/
.main .main_map {
    margin: 50px auto 0;
    padding: 0 12px;
    max-width: 600px;
    width: 100%;
}

.main .main_map img {
    max-width: none;
    width: 100%;
}

/************ ▲▲▲▲▲ メイン地図 ▲▲▲▲▲ ************/

/**************** ▲▲▲▲▲▲▲▲ メインビジュアルとテキスト・メイン地図 ▲▲▲▲▲▲▲▲ ****************/

/**************** ▼▼▼▼▼▼▼▼ メニュー ▼▼▼▼▼▼▼▼ ****************/
.main .main_menu {
    position: relative;
    margin: 56px auto 0;
    padding: 0 12px;
    max-width: 1200px;
    width: 100%;
}

.main .main_menu::before,
.main .main_menu::after {
    position: absolute;
    top: 30px;
    display: block;
    content: "";
    width: calc(50% - 78px);
    height: 1px;
    background: #000;
}

@media only screen and (max-width: 480px) {

    .main .main_menu::before,
    .main .main_menu::after {
        width: calc(50% - 72px);
    }
}

.main .main_menu::before {
    left: 12px;
}

.main .main_menu::after {
    right: 12px;
}

/************ ▼▼▼▼▼ タイトル ▼▼▼▼▼ ************/
.main .main_menu h2 {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 16px;
    max-width: 138px;
    width: 100%;
    text-align: center;
    color: #000;
    background: transparent;
}

@media only screen and (max-width: 480px) {
    .main .main_menu h2 {
        margin-bottom: 6px;
        padding: 0 16px;
        max-width: 120px;
    }
}

/******** ▼▼▼  ▼▼▼ ********/
/******** ▲▲▲  ▲▲▲ ********/

/************ ▲▲▲▲▲ タイトル ▲▲▲▲▲ ************/

/************ ▼▼▼▼▼ 項目 ▼▼▼▼▼ ************/
.main .main_menu .ilist_lower ul {
    margin: 0 auto;
    max-width: 1030px;
    width: 100%;
}

.main .main_menu .ilist_lower ul>li {
    margin-right: auto;
    width: calc((100% - 60px) / 3);
}

.main .main_menu .ilist_lower ul>li:nth-child(3n) {
    margin-right: 0;
}

.main .main_menu .ilist_lower ul>li:nth-child(4),
.main .main_menu .ilist_lower ul>li:nth-child(5),
.main .main_menu .ilist_lower ul>li:nth-child(6) {
    margin-top: 60px;
}

@media only screen and (max-width: 768px) {

    .main .main_menu .ilist_lower ul>li,
    .main .main_menu .ilist_lower ul>li:nth-child(3n) {
        margin-right: auto;
        width: calc((100% - 20px) / 2);
    }

    .main .main_menu .ilist_lower ul>li:nth-child(2n) {
        margin-right: 0;
    }

    .main .main_menu .ilist_lower ul>li:nth-child(3),
    .main .main_menu .ilist_lower ul>li:nth-child(4),
    .main .main_menu .ilist_lower ul>li:nth-child(5),
    .main .main_menu .ilist_lower ul>li:nth-child(6) {
        flex-flow: row wrap;
        margin-top: 40px;
    }
}

.main .main_menu .ilist_lower ul>li a {
    padding: 0;
    background: transparent;
}

.main .main_menu .ilist_lower ul>li a .ilist_in {
    display: flex;
    flex-direction: column;
    height: 100%;
}


/******** ▼▼▼ 画像 ▼▼▼ ********/
.main .main_menu .ilist_lower .ilist_left {
    border-radius: 6px;
    overflow: hidden;
}

.main .main_menu .ilist_lower a .ilist_left img {
    max-width: none;
    width: 100%;
    transition-duration: 0.5s;
}

.main .main_menu .ilist_lower a:hover .ilist_left img {
    transform: scale(1.1);
}

/******** ▲▲▲ 画像 ▲▲▲ ********/

/******** ▼▼▼ テキスト ▼▼▼ ********/
.main .main_menu .ilist_lower .ilist_right {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    position: relative;
    margin-top: 12px;
    padding: 2px 2px 2px 16px;
}

.main .main_menu .ilist_lower .ilist_right::before {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    content: "";
    width: 4px;
    height: 100%;
    background: #000;
}

@media only screen and (max-width: 480px) {
    .main .main_menu .ilist_lower .ilist_right::before {
        width: 3px;
    }
}

.main .main_menu .ilist_lower ul>li a .ilist_title {
    text-align: left;
    text-decoration: none;
    color: #000;
    font-size: 113%;
    font-weight: bold;
}

.main .main_menu .ilist_lower ul>li .ilist_text {
    margin-top: 10px;
    font-size: 87.5%;
    color: #000;
}



/******** ▲▲▲ テキスト ▲▲▲ ********/

/******** ▼▼▼ ボタン ▼▼▼ ********/
.main .main_menu .ilist_lower ul>li .ilist_btn {
    position: relative;
    display: inline-block;
    margin-top: 12px;
    margin-left: auto;
    padding: 3px 25px 3px 12px;
    width: fit-content;
    font-size: 87.5%;
    color: #fff;
    background: #000;
    border-radius: 13px;
}

.main .main_menu .ilist_lower ul>li .ilist_btn::before {
    position: absolute;
    top: 7px;
    right: 12px;
    display: block;
    content: "";
    width: 7px;
    height: 11px;
    background-image: url(img/btn-arrow.png);
    background-size: cover;
}

/******** ▲▲▲ ボタン ▲▲▲ ********/

/************ ▲▲▲▲▲ 項目 ▲▲▲▲▲ ************/

/**************** ▲▲▲▲▲▲▲▲ メニュー ▲▲▲▲▲▲▲▲ ****************/

/**************** ▼▼▼▼▼▼▼▼ SNS ▼▼▼▼▼▼▼▼ ****************/
.main .main_sns {
    position: relative;
    margin: 80px auto 0;
    padding: 0 12px;
    max-width: 1200px;
    width: 100%;
}

.main .main_sns::before,
.main .main_sns::after {
    position: absolute;
    top: 30px;
    display: block;
    content: "";
    width: calc(50% - 80px);
    height: 1px;
    background: #000;
}

@media only screen and (max-width: 480px) {

    .main .main_sns::before,
    .main .main_sns::after {
        width: calc(50% - 72px);
    }
}


.main .main_sns::before {
    left: 12px;
}

.main .main_sns::after {
    right: 12px;
}

/************ ▼▼▼▼▼ タイトル ▼▼▼▼▼ ************/
.main .main_sns h2 {
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 18px;
    max-width: 138px;
    width: 100%;
    color: #000;
    text-align: center;
    background: transparent;
}

@media only screen and (max-width: 480px) {
    .main .main_sns h2 {
        padding: 0 16px;
        max-width: 120px;
    }
}

/************ ▲▲▲▲▲ タイトル ▲▲▲▲▲ ************/

/************ ▼▼▼▼▼ 項目 ▼▼▼▼▼ ************/
.main .main_sns .ilist_lower ul {
    margin: 0 auto;
    max-width: 1010px;
    width: 100%;
}

@media only screen and (max-width: 1024px) {
    .main .main_sns .ilist_lower ul {
        justify-content: center;
    }
}

.main .main_sns .ilist_lower ul>li {
    margin-right: 16px !important;
    width: calc((100% - 80px) / 6) !important;
}

.main .main_sns .ilist_lower ul>li:last-child {
    margin-right: 0 !important;
}

@media only screen and (max-width: 1024px) {
    .main .main_sns .ilist_lower ul>li {
        margin-right: 16px;
        width: calc((100% - 32px) / 3) !important;
    }

    .main .main_sns .ilist_lower ul>li:nth-child(3n) {
        margin-right: 0 !important;
    }
}

.main .main_sns .ilist_lower ul>li a {
    padding: 0;
    background: transparent;
}

/******** ▼▼▼ 画像 ▼▼▼ ********/
.main .main_sns .ilist_left {
    padding: 30px;
}

.main .main_sns .ilist_left img {
    max-width: 64px;
    width: 100%;
}

/* テレビはむら */

.main .main_sns li:last-child .ilist_left {
    padding: 25px;
}

.main .main_sns li:last-child .ilist_left img {
    max-width: 74px;
}

/******** ▲▲▲ 画像 ▲▲▲ ********/

/************ ▲▲▲▲▲ 項目 ▲▲▲▲▲ ************/

/************ ▼▼▼▼▼ YouTube ▼▼▼▼▼ ************/
.main .free_youtube {
    position: relative;
    margin: 70px auto;
    padding: 0 12px;
    max-width: 1200px;
    width: 100%;
}


@media only screen and (max-width: 480px) {
    .main .free_youtube {
        margin: 40px 0;
    }
}

/******** ▼▼▼ タイトル ▼▼▼ ********/
.main .free_youtube h2 {
    display: none;
}

/******** ▲▲▲ タイトル ▲▲▲ ********/
.main .free_youtube p {
    margin: 0 auto;
    margin-bottom: 10px;
    max-width: 560px;
    text-align: center;
}

.main .free_youtube .youtube_box {
    margin: 0 auto;
    max-width: 560px;
    width: 100%;
}


/******** ▼▼▼ youtube動画設定 ▼▼▼ ********/
.main .youtube_box .youtube_item,
.inbody.inkiji .youtube_box .youtube_item {
    position: relative;
    width: 100%;
    height: 0;
    padding-top: 56.25%;
}

.inbody.inkiji .youtube_box {
    margin-top: 24px;
    max-width: 560px;
    width: 100%;
}

.main .youtube_box .youtube_item iframe,
.inbody.inkiji .youtube_box .youtube_item iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/******** ▲▲▲ youtube動画設定 ▲▲▲ ********/

/************ ▲▲▲▲▲ YouTube ▲▲▲▲▲ ************/

/**************** ▲▲▲▲▲▲▲▲ SNS ▲▲▲▲▲▲▲▲ ****************/

/**************** ▼▼▼▼▼▼▼▼ おすすめ情報 ▼▼▼▼▼▼▼▼ ****************/
.main .recommend_info {
    position: relative;
    margin: 70px auto;
    padding: 0 12px;
    max-width: 1200px;
    width: 100%;
}

.main .recommend_info::before,
.main .recommend_info::after {
    position: absolute;
    top: 30px;
    display: block;
    content: "";
    width: calc(50% - 102px);
    height: 1px;
    background: #000;
}

@media only screen and (max-width: 480px) {

    .main .recommend_info::before,
    .main .recommend_info::after {
        width: calc(50% - 94px);
    }
}

.main .recommend_info::before {
    left: 12px;
}

.main .recommend_info::after {
    right: 12px;
}

.main .recommend_info h2 {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 16px;
    max-width: 190px;
    width: 100%;
    text-align: center;
    color: #000;
    background: transparent;
}

@media only screen and (max-width: 480px) {
    .main .recommend_info h2 {
        margin-bottom: 12px;
        padding: 0 16px;
        max-width: 164px;
    }
}

.main .recommend_info .pickup_lower {
    margin: 0 auto;
    padding: 13px 18px;
    max-width: 600px;
    width: 100%;
    background: none;
    border: none;
    border-left: 4px solid #000;
}

@media only screen and (max-width:480px) {
    .main .recommend_info .pickup_lower {
        border-left: 3px solid #000;
    }
}

.main .recommend_info .pickup_lower .pickup_sub:first-child {
    margin-top: 0;
}

.main .recommend_info .pickup_lower .pickup_sub h3,
.main .recommend_info .pickup_lower .pickup_sub p {
    display: none;
}

.main .recommend_info .pickup_lower li {
    padding-left: 0;
}

.main .recommend_info .pickup_lower li:first-child {
    margin-top: 0;
}

.main .recommend_info .pickup_lower li::before {
    display: none;
}

/**************** ▲▲▲▲▲▲▲▲ おすすめ情報 ▲▲▲▲▲▲▲▲ ****************/

/**************** ▼▼▼▼▼▼▼▼ バナー広告 ▼▼▼▼▼▼▼▼ ****************/
.main .bana {
    position: relative;
    margin: 130px auto 0;
    padding: 0 12px;
    max-width: 1200px;
    width: 100%;
    background: #fff;
    border: 1px solid #000;
}

@media only screen and (max-width: 480px) {
    .main .bana {
        margin: 80px 0 0;
    }
}

.main .bana h2 {
    position: relative;
    display: flex;
    justify-content: center;
    margin: -33px auto 0;
    padding: 15px 16px 0;
    max-width: 168px;
    width: 100%;
    min-height: 40px;
    font-size: 150%;
    color: #000;
    background: #fff;
    border: 1px solid #000;
    border-bottom: 0;
    border-radius: 40px 40px 0 0;
}

@media only screen and (max-width: 480px) {
    .main .bana h2 {
        font-size: 125%;
    }
}

.main .bana h2::after {
    position: absolute;
    top: 32px;
    left: -1%;
    display: block;
    content: "";
    width: 102%;
    height: 19px;
    border-left: 6px solid #fff;
    border-right: 6px solid #fff;
}

.main .bana .bana_lower {
    margin-top: 0;
    border: none;
}

/**************** ▲▲▲▲▲▲▲▲ バナー広告 ▲▲▲▲▲▲▲▲ ****************/

/**************** ▼▼▼▼▼▼▼▼ 【共通スタイル】h2 ▼▼▼▼▼▼▼▼ ****************/
@media only screen and (max-width: 480px) {

    /*メニュー*/
    .main .main_menu::before,
    .main .main_menu::after,
    /*情報発信*/
    .main .main_sns::before,
    .main .main_sns::after,
    /*おすすめ情報*/
    .main .recommend_info::before,
    .main .recommend_info::after {
        top: 13px;
    }
}

/**************** ▲▲▲▲▲▲▲▲ 【共通スタイル】h2 ▲▲▲▲▲▲▲▲ ****************/

/********************** ▲▲▲▲▲▲▲▲▲▲▲▲ トップページ ▲▲▲▲▲▲▲▲▲▲▲▲ **********************/

/********************** 中ページのスタイル **********************/
body.inbody {}

/**** パンくずリスト・あしあとのスタイル ****/
.pankuzu_lower,
.footstep_lower {
    font-size: 85%;
    display: flex;
    align-items: flex-start;
    margin: 8px auto;
    padding: 0 12px;
    max-width: 1200px;
    width: 100%;
}

@media only screen and (max-width: 768px) {
    .footstep_lower {
        display: none;
    }
}

.pankuzu_tit,
.footstep_tit {
    background: #efefef;
    border-radius: 2px;
    flex-shrink: 0;
    display: inline-block;
    font-size: 85%;
    padding: 3px;
    text-align: center;
    margin: 4px 12px 4px 0;
    width: 72px;
}

.pankuzu li,
.footstep li {
    margin: 6px 0;
    padding: 0 24px 0 0;
    border: 0;
    list-style-type: none;
    background: none;
    display: inline-block;
    height: auto;
    position: relative;
}

.pankuzu li::after,
.footstep li::after {
    display: block;
    content: '';
    position: absolute;
    top: .5em;
    right: 7px;
    width: 6px;
    height: 6px;
    border-right: 1px solid #999;
    border-bottom: 1px solid #999;
    transform: rotate(-45deg);
}

.pankuzu li:last-child::after,
.footstep li:last-child::after {
    display: none;
}

@media only screen and (max-width: 1024px) {
    /*
    .pankuzu {
        overflow: hidden;
        margin-top: 3px;
        padding-top: 9px;
    }

    .pankuzu_lower {
        flex-wrap: wrap;
        margin: 8px 0;
        padding: 0 10px;
        width: 100%;
    }
*/
}

/**** 中ページメインのスタイル ****/
.inbody #main_outline {
    position: relative;
    margin: 0 auto;
    padding: 12px;
    max-width: 1200px;
    z-index: 0;
}

.inbody #main_outline::before {
    position: absolute;
    top: 0;
    left: 12px;
    display: block;
    content: "";
    width: calc(100% - 24px);
    height: 100%;
    background: #fff;
    z-index: -1;
}

.inbody.category_custom #main_outline,
.inbody.category_magazine #main_outline {
    margin: 0;
    padding: 0;
    max-width: none;
    background: transparent;
}

.inbody.category_custom #main_outline::before,
.inbody.category_magazine #main_outline::before {
    display: none;
}

.inbody.inkiji #main_outline .design {
    background: #fff;
}


.main_naka_h1 {
    margin: 12px auto;
    max-width: 1200px;
    padding: 0 12px;
    width: 100%;
}

.main_naka {
    margin: 0 auto 24px;
    max-width: 1200px;
    width: 100%;
    padding: 0 12px;
    overflow: hidden;
}

.category_magazine .main_naka {
    margin: 0 auto;
}

.main_naka:after {
    content: "";
    display: block;
    clear: both;
}

.main_naka_h1 h1 {
    padding: 14px 16px;
    font-size: 180%;
}


@media only screen and (max-width: 480px) {
    .main_naka_h1 h1 {
        padding: 14px 16px;
        font-size: 150%;
    }
}

.main_naka h2 {
    font-size: 136%;
    width: 100%;
    padding: 2px;
    margin: 16px 0 0;
    border-bottom: 4px solid #000;
}

@media only screen and (max-width: 480px) {
    .main_naka h2 {
        font-size: 125%;
    }
}

.main_naka h3 {
    margin: 16px 0 0;
    padding: 2px 2px 2px 12px;
    border-left: 4px solid #007bbb;
    font-size: 120%;
}

.main_naka h4 {
    margin: 16px 0 0;
    padding: 2px;
    border-bottom: 2px solid #007bbb;
    font-size: 110%;
}

.main_naka h5 {
    margin: 16px 0 0;
    padding: 4px 8px;
    background-color: #e8f4f9;
}

.main_naka h6 {
    margin: 16px 0 0;
}

.main_naka li {
    position: relative;
    padding-left: 16px;
}

.main_naka li::before {
    display: block;
    content: '';
    position: absolute;
    top: .5em;
    left: 0;
    width: 6px;
    height: 6px;
    border-right: 1px solid #999;
    border-bottom: 1px solid #999;
    transform: rotate(-45deg);
}

.main_naka li p {
    margin-top: 4px;
    font-size: 85%;
}

.main_naka li .list_icon img {
    vertical-align: middle;
    margin-top: -5px;
    margin-right: 4px;
    max-height: 18px;
}

@media only screen and (max-width: 1024px) {
    .main_naka_h1 {
        padding: 0 10px;
        width: 100%;
    }

    .main_naka {
        padding: 0 10px;
        width: 100%;
    }
}

@media only screen and (max-width: 480px) {
    .main_naka_h1 {
        margin-top: 8px;
        margin-bottom: 0;
    }
}

/* ページャーのスタイル */
.main_naka .page_head {
    margin-top: 24px;
    padding: 6px 16px 16px;
    background-color: #eee;
    font-size: 85%;
}

.main_naka .page_head .pager p {
    display: inline-block;
}

.main_naka .page_head .pager ul {
    display: inline-block;
}

.main_naka .page_head .pager ul li {
    border-left: 1px solid #999;
    display: inline-block;
    margin: 0 8px 0 0;
    padding-left: 8px;
}

.main_naka .page_head .pager ul li:first-child {
    border: 0;
}

.main_naka .page_head .pager ul li::before {
    display: none;
}

/**** 各課のホームページ・カテゴリごとの緊急情報のスタイル ****/
.design .main_naka .emergency {
    margin-top: 24px;
}

.design .main_naka .emergency .h2 {
    background: #a90000;
    color: #fff;
}

.design .main_naka .emergency h2 {
    color: #fff;
    padding: 8px 16px 6px;
    margin: 0;
    border-bottom: none;
    width: auto;
    float: left;
}

.design .main_naka .emergency h2::after {
    display: none;
}

.design .main_naka .emergency .h2 a {
    float: right;
    margin: 10px 16px 10px 8px;
}

.design .main_naka .emergency .h2 img {
    vertical-align: middle;
}

.design .main_naka .emergency .emergency_lower {
    border: 2px solid #a90000;
    border-top: none;
    padding: 4px 16px 16px;
}

/**** 分類のスタイル ****/
.design .main_naka_cat {
    margin-top: 24px;
    margin-bottom: 32px;
    padding: 12px;
    overflow: hidden;
}

.category_magazine .design .main_naka_cat {
    margin-bottom: 0;
}

@media only screen and (max-width: 1024px) {
    .design .main_naka_cat {
        padding: 12px 0;
    }
}

@media only screen and (max-width: 480px) {
    .design .main_naka_cat {
        margin-top: 10px;
    }
}

.design .main_naka .category_p01 {
    margin-top: -8px;
}

.design .main_naka .page_left {
    margin: 24px 0 0;
    width: 100%;
}

.design .main_naka .page_left_box {
    float: left;
    width: calc(100% - 280px);
    overflow: hidden;
}

.design .main_naka .page_left_box .cate_post01,
.design .main_naka .page_left_box .cate_post02 {
    margin: 24px 0;
}

.design .main_naka .page_left_box .cate_post01:first-child,
.design .main_naka .page_left_box .cate_post02:first-child {
    margin-top: 0;
}

.design .main_naka .page_left_box .cate_post01:last-child,
.design .main_naka .page_left_box .cate_post02:last-child {
    margin-bottom: 0;
}

.design .main_naka .page_left_box .cate_post01:first-child h2,
.design .main_naka .page_left_box .cate_post02:first-child h2 {
    margin-top: 0;
}

.design .main_naka .page_left .page_left_float {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: -8px;
}

.design .main_naka .page_left .page_left_float .cate_post01 {
    margin-top: 0;
    margin-bottom: 24px;
    margin-right: 2%;
    width: 49%;
}

.design .main_naka .page_left .page_left_float .cate_post01:nth-child(even) {
    margin-right: 0;
}

.design .main_naka .page_left .page_left_float .cate_post01 h2 {
    margin: 0;
    padding: 10px 16px;
    border-bottom: 2px solid #000;
}

.design .main_naka .page_left .page_left_float .cate_post01 h2::after {
    display: none;
}

.design .main_naka .page_left .page_left_float .category_p02 {
    padding: 0 16px 8px;
    margin-top: 16px;
}

.design .main_naka .page_left .page_left_float .category01 {
    padding: 0 16px 16px;
}

.design .main_naka .page_right {
    float: right;
    width: 240px;
    margin-top: 24px;
    overflow: hidden;
}

.design .main_naka .page_right ul {
    margin-top: 24px;
    padding: 0 8px 12px;
    border: 1px solid #000;
    border-top: 6px solid #000;
}

.design .main_naka .page_right ul:first-child {
    margin-top: 0;
}

.design .main_naka .category01 li {
    display: inline-block;
    margin-right: 12px;
}

.design .main_naka .category_p02 {
    font-size: 85%;
    margin: 12px 0 24px;
    overflow: hidden;
}

.design .main_naka .category_p02 p {
    margin-top: 0;
}

@media only screen and (max-width: 1024px) {
    .design .main_naka .page_left {
        margin-right: 0;
    }

    .design .main_naka .page_left_box {
        float: none;
        width: 100%;
    }

    .design .main_naka .page_left .page_left_float {
        margin-bottom: 0;
    }

    .design .main_naka .page_left .page_left_float .cate_post01 {
        width: 100%;
        margin-right: 0;
    }

    .design .main_naka .page_left .page_left_float .cate_post01:last-child {
        margin-bottom: 0;
    }

    .design .main_naka .page_right {
        float: none;
        width: 100%;
    }
}

/* アイキャッチあり */
.design .main_naka .category_p02 .cat_lst {
    margin-right: 112px;
}

.design .main_naka .category_p02 .cat_img {
    float: right;
    width: 96px;
    margin-top: 0;
}

/* 分類（先頭ページ以下）のスタイル */
.design .main_naka .cate_post02 li,
.design .main_naka .category_end li {
    border-bottom: 1px dashed #bbb;
    margin-top: 20px;
    padding: 0 0 16px;
    overflow: hidden;
}

.design .main_naka .cate_post02 li::before,
.design .main_naka .category_end li::before {
    display: none;
}

.design .main_naka .category_end li:first-child {
    margin-top: 0;
}

.design .main_naka .category_end .cat_lst {
    margin-right: 112px;
}

.design .main_naka .category_end .catch_lst .cat_img {
    float: right;
    width: 96px;
    margin-top: 0;
}

/**** 新着情報のスタイル ****/
.design .main_naka .main_naka_new {
    margin-top: 24px;
    padding: 16px;
}

.design .main_naka .main_naka_new h2 {
    margin-top: 0;
    border-bottom: 4px solid #000;
}

.design .main_naka .main_naka_new h2::after {
    display: none;
}

.design .main_naka .main_naka_new li {
    overflow: hidden;
}

.design .main_naka .main_naka_new .date {
    display: block;
    float: left;
    margin-top: 2px;
    margin-left: 0;
    width: 6em;
    font-size: 85%;
}

.design .main_naka .main_naka_new .list {
    padding-left: 82px;
}

@media only screen and (max-width: 1024px) {
    .design .main_naka .main_naka_new .date {
        float: none;
        width: 100%;
    }

    .design .main_naka .main_naka_new .list {
        padding-left: 0;
        float: none;
        width: 100%;
    }
}

/**** 緊急情報のスタイル ****/
.design .main_naka .main_naka_eme {
    margin-top: 24px;
}

.design .main_naka .main_naka_eme h2 {
    background: #a90000;
    color: #fff;
    border: 0;
    padding: 14px 16px;
}

.design .main_naka .main_naka_eme h2::after {
    display: none;
}

.design .main_naka .main_naka_eme .h2 {
    border: 0;
    background: #a90000;
    overflow: hidden;
}

.design .main_naka .main_naka_eme .h2 h2 {
    float: left;
    margin: 0;
    width: auto;
}

.design .main_naka .main_naka_eme .h2 p {
    float: right;
    padding: 15px 16px 14px 8px;
    margin: 0;
}

.design .main_naka .main_naka_eme ul {
    border: 2px solid #a90000;
    border-top: none;
    overflow: hidden;
    padding: 4px 16px 16px;
    margin: 0;
}

/* 分類に関連するスタイル */
.design .main_naka .cat_aside {
    margin-bottom: 24px;
    padding: 0;
    border: 2px solid #000;
}

.design .main_naka .cat_aside h2 {
    margin-top: 0;
    padding: 10px 12px 8px;
    color: #fff;
    background: #000;
    border: 0;
}

.design .main_naka .cat_aside h2::after {
    display: none;
}

.design .main_naka .cat_aside_lower {
    padding: 0 16px 16px;
}

@media only screen and (max-width: 1024px) {
    .design .main_naka .cat_aside h2 {
        padding-right: 70px;
    }
}

/* バナー広告 */
.design .main_naka .bana {
    margin-top: 24px;
    background: #fff;
    border: 2px solid #000;
}

.design .main_naka .bana h2 {
    margin-top: 0;
    padding: 8px 16px 6px;
    color: #fff;
    background: #000;
    border-bottom: 0;
}

.design .main_naka .bana h2::after {
    display: none;
}

.design .main_naka .bana_lower {
    text-align: center;
    border: 0;
}

.design .main_naka .bana .bana_img {
    display: inline-block;
}

.design .main_naka .bana .bana_img img {
    width: 100%;
}

.design .main_naka .bana ul {
    display: flex;
    flex-wrap: wrap;
}

.design .main_naka .bana li {
    width: 160px;
    margin-right: 8px;
    padding-left: 0;
}

.design .main_naka .bana li::before {
    display: none;
}

.design .main_naka .bana li:nth-of-type(6n) {
    margin-right: 0;
}

.design .main_naka .bana li .window {
    margin-top: 5px;
}

/**** 新着情報のスタイル ****/
.innew .design .main_naka .new_post {
    margin-top: 24px;
}

.innew .design .main_naka .new_post:first-child {
    margin-top: 0;
}

.innew .design .main_naka .new_post li {
    border-bottom: 1px dashed #bbb;
    margin-top: 16px;
    padding: 0 0 16px;
    overflow: hidden;
}

.innew .design .main_naka .new_post li::before {
    display: none;
}

/* アイキャッチあり */
.innew .design .main_naka .catch_lst .new_lst {
    margin-right: 110px;
}

.innew .design .main_naka .catch_lst .new_img {
    float: right;
    width: 96px;
    margin-top: 0;
}

/**** ピックアップのスタイル ****/
.design .main_naka .pickup_post {
    margin-top: 24px;
}

.design .main_naka .pickup_post .category_p01 {
    margin-top: 0;
}

/********************** 記事ページのスタイル **********************/
.inkiji .main_naka_h1 {
    margin-bottom: 0;
}

.inkiji .main_naka {
    margin-bottom: 8px;
}

.waku {
    margin: 0 auto 24px;
    overflow: hidden;
}

.waku_top {
    clear: both;
    margin: 0 auto;
    max-width: 1200px;
    padding: 0 12px;
    width: 100%;
}

.main_naka_kiji {
    float: left;
    margin-right: 40px;
    width: calc(100% - 280px);
}

.mol_contents {
    margin-top: 24px;
    padding: 12px;
}

@media only screen and (max-width: 1024px) {
    .mol_contents {
        padding: 12px 0;
    }
}

.waku .kiji_sub {
    margin-top: 8px;
    float: right;
    width: 240px;
}

@media only screen and (max-width: 1024px) {
    .main_naka_kiji {
        float: none;
        overflow: hidden;
        width: 100%;
    }

    .waku .kiji_sub {
        float: none;
        width: 100%;
    }
}

/**** 詳細ページのスタイル ****/
.design .main_naka .syosai_hiduke {
    margin-top: 8px;
    font-size: 85%;
    float: left;
}

.design .main_naka .syosai_hiduke li {
    display: inline-block;
    margin: 0;
    padding: 0 16px 0 0;
}

.design .main_naka .syosai_hiduke li::before {
    display: none;
}

@media only screen and (max-width: 1024px) {
    .design .main_naka .syosai_hiduke {
        margin-bottom: 16px;
    }
}

@media only screen and (max-width: 480px) {
    .design .main_naka .syosai_hiduke li.syosai_id {
        display: block;
    }
}

/* SNSボタン */
.inbody .design .sns_box {
    margin-top: 4px;
    padding-left: 16px;
    vertical-align: middle;
    float: right;
}

.inbody .design .sns_box ul {
    display: inline;
}

.inbody .design .sns_box li::before {
    display: none;
}

.inbody .design .sns_btn {
    padding-left: 4px;
    display: inline;
    line-height: 0;
    vertical-align: middle;
}

.inbody .design .sns_btn img {
    vertical-align: middle;
}

.inbody .design p.sns_btn {
    padding: 3px;
    background-color: #fff;
    font-size: 85%;
    vertical-align: middle;
}

@media only screen and (max-width: 1024px) {
    .inbody .design .sns_box {
        background: #efefef;
        border: 1px solid #ccc;
        padding-left: 0;
        padding: 5px;
        margin: 0;
        float: none;
        line-height: 1.5;
        clear: both;
    }

    .inbody .design p.sns_btn {
        background: none;
        padding: 0;
        margin: 0;
    }

    .inbody .design .sns_box ul li {
        display: inline-block;
        margin: 0;
        padding: 0;
    }
}

/**** 記事ページ右メニューのスタイル ****/
/*アイキャッチ画像*/
.waku .kiji_sub .catch {
    margin-top: 16px;
}

.waku .kiji_sub .catch p {
    margin-top: 0;
    text-align: center;
}

.waku .kiji_sub .catch img {
    border: 1px solid #ccc;
    padding: 1px;
    vertical-align: bottom;
    border-radius: 6px;
    overflow: hidden;
}

/*お問い合わせフォーム*/
.waku .kiji_sub .kiji_aside.syosai_sonota {
    margin-top: 16px;
    padding: 12px;
    border: 1px solid #000;
    font-size: 85%;
    text-align: center;
    word-wrap: break-word;
}

.waku .kiji_sub .kiji_aside.syosai_sonota h2 {
    display: inline-block;
    padding: 6px 4px 4px;
    width: 100%;
    background: #eee;
    border: 1px solid #000;
}

.waku .kiji_sub .kiji_aside.syosai_sonota p {
    text-align: left;
}

.waku .kiji_sub .kiji_aside.syosai_sonota .for_img {
    text-align: center;
    background: #555;
    font-size: 85%;
    display: inline-block;
    border-radius: 4px;
    width: 100%;
}

.waku .kiji_sub .kiji_aside.syosai_sonota .for_img a {
    display: block;
    padding: 8px 5px 7px;
    color: #fff;
    text-decoration: none;
    width: 100%;
    background: #000;
}

/*共通スタイル*/
.waku .kiji_sub .kiji_aside {
    margin-top: 16px;
    border: 1px solid #000;
}

.waku .kiji_sub .kiji_aside_lower {
    padding: 0 16px 16px;
}

.waku .kiji_sub .kiji_aside h2 {
    padding: 10px 8px 8px;
    border-bottom: 1px solid #000;
}

.waku .kiji_sub .kiji_aside>ul {
    border: 1px solid #ccc;
    padding: 0 8px 12px;
}

.waku .kiji_sub .kiji_aside li {
    position: relative;
    padding-left: 16px;
}

.waku .kiji_sub .kiji_aside li::before {
    display: block;
    content: '';
    position: absolute;
    top: .5em;
    left: 0;
    width: 6px;
    height: 6px;
    border-right: 2px solid #999;
    border-bottom: 2px solid #999;
    transform: rotate(-45deg);
}

.waku .kiji_sub .kiji_aside li li {
    font-size: 85%;
}

/*コンテンツページ_組織内ジャンル*/
.waku .kiji_sub .kiji_aside.kakuka {}

/*関連コンテンツ*/
.waku .kiji_sub .kiji_aside.kanren {}

/*この記事を見ている人*/
.waku .kiji_sub .kiji_aside.kanren2 {}

/**** コンテンツ評価のスタイル ****/
.design .main_naka .kiji_aside.syosai_qa {
    /*background: #fff;*/
}

.design .main_naka .kiji_aside.syosai_qa li {
    padding-left: 0;
}

.design .main_naka .kiji_aside.syosai_qa li::before {
    display: none;
}

.design .main_naka .kiji_aside.syosai_qa li p {
    padding: 5px 1%;
    border: 1px dashed #bbb;
}

.design .main_naka .kiji_aside.syosai_qa #opinion {
    width: 100%;
}

.design .main_naka .kiji_aside.syosai_qa .comment {
    font-size: 85%;
}

.design .main_naka .kiji_aside.syosai_qa .qa_button {
    margin-top: 8px;
    padding-top: 16px;
    border-top: 1px solid #ccc;
    text-align: center;
}

.design .main_naka .kiji_aside.syosai_qa .qa_button2 {
    margin-top: 8px;
    padding: 8px 0;
    text-align: center;
}

@media only screen and (max-width: 1024px) {
    .design .main_naka .kiji_aside.syosai_qa form p span {
        display: block;
        line-height: 2;
    }
}

/**** 別ルートのスタイル ****/
.design .main_naka .route_box {
    margin-bottom: 24px;
}

.design .main_naka .route_box h2 {
    border-bottom: 2px solid #ccc;
    font-size: 125%;
    padding: 2px;
    margin: 0 0 12px;
}

.design .main_naka .route_box h2::after {
    display: none;
}

.design .route {
    margin-top: 8px;
}

.design .route li {
    font-size: 85%;
    margin: 0;
    padding: 0 28px 0 0;
    border: 0;
    list-style-type: none;
    background: none;
    display: inline-block;
    height: auto;
    position: relative;
}

.design .route li::before {
    display: none;
}

.design .route li::after {
    display: block;
    content: "";
    position: absolute;
    top: .3em;
    right: 2px;
    width: 0;
    height: 0;
    border: 5px solid transparent;
    border-left: 8px solid #999;
}

.design .route li:last-child::after {
    display: none;
}

/**** 記事ページ下メニューのスタイル ****/
.inkiji .main_naka .kiji_aside,
.infaq .main_naka .kiji_aside {
    margin-bottom: 24px;
    padding: 0;
    border: 1px solid #000;
}

.inkiji .main_naka .kiji_aside_lower,
.infaq .main_naka .kiji_aside_lower {
    padding: 0 16px 16px;
}

.inkiji .main_naka .kiji_aside h2,
.infaq .main_naka .kiji_aside h2 {
    background: #000;
    border: 0;
    color: #fff;
    padding: 10px 12px 8px;
    margin-top: 0;
}

.inkiji .main_naka .kiji_aside h2::after,
.infaq .main_naka .kiji_aside h2::after {
    display: none;
}

.inkiji .main_naka .kiji_aside li li,
.infaq .main_naka .kiji_aside li li {
    font-size: 85%;
}

@media only screen and (max-width: 1024px) {

    .inkiji .main_naka .kiji_aside.kanrenlink h2,
    .infaq .main_naka .kiji_aside.kanrenlink h2,
    .inkiji .main_naka .kiji_aside.rssfide h2,
    .infaq .main_naka .kiji_aside.rssfide h2 {
        padding-right: 70px;
    }
}

/* 関連リンク */
.inkiji .main_naka .kiji_aside.kanrenlink {}

/* 外部RSS */
.inkiji .main_naka .kiji_aside.rssfide h2 {}


/* ▼ 【共通】「同じ分類の記事」「組織内ジャンル」「関連コンテンツ」「関連している可能性のある記事」「お問い合わせフォーム」 ▼ */

/* 同じ分類の記事 */
.inkiji .main_naka .kiji_aside.kanrencon h2,
/* 組織内ジャンル */
.inkiji .main_naka .kiji_aside.kakuka h2,
/* 関連コンテンツ */
.inkiji .main_naka .kiji_aside.kanren h2,
/* 関連している可能性のある記事 */
.inkiji .main_naka .kiji_aside.kanren2 h2,
/* お問い合わせフォーム */
.main_naka .kiji_aside.syosai_sonota h2 {
    color: #000;
    background: #eee;
    border-bottom: 1px solid #000;
}

/* ▲ 【共通】「同じ分類の記事」「組織内ジャンル」「関連コンテンツ」「関連している可能性のある記事」「お問い合わせフォーム」 ▲ */

.main_naka .kiji_aside.syosai_sonota p.for_txt {
    padding: 0 0 8px 0;
    border-bottom: 1px solid #ccc;
    font-size: 85%;
}

/**** 記事ページ緊急情報のスタイル ****/
.kiji_emergency .main_naka_h1 h1 {
    border-left: none;
    background: #a90000;
    color: #fff;
    padding: 6px 8px 4px;
}

/**************** ▼▼▼▼▼▼▼▼▼▼▼▼ 【分類カスタマイズ】共通　▼▼▼▼▼▼▼▼▼▼▼▼ ****************/


/******** ▼▼▼▼▼▼▼▼ 見出し関連 ▼▼▼▼▼▼▼▼ ********/
.category_custom h1,
.category_magazine .main_naka_h1 h1 {
    padding: 14px 16px 0;
    color: #000;
    text-align: center;
    background: transparent;
    border-left: 0;
}

@media only screen and (max-width: 480px) {

    .category_custom h1,
    .category_magazine .main_naka_h1 h1 {
        font-size: 150%;
    }
}

/******** ▲▲▲▲▲▲▲▲ 見出し関連 ▲▲▲▲▲▲▲▲ ********/

/******** ▼▼▼▼▼▼▼▼ 項目 ▼▼▼▼▼▼▼▼ ********/
.category_custom .cate_post02 li,
.category_magazine .cate_post02 li {
    border-bottom: 0 !important;
}

/******** ▲▲▲▲▲▲▲▲ 項目 ▲▲▲▲▲▲▲▲ ********/

/******** ▼▼▼▼▼▼▼▼ ボタン「詳しく見る」 ▼▼▼▼▼▼▼▼ ********/
.category_custom .cate_post02 .category_card .card_btn,
.category_magazine .cate_post02 .category_card .card_btn {
    position: relative;
    display: inline-block;
    margin-top: auto;
    margin-left: auto;
    padding: 3px 25px 3px 12px;
    width: fit-content;
    color: #fff;
    background: #000;
    border-radius: 13px;
}

.category_custom .cate_post02 .category_card .card_btn::before,
.category_magazine .cate_post02 .category_card .card_btn::before {
    position: absolute;
    top: 7px;
    right: 12px;
    display: block;
    content: "";
    width: 7px;
    height: 11px;
    background-image: url(img/btn-arrow.png);
    background-size: cover;
}

/******** ▲▲▲▲▲▲▲▲ ボタン「詳しく見る」 ▲▲▲▲▲▲▲▲ ********/

/**************** ▲▲▲▲▲▲▲▲▲▲▲▲ 【分類カスタマイズ】共通　▲▲▲▲▲▲▲▲▲▲▲▲ ****************/


/**************** ▼▼▼▼▼▼▼▼▼▼▼▼ 【分類カスタマイズ】どんなまち？、子育て、まちの魅力、楽しむ、暮らし ▼▼▼▼▼▼▼▼▼▼▼▼ ****************/

.category_custom .design .main_naka_cat {
    margin: 0 auto 32px;
    padding: 0 12px;
    max-width: 1200px;
    width: 100%;
}

/******** ▼▼▼▼▼▼▼▼ 見出し関連 ▼▼▼▼▼▼▼▼ ********/
.category_custom .cate_post02 h2 {
    display: none;
}

/******** ▲▲▲▲▲▲▲▲ 見出し関連 ▲▲▲▲▲▲▲▲ ********/

/******** ▼▼▼▼▼▼▼▼ 項目 ▼▼▼▼▼▼▼▼ ********/
.category_custom ul.category_card {
    display: flex;
    flex-wrap: wrap;
    margin: 0 auto;
    max-width: 960px;
    width: 100%;
}

.category_custom ul.category_card li {
    margin-top: 30px;
    margin-right: 30px;
    width: calc((100% - 60px) / 3);
}

.category_custom ul.category_card li:nth-child(3n) {
    margin-right: 0;
}

@media only screen and (max-width: 768px) {

    .category_custom ul.category_card li:nth-child(1),
    .category_custom ul.category_card li:nth-child(2),
    .category_custom ul.category_card li:nth-child(3) {
        margin-top: 12px;
    }
}

@media only screen and (max-width: 480px) {

    .category_custom ul.category_card li,
    .category_custom ul.category_card li:nth-child(3n) {
        margin-right: 12px;
        width: calc(50% - 6px);
    }

    .category_custom ul.category_card li:nth-child(3) {
        margin-top: 30px;
    }

    .category_custom ul.category_card li:nth-child(even) {
        margin-right: 0;
    }
}

.category_custom ul.category_card li a {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    height: 100%;
    text-decoration: none;
}

.category_custom ul.category_card li a .img {
    width: 100%;
    border-radius: 6px;
    overflow: hidden;
}

.category_custom ul.category_card li a .img img {
    max-width: none;
    width: 100%;
    transition-duration: 0.5s;
}

.category_custom ul.category_card li a:hover .img img {
    transform: scale(1.1);
}

.category_custom ul.category_card li .title {
    flex-grow: 1;
    position: relative;
    margin-top: 12px;
    padding: 4px 12px 4px 10px;
    font-size: 113%;
    font-weight: bold;
    color: #000;
    border-left: 4px solid #000;
}

/******** ▲▲▲▲▲▲▲▲ 項目 ▲▲▲▲▲▲▲▲ ********/

/**************** ▲▲▲▲▲▲▲▲▲▲▲▲ 【分類カスタマイズ】どんなまち？、子育て、まちの魅力、楽しむ、暮らし ▲▲▲▲▲▲▲▲▲▲▲▲ ****************/

/**************** ▼▼▼▼▼▼▼▼▼▼▼▼ 【分類カスタマイズ】ウェブマガジン「はむらぐらし」 ▼▼▼▼▼▼▼▼▼▼▼▼ ****************/

/******** ▼▼▼▼▼▼▼▼ 共通 ▼▼▼▼▼▼▼▼ ********/
.category_magazine .cate_post02 li a {
    font-weight: bold;
    color: #000;
    text-decoration: none;
}

/******** ▲▲▲▲▲▲▲▲ 共通 ▲▲▲▲▲▲▲▲ ********/

/******** ▼▼▼▼▼▼▼▼ 見出し関連 ▼▼▼▼▼▼▼▼ ********/

@media only screen and (max-width: 480px) {
    .category_magazine .main_naka_h1 {
        max-width: 280px;
    }
}


.category_magazine .cate_post02 h2 {
    position: relative;
    margin-top: -30px;
    color: #000;
    text-align: center;
    background: transparent;
    border-bottom: 0;
}

.category_magazine .cate_post02 h2::before,
.category_magazine .cate_post02 h2::after {
    position: absolute;
    top: 18px;
    bottom: auto;
    display: block;
    content: "";
    width: calc(50% - 85px);
    height: 1px;
    background-color: #707070;
}


.category_magazine .cate_post02:nth-child(2) h2::before,
.category_magazine .cate_post02:nth-child(2) h2::after {
    width: calc(50% - 125px);
}

@media only screen and (max-width: 480px) {

    .category_magazine .cate_post02:nth-child(2) h2::before,
    .category_magazine .cate_post02:nth-child(2) h2::after {
        width: calc(50% - 115px);
    }
}

.category_magazine .cate_post02:nth-child(3) h2::before,
.category_magazine .cate_post02:nth-child(3) h2::after {
    width: calc(50% - 74px);
}

.category_magazine .cate_post02 h2::before {
    left: 0
}

.category_magazine .cate_post02 h2::after {
    left: auto;
    right: 0;
}

.category_magazine .cate_post02 h2 a {
    display: block;
    margin: 0 auto;
    padding: 0 10px;
    width: fit-content;
    font-size: 110%;
    color: #000;
    text-decoration: none;
    pointer-events: none;
}

.category_magazine .cate_post02:first-child h2 a {
    position: relative;
    color: #cc0000;
}

.category_magazine .cate_post02:first-child h2 a::before,
.category_magazine .cate_post02:first-child h2 a::after {
    position: absolute;
    top: 16px;
    display: block;
    content: "";
    width: 25px;
    height: 1px;
    background: #000;
}

.category_magazine .cate_post02:first-child h2 a::before {
    left: -16px;
    transform: rotate(45deg);
}

.category_magazine .cate_post02:first-child h2 a::after {
    right: -16px;
    transform: rotate(135deg);
}

/******** ▲▲▲▲▲▲▲▲ 見出し関連 ▲▲▲▲▲▲▲▲ ********/

/******** ▼▼▼▼▼▼▼▼ 新着記事 ▼▼▼▼▼▼▼▼ ********/
.category_magazine .cate_post02:first-child .card_content {
    margin-top: 16px;
    padding-left: 10px;
    border-left: 4px solid #000;
}

.category_magazine .cate_post02:first-child ul.category_card {
    margin: 0 auto;
    max-width: 500px;
    width: 100%;
}

.category_magazine .cate_post02:first-child ul.category_card li a .img {
    border-radius: 6px;
    overflow: hidden;
}

.category_magazine .cate_post02:first-child ul.category_card li a .img img {
    max-width: none;
    width: 100%;
    transition-duration: 0.5s;
}

.category_magazine .cate_post02:first-child ul.category_card li a:hover .img img {
    transform: scale(1.1);
}

.category_magazine .cate_post02:first-child ul.category_card li a .date_btn {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-top: 8px;
}

.category_magazine .cate_post02:first-child .category_card .date {
    margin-left: auto;
}

.category_magazine .cate_post02:first-child .category_card .card_btn {
    margin-left: 8px;
    font-size: 88%;
}

/******** ▲▲▲▲▲▲▲▲ 新着記事 ▲▲▲▲▲▲▲▲ ********/

/******** ▼▼▼▼▼▼▼▼ はむらぐらしの作り手は？ ▼▼▼▼▼▼▼▼ ********/
.category_magazine .cate_post02:nth-child(2) {
    margin-top: 70px;
}

.category_magazine .cate_post02:nth-child(2) .overview_text p {
    text-align: center;
}

.category_magazine .cate_post02:nth-child(2) .overview_text p span {
    display: block;
}


.category_magazine .cate_post02:nth-child(2) .overview_btn {
    display: flex;
    margin: 16px auto 0;
    max-width: 500px;
    width: 100%;
}

.category_magazine .cate_post02:nth-child(2) .overview_btn a {
    position: relative;
    display: inline-block;
    margin-top: auto;
    margin-left: auto;
    padding: 3px 25px 3px 12px;
    width: fit-content;
    font-size: 88%;
    font-weight: bold;
    text-decoration: none;
    color: #fff;
    background: #000;
    border-radius: 13px;
}

.category_magazine .cate_post02:nth-child(2) .overview_btn a::after {
    position: absolute;
    top: 7px;
    right: 12px;
    display: block;
    content: "";
    width: 7px;
    height: 11px;
    background-image: url(img/btn-arrow.png);
    background-size: cover;
}


.category_magazine .cate_post02:nth-child(2) .page_card_box {
    display: none !important;
}

/******** ▲▲▲▲▲▲▲▲ はむらぐらしの作り手は？ ▲▲▲▲▲▲▲▲ ********/

/******** ▼▼▼▼▼▼▼▼ 過去の記事 ▼▼▼▼▼▼▼▼ ********/
.category_magazine .cate_post02:nth-child(3) {
    margin-top: 70px;
}

.category_magazine .cate_post02:nth-child(3) ul.category_card {
    display: flex;
    flex-wrap: wrap;
    padding-top: 10px;
}

.category_magazine .cate_post02:nth-child(3) li {
    width: calc(50% - 16px);
}

@media only screen and (max-width: 880px) {
    .category_magazine .cate_post02:nth-child(3) li {
        width: 100%;
    }
}

.category_magazine .cate_post02:nth-child(3) li:nth-child(odd) {
    margin-right: auto;
}

.category_magazine .cate_post02:nth-child(3) li a {
    display: flex;
    flex-wrap: wrap;
}

.category_magazine .cate_post02:nth-child(3) li a .img {
    width: 200px;
    border-radius: 8px;
    overflow: hidden;
}

@media only screen and (max-width: 480px) {
    .category_magazine .cate_post02:nth-child(3) li a .img {
        margin: 0 auto;
        width: 100%;
    }
}

.category_magazine .cate_post02:nth-child(3) li a .img img {
    max-width: none;
    width: 100%;
}

.category_magazine .cate_post02:nth-child(3) li a .card_content {
    display: flex;
    flex-wrap: wrap;
    margin-left: auto;
    width: calc(100% - 212px);
}

@media only screen and (max-width: 480px) {
    .category_magazine .cate_post02:nth-child(3) li a .card_content {
        margin-top: 12px;
        width: 100%;
    }
}

.category_magazine .cate_post02:nth-child(3) li a .card_content .card_text {
    padding: 0 0 6px;
    width: 100%;
}

.category_magazine .cate_post02:nth-child(3) li a .card_content .date_btn {
    display: flex;
    align-items: center;
    width: 100%;
}

.category_magazine .cate_post02:nth-child(3) li a .card_content .date {
    margin-left: 0;
    margin-right: auto;
    width: calc(100% - 124px);
    text-align: right;
}

.category_magazine .cate_post02:nth-child(3) li a .card_content .card_btn {
    margin-top: 0;
    width: 116px;
    font-size: 88%;
}

/******** ▲▲▲▲▲▲▲▲ 過去の記事 ▲▲▲▲▲▲▲▲ ********/

/******** ▼▼▼▼▼▼▼▼ 記事一覧 ▼▼▼▼▼▼▼▼ ********/
.category_magazine .cate_post02:nth-child(4) {
    margin-top: 90px;
}

.category_magazine .cate_post02:nth-child(4) h2::before,
.category_magazine .cate_post02:nth-child(4) h2::after {
    width: calc(50% - 60px);
}

.category_magazine .cate_post02:nth-child(4) .overview_text p {
    text-align: center;
}

.category_magazine .cate_post02:nth-child(4) .overview_text p span {
    display: block;
}


.category_magazine .cate_post02:nth-child(4) .overview_btn {
    display: flex;
    margin: 16px auto 0;
    max-width: 500px;
    width: 100%;
}

.category_magazine .cate_post02:nth-child(4) .overview_btn a {
    position: relative;
    display: inline-block;
    margin-top: auto;
    margin-left: auto;
    padding: 3px 25px 3px 12px;
    width: fit-content;
    font-size: 88%;
    font-weight: bold;
    text-decoration: none;
    color: #fff;
    background: #000;
    border-radius: 13px;
}

.category_magazine .cate_post02:nth-child(4) .overview_btn a::after {
    position: absolute;
    top: 7px;
    right: 12px;
    display: block;
    content: "";
    width: 7px;
    height: 11px;
    background-image: url(img/btn-arrow.png);
    background-size: cover;
}

.category_magazine .cate_post02:nth-child(4) .page_card_box {
    display: none;
}

/******** ▲▲▲▲▲▲▲▲ 記事一覧 ▲▲▲▲▲▲▲▲ ********/

/**************** ▲▲▲▲▲▲▲▲▲▲▲▲ 【分類カスタマイズ】ウェブマガジン「はむらぐらし」 ▲▲▲▲▲▲▲▲▲▲▲▲ ****************/

/**************** ▼▼▼▼▼▼▼▼▼▼▼▼ 伝えるWEB ▼▼▼▼▼▼▼▼▼▼▼▼ ****************/
/* .tsutaeru01-menu */
.tsutaeru01-menu {
    display: none;
}

.tsutaeru01-menu ul {
    margin: 0px;
    padding: 0px;
    text-align: right;
}

.design #head_lang02 li a {
    width: 118px;
    height: 28px;
    display: inline-block;
}

.design #head_lang02 li.tsutaeru01-button-easy {
    padding: 0;
}

.design #head_lang02 li.tsutaeru01-button-easy-off {
    padding: 0;
}

.design #head_lang02 li.tsutaeru01-button-ruby {
    padding: 0;
}

.design #head_lang02 li.tsutaeru01-button-ruby-off {
    padding: 0;
}

/* .tsutaeru01-speech */
.tsutaeru01-speech {
    padding: 0;
    margin: 0;
    position: relative;
}

.tsutaeru01-speech * {
    vertical-align: middle;
}

#body button.tsutaeru01-button.tsutaeru01-button-speech-start,
#body button.tsutaeru01-button.tsutaeru01-button-speech-control,
#body button.tsutaeru01-button.tsutaeru01-button-config.tsutaeru01-button-speech-config {
    display: inline-block;
    margin: 0;
    padding: 0;
    font-size: 100%;
    color: #000;
    text-align: center;
    text-decoration: none;
    background: none;
    border: none;
    border-radius: 0;
    cursor: pointer;
}

#body button.tsutaeru01-button.tsutaeru01-button-config.tsutaeru01-button-speech-config {
    margin-left: 6px;
}

#body button.tsutaeru01-button.tsutaeru01-button-speech-start:hover,
#body button.tsutaeru01-button.tsutaeru01-button-speech-control:hover,
#body button.tsutaeru01-button.tsutaeru01-button-config.tsutaeru01-button-speech-config:hover {
    text-decoration: none;
    color: #9f0000;
}

#body button.tsutaeru01-button.tsutaeru01-button-speech-start:visited,
#body button.tsutaeru01-button.tsutaeru01-button-speech-control:visited,
#body button.tsutaeru01-button.tsutaeru01-button-config.tsutaeru01-button-speech-config:visited {
    color: #791d78;
}

#body button.tsutaeru01-button.tsutaeru01-button-speech-start,
#body button.tsutaeru01-button.tsutaeru01-button-speech-control {
    /*margin-right:10px;*/
}

.tsutaeru01-speech .tsutaeru01-button:disabled {
    opacity: 0.8;
}

.tsutaeru01-speech-buttons {
    padding: 0;
}

.tsutaeru01-speech-audio-container {
    padding: 5px 0px;
    /*position:relative;*/
    position: absolute;
    top: 26px;
    left: 0;
}

.tsutaeru01-speech-audio {
    border-radius: 3px;
    max-width: 220px;
    height: 32px;
}

.tsutaeru01-speech-error {
    color: #C00;
}

/* .tsutaeru01-config */
.tsutaeru01-config {
    font-size: 90%;
    position: fixed;
    z-index: 99999;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.75);
    border-radius: 5px;
    max-width: 90%;
    width: 600px;
    text-align: left;
    outline: none !important;
}

.tsutaeru01-config-header {
    padding: 1em;
    color: #FFF;
    background: #000;
    text-align: center;
    font-weight: bold;
    position: relative;
    border-radius: 5px 5px 0px 0px;
    border: 1px solid #FFF;
}

.tsutaeru01-config-body {
    color: #000;
    background: #FFF;
    padding: 1.5em;
    max-height: 50vh;
    overflow: auto;
}

.tsutaeru01-config-body dl,
.tsutaeru01-config-body dl dt,
.tsutaeru01-config-body dl dd {
    margin: 0px;
    padding: 0px;
    font-size: 100%;
}

.tsutaeru01-config-body dl {
    overflow: hidden;
}

.tsutaeru01-config-body dl dt {
    font-weight: bold;
    float: left;
    clear: left;
    width: 6.8em;
    text-align: right;
}

.tsutaeru01-config-body dl dd {
    margin: 0px 0px 1em 1.2em;
    white-space: nowrap;
}

.tsutaeru01-config-body dl dd:last-child {
    margin-bottom: 0px;
}

.tsutaeru01-config-body dl dd label {
    margin: 0px 1em 0.8em 0px;
    padding: 0px;
    font-size: 100%;
    white-space: nowrap;
    display: inline-block;
}

.tsutaeru01-config-body dl dd label input {
    margin: 0px 0.3em 0px 0px;
}

.tsutaeru01-config-footer {
    color: #000;
    background: #FFF;
    border-top: 1px solid #CCC;
    text-align: right;
    padding: 0.5em;
    border-radius: 0px 0px 5px 5px;
}

#body .tsutaeru01-config .tsutaeru01-config-footer .tsutaeru01-config-button-close {
    font-size: 100%;
    border: none;
    color: #FFF;
    background: #000;
    font-weight: normal;
    padding: 0.5em 1em;
    border-radius: 3px;
    cursor: pointer;
}

.tsutaeru01-config-overlay {
    position: fixed;
    z-index: 99998;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    background: #000;
    opacity: 0.75;
}

#body .tsutaeru01-config .tsutaeru01-config-header .tsutaeru01-config-close {
    font-size: 100%;
    display: block;
    position: absolute;
    top: 50%;
    right: 1em;
    transform: translateY(-50%);
    width: 1em;
    height: 1em;
    overflow: hidden;
    text-indent: -1000px;
    background: none;
    padding: 0px;
    border: none;
    cursor: pointer;
}

#body .tsutaeru01-config .tsutaeru01-config-header .tsutaeru01-config-close:before,
#body .tsutaeru01-config .tsutaeru01-config-header .tsutaeru01-config-close:after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    width: 100%;
    height: 2px;
    margin-top: -1px;
    background: #FFF;
}

#body .tsutaeru01-config .tsutaeru01-config-header .tsutaeru01-config-close:before {
    transform: rotate(45deg);
}

#body .tsutaeru01-config .tsutaeru01-config-header .tsutaeru01-config-close:after {
    transform: rotate(-45deg);
}

/* .tsutaeru01-text */
.tsutaeru01-text {
    position: fixed;
    bottom: 0px;
    left: 0px;
    right: 0px;
    background: #000;
    color: #FFF;
    text-align: left;
    font-size: 100%;
    padding: 20px;
    z-index: 99000;
}

.tsutaeru01-text-inner {
    line-height: 1.5;
    max-height: 10em;
    overflow: auto;
    padding: 5px;
}

.tsutaeru01-text-inner rt,
.tsutaeru01-text-inner rp {
    font-size: 50%;
}

#body .tsutaeru01-text .tsutaeru01-text-close {
    font-size: 100%;
    display: block;
    position: absolute;
    top: 5px;
    right: 5px;
    width: 1em;
    height: 1em;
    overflow: hidden;
    text-indent: -1000px;
    background: none;
    padding: 0px;
    border: none;
    cursor: pointer;
}

#body .tsutaeru01-text .tsutaeru01-text-close:before,
#body .tsutaeru01-text .tsutaeru01-text-close:after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    width: 100%;
    height: 2px;
    margin-top: -1px;
    background: #FFF;
}

#body .tsutaeru01-text .tsutaeru01-text-close:before {
    transform: rotate(45deg);
}

#body .tsutaeru01-text .tsutaeru01-text-close:after {
    transform: rotate(-45deg);
}

@media (max-width:1024px) {

    .h_top,
    .head_in .h_top>div {
        display: none;
    }

    .tsutaeru01-menu {
        overflow: auto;
    }

    .tsutaeru01-menu ul {
        /*text-align:center;
font-size:12px;
white-space:nowrap;*/
    }

    .tsutaeru01-menu ul li {
        margin: 0px 0.1em;
    }

    .tsutaeru01-menu ul li .tsutaeru01-button {
        border: none;
    }

    .tsutaeru01-speech {
        font-size: 100%;
        position: static;
    }

    .tsutaeru01-speech-audio-container {
        position: static;
    }

    .sidr_navi03 .sidr_navi03_sub {
        border-bottom: 3px solid #a52e5a;
    }

    #body button.tsutaeru01-button.tsutaeru01-button-speech-start,
    #body button.tsutaeru01-button.tsutaeru01-button-speech-control,
    #body button.tsutaeru01-button.tsutaeru01-button-config.tsutaeru01-button-speech-config {
        position: relative;
        padding: 12px 20px 12px 10px;
        width: 50%;
        color: #2b3095;
        text-align: left;
        text-decoration: none;
        border-right: 1px solid #bbb;
    }

    #body button.tsutaeru01-button.tsutaeru01-button-config.tsutaeru01-button-speech-config {
        margin-left: 0;
    }

    #body button.tsutaeru01-button.tsutaeru01-button-speech-start::before,
    #body button.tsutaeru01-button.tsutaeru01-button-speech-control::before,
    #body button.tsutaeru01-button.tsutaeru01-button-config.tsutaeru01-button-speech-config::before {
        content: '';
        position: absolute;
        right: 12px;
        top: 50%;
        margin-top: -4px;
        width: 6px;
        height: 6px;
        border-top: 1px solid #999;
        border-right: 1px solid #999;
        transform: rotate(45deg);
    }

    .tsutaeru01-speech-buttons {
        width: 100%;
        white-space: nowrap;
        /*overflow: auto;*/
    }

    .tsutaeru01-speech-audio {
        margin-left: 8px;
    }

    .tsutaeru01-config-body dl dt {
        font-weight: bold;
        float: none;
        width: auto;
        margin: 0px 0px 0.5em 0px;
        text-align: left;
    }

    .tsutaeru01-config-body dl dd {
        margin: 0px 0px 1em 0px;
        white-space: normal;
    }

    .tsutaeru01-text {
        font-size: 86%;
    }
}

/* .tsutaeru01-form */
.tsutaeru01-search-form {
    margin: 0px 0px 20px 0px;
}

.tsutaeru01-search-form-query {
    margin: 0.3em 0px;
    display: inline-block;
    max-width: 100%;
}

.tsutaeru01-search-form-query input {
    width: 15em;
    max-width: 100%;
    box-sizing: border-box;
    padding: 0.5em;
    line-height: 1;
}

.tsutaeru01-search-form-and_or {
    margin: 0.3em 0.3em;
    white-space: nowrap;
    display: inline-block;
}

.tsutaeru01-search-form-submit {
    margin: 0.3em 0.3em;
    display: inline-block;
}

/*.tsutaeru01-search-form-submit input{
font-size:100%;
line-height:1;
display:inline-block;
padding:0.5em 1em;
border:1px solid #05203a;
border-radius:3px;
text-decoration:none;
background:#05203a;
color:#FFF;
cursor:pointer;
}*/
.tsutaeru01-search-list {
    font-size: 100%;
    margin: 0px 0px 30px 0px;
    padding: 0px 20px;
    list-style: none;
}

.tsutaeru01-search-list li {
    font-size: 100%;
    margin: 0px 0px 15px 0px;
    padding: 0px;
}

.tsutaeru01-search-list-header {
    margin: 0px 0px 5px 0px;
}

.tsutaeru01-search-list-body {
    font-size: 90%;
    margin: 0px 0px 0px 0px;
    padding: 0px 0px 0px 20px;
}

.tsutaeru01-search-pager {
    margin: 20px 0px 20px 0px;
    padding: 0px;
    text-align: center;
}

.tsutaeru01-search-pager li {
    display: inline-block;
    margin: 0px 0.25em;
    padding: 0px;
}

.tsutaeru01-search-pager li a,
.tsutaeru01-search-pager li span,
.tsutaeru01-search-pager li em {
    display: inline-block;
    border: 1px solid #05203a;
    line-height: 1.0;
    padding: 0.5em;
    border-radius: 3px;
    text-decoration: none;
    background: #FFF;
    min-width: 1em;
}

.tsutaeru01-search-pager li em {
    font-style: normal;
}

/*.tsutaeru01-search-pager li a{
cursor:pointer;
background-color:#05203a;
color:#FFF;
}*/
/*.tsutaeru01-search-pager li span{
background-color:#05203a;
color:#FFF;
opacity:0.5;
}*/


/**************** ▲▲▲▲▲▲▲▲▲▲▲▲ 伝えるWEB ▲▲▲▲▲▲▲▲▲▲▲▲ ****************/