@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;
}


/******************** 共通設定 ********************/

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;
}


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

p,
li {
    margin-top: 12px;
}

.small {
    font-size: 85%;
}


/**** リンク ****/

a {
    transition: 0.2s linear;
}

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;
}


/**** 別ウィンドウで開く ****/

.window {
    display: inline-block;
    font-size: 62.5%;
    font-weight: normal;
    background: #e0f4ff;
    color: #333;
    border-radius: 4px;
    padding: 1px 4px;
    margin: 0 4px;
    border: 1px solid #88c9ea;
    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;
}

.skip_sp {
    display: none;
}


/**** フォーム ****/

#body form input,
#body form button,
#body form textarea {
    background: #fff;
    border: 1px solid #999;
    font-size: 85%;
}


/* text,textarea */

#body form input[type="text"],
#body form textarea,
#body form 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 form select[size],
#body form select[multiple],
#body form select[size][multiple] {
    padding: 6px;
}


/* submit,reset,button */

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

#body form input[type="submit"]:hover,
#body form input[type="reset"]:hover,
#body form button[type="button"]:hover,
#body form 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 ********************/

.zone01,
.zone02,
.zone03,
.zone04 {
    background: #fff;
    position: relative;
}

.zone01 {
    z-index: 400;
    padding-top: 1px;
}

.zone02,
.zone03,
.zone04 {
    overflow: hidden;
    z-index: 300;
}

@media only screen and (max-width: 768px) {
    .zone01 {
        margin-top: 0;
    }
}


/********************** ヘッダー **********************/

.main_header {
    background: #fff;
}

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


/**** ヘッダーメイン ****/

.head {
    background: #fff;
    position: relative;
    z-index: 100;
}

.head_in {
    display: flex;
    align-items: center;
    padding: 12px 20px 4px 240px;
    max-width: 990px;
    margin: 0 auto;
    position: relative;
}


/** サイトID **/

.h_main .h1 {
    background: #e30167;
    text-align: center;
    position: absolute;
    top: 0;
    left: 20px;
    margin: 0;
    padding: 21px 16px 6px;
    width: 200px;
    z-index: 100;
}


/** サブ **/

.head_sub {
    margin-left: auto;
}

.head_sub_top,
.head_sub_bottom {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.head_sub_top {
    margin-bottom: 10px;
}

@media only screen and (max-width: 768px) {
    .head_in {
        padding: 8px 10px;
    }

    .h_main .h1 {
        left: 0;
        margin-bottom: -40px;
        margin-top: -10px;
        position: relative;
        padding: 10px 8px;
        width: 130px;
    }

    .head_sub {
        display: none;
    }
}


/* 言語 */

.langage {
    background: #efefef;
    border-radius: 4px;
    font-size: 76%;
    padding: 9px 2px;
    letter-spacing: 0;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

.langage li {
    border-right: 1px solid #aaa;
    margin: 0;
    padding: 0 8px;
}

.langage li:last-child {
    border-right: 0;
}


/* 文字サイズ */

.font_size {
    font-size: 82%;
    display: flex;
    align-items: center;
    background: #efefef;
    border-radius: 4px;
    padding: 5px 8px;
    margin-left: 10px;
    margin-bottom: 8px;
}

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

.font_tit {
    background: url('img/icon_font.svg') no-repeat center left;
    background-size: 18px 18px;
    padding-left: 24px;
}

.font_size ul {
    display: flex;
}

.font_size ul li {
    position: relative;
    margin: 0 0 0 8px;
}

.font_size ul li:last-child {
    margin-right: 0;
}

.font_size ul li a {
    background: #fff;
    border: 1px solid #222;
    border-radius: 4px;
    display: inline-block;
    padding: 2px 6px;
    text-decoration: none;
}

.font_size ul li:first-child a {
    background: #fff;
    border-color: #e30167;
    color: #2b3095;
}


/* ふりがな　音声読み上げ */

.voice,
.furigana {
    margin-left: 10px;
    margin-bottom: 8px;
}

.voice a,
.furigana a {
    font-size: 80%;
    display: inline-block;
    border: 1px solid #aaa;
    border-radius: 4px;
    text-decoration: none;
    padding: 6px 6px 6px 28px;
}

.voice a {
    background: url(img/icon_voice.svg) no-repeat center left 5px;
    background-size: 16px 16px;
}

.furigana a {
    background: url(img/icon_furigana.svg) no-repeat center left 5px;
    background-size: 16px 16px;
}


/* リンク */

.head_sub_list {
    display: flex;
    margin-left: 16px;
}

.head_sub_list li {
    font-size: 78%;
    position: relative;
    padding: 0;
    margin-left: 8px;
    margin-top: 0;
}

.head_sub_list li:before {
    content: '';
    position: absolute;
    top: 50%;
    margin-top: -4px;
    left: 9px;
    width: 6px;
    height: 6px;
    border-right: 1px solid #888;
    border-bottom: 1px solid #888;
    transform: rotate(-45deg);
}

.head_sub_list li a {
    background: #ffe8e2;
    border: 1px solid #d0d0d0;
    border-radius: 4px;
    display: inline-block;
    text-decoration: none;
    padding: 5px 10px 5px 22px;
}


/* 検索ボックス */

.src_box .q {
    float: left;
    width: 70% !important;
    margin: 0;
    height: 40px !important;
    padding: 0 !important;
    border: 3px solid #ffa8aa !important;
    border-right: none;
}

.src_box #search_button,
#sidr .src_box #search_button_sp {
    width: 30%;
    min-height: 40px;
    margin: 0;
    padding: 0;
    background: #e40167 !important;
    color: #fff;
    font-size: 90%;
    cursor: pointer;
    border: 3px solid #ffa8aa;
    border-left: none;
    white-space: normal;
    border-radius: 0;
}

.head_sub .src_box {
    width: 300px;
}

.head_sub .src_box .q {
    width: 78%;
}

.head_sub .src_box #search_button {
    width: 22%;
}


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

.g_navi {
    letter-spacing: 0;
    position: relative;
    margin: 60px auto 0;
    padding: 0 20px;
    max-width: 990px;
}

.g_navi_in {
    position: relative;
    background: rgba(255, 255, 255, 0.9);
    padding: 5px 9px;
    min-height: 440px;
    z-index: 100;
    width: 198px;
    position: relative;
    z-index: 9999;
}

.g_navi_in>li {
    margin: 0;
    position: relative;
}

.g_navi_in>li>a {
    color: #222;
    border-bottom: 1px solid #aaa;
    display: inline-block;
    font-size: 110%;
    text-decoration: none;
    padding: 16px 7px;
    letter-spacing: -1px;
    position: relative;
    width: 100%;
}

.g_navi_in>li:last-child>a {
    border-bottom: none;
}

.g_navi_in>li>a img {
    background: #ffe8e2;
    border-radius: 50%;
    padding: 4px;
    vertical-align: middle;
    margin-right: 3px;
    margin-top: -3px;
    height: auto;
    width: 30px;
}

.g_navi_in>li>a:hover,
.g_navi_in>li.active>a,
.g_navi_in>li.addactive>a {
    color: #e30167;
}

.g_navi_in li .g_navi_in_sub {
    display: none;
    position: absolute;
    top: 0;
    left: 100%;
    width: 600px;
    z-index: 100;
}

.g_navi_in li.addactive .g_navi_in_sub {
    display: block;
}

.g_navi_in li .g_navi_in_sub>div {
    padding-left: 32px;
}

.g_navi_in li .g_navi_in_sub>div ul {
    background: #fff;
    border: 2px solid #e40167;
    margin: 0;
    padding: 16px;
    position: relative;
}

.g_navi_in li .g_navi_in_sub>div ul:before,
.g_navi_in li .g_navi_in_sub>div ul:after {
    content: '';
    position: absolute;
    top: 22px;
    left: -14px;
    width: 0;
    height: 0;
    border-style: solid;
}

.g_navi_in li .g_navi_in_sub>div ul:before {
    border-width: 10px 14px 10px 0;
    border-color: transparent #e40167 transparent transparent;
}

.g_navi_in li .g_navi_in_sub>div ul:after {
    left: -10px;
    border-width: 10px 14px 10px 0;
    border-color: transparent #fff transparent transparent;
}

.g_navi_in li .g_navi_in_sub>div ul li {
    display: inline-block;
    margin: 8px 18px 8px 0;
    padding: 0 0 0 20px;
    position: relative;
}

.g_navi_in li .g_navi_in_sub>div ul li:after,
.g_navi_in li .g_navi_in_sub>div ul li:before {
    content: '';
    position: absolute;
}

.g_navi_in li .g_navi_in_sub>div ul li:before {
    left: 0;
    top: 4px;
    background: #e40167;
    border-radius: 50%;
    height: 14px;
    width: 14px;
}

.g_navi_in li .g_navi_in_sub>div ul li:after {
    top: 8px;
    left: 4px;
    width: 5px;
    height: 5px;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: rotate(-45deg);
}

@media only screen and (max-width: 1100px) {
    .g_navi {
        margin-top: 50px;
    }

    .g_navi_in {
        min-height: 396px;
    }
}

@media only screen and (max-width: 990px) {
    .g_navi_in li .g_navi_in_sub {
        width: 500px;
    }
}

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


/**** 追従ナビ ****/

.clone-nav {
    background: rgba(255, 255, 255, 0.9);
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100%;
    transition: .4s;
    transform: translateY(-120%);
    z-index: 9999;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

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

.clone-nav .head_clone {
    display: flex;
    align-items: center;
    margin: 0 auto;
    max-width: 990px;
    padding: 0 20px;
}

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

.clone-nav .head_in {
    padding: 0;
    width: auto;
}

.clone-nav .h_main .h1 {
    position: static;
    padding: 4px 24px;
    width: 140px;
}

.clone-nav .g_navi {
    margin: 0;
    padding: 0 0 0 20px;
    width: calc(100% - 60px);
}

.clone-nav .g_navi_in {
    background: none;
    display: flex;
    min-height: auto;
    padding: 0;
    width: auto;
}

.clone-nav .g_navi_in li .g_navi_in_sub {
    display: none !important;
}

.clone-nav .g_navi_in>li {
    width: calc((100% / 6) - 4px);
}

.clone-nav .g_navi_in>li:nth-child(3) {
    width: calc((100% / 6) + 20px);
}

.clone-nav .g_navi_in>li>a {
    border: 0;
    border-right: 1px solid #aaa;
    font-size: 86%;
    padding: 4px 12px 4px 8px;
    text-align: center;
}

.clone-nav .g_navi_in>li:first-child>a {
    border-left: 1px solid #aaa;
}

.clone-nav .g_navi_in>li>a img {
    width: 22px;
}

@media (max-width: 768px) {
    .clone-nav {
        display: none;
    }
}


/**** スマホメニューに関するスタイル ****/

#menu_button {
    position: relative;
    z-index: 100;
    float: right;
    margin: -66px 10px 0;
    display: inline-block;
}

#menu_button a {
    position: relative;
    background: #fff;
    border: 2px solid #ffa8aa;
    font-size: 70%;
    display: inline-block;
    text-decoration: none;
    letter-spacing: -0.5px;
    text-align: center;
    padding-top: 33px;
    min-height: 54px;
    width: 54px;
}

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

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

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

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

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

    #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 #ffa8aa;
    box-sizing: border-box;
    color: #333;
}

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

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

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

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

#sidr .close a {
    display: inline-block;
    padding: 14px 10px 14px 36px;
    position: relative;
    width: 100%;
}

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

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

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

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

#sidr ul li {
    background: none;
    border-bottom: 1px solid #ffa8aa;
    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 #888;
    border-right: 1px solid #888;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
}

#sidr ul.sidr_navi_sub li:before {
    right: 7px;
}

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

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

#sidr ul.sidr_navi_sub {
    display: flex;
    flex-wrap: wrap;
    font-size: 80%;
}

#sidr ul.sidr_navi_sub li {
    width: 50%;
    letter-spacing: 0.8px;
}

#sidr ul.sidr_navi_sub li:nth-last-child(2) {
    border-bottom: 0;
}

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

#sidr ul.sidr_navi_sub02 {
    font-size: 85%;
    padding: 10px 8px 4px;
    display: flex;
    flex-wrap: wrap;
}

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

#sidr ul.sidr_navi_sub02 li:last-child {
    margin-right: 0;
}

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

#sidr ul.sidr_navi_sub02 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;
}


/*********** フッター ***********/

.main_footer {
    background: #fff;
    padding-top: 40px;
    position: relative;
    width: 100%;
    z-index: 200;
}

@media (max-width: 768px) {
    .main_footer {
        min-width: 100%;
    }
}


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

.online_strage_a {
    margin-top: 32px;
}

.online_strage_a .mypage {
    width: 100%;
    margin: 0 auto;
}

.online_strage_a .mypage_h2_wrapper {
    background-color: #e30167;
    padding-left: 16px;
}

.online_strage_a .mypage_title {
    color: #fff;
    margin: 0;
    padding: 0;
    height: 0;
    overflow: hidden;
}

.online_strage_a .mypage_h2_wrapper p {
    float: right;
}

.online_strage_a .mypage_contents {
    background-color: #ffe8e2;
    padding: 4px 16px 16px;
}

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

.online_strage_a .mypage_list li:before {
    display: none;
}

.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;
    border: 0;
    color: #222;
    font-size: 75%;
    padding: 4px 6px;
}

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


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

.foot_modori {
    padding-top: 24px;
    margin-bottom: 16px;
}

.foot_modori .modoriin {
    padding: 0 20px;
    max-width: 990px;
    margin: 0 auto;
    text-align: right;
}

.foot_modori a {
    font-size: 85%;
    text-decoration: none;
    position: relative;
    padding-left: 32px;
    z-index: 10;
}

.foot_modori a:before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    margin-top: -12px;
    background: #767676;
    border-radius: 2px;
    height: 24px;
    width: 24px;
}

.foot_modori a:after {
    content: '';
    height: 6px;
    width: 6px;
    position: absolute;
    left: 9px;
    top: 50%;
    margin-top: -2px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: rotate(-45deg);
}

@media (max-width: 768px) {
    .foot_modori {
        padding: 0 10px;
        margin-top: 30px;
    }

    .foot_modori .modoriin {
        padding: 0;
        width: 100%;
    }
}


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

.foot_wrap {
    border-top: 1px solid #ccc;
    padding: 16px 0 0;
    background: url(img/footer_bg_map.png) no-repeat;
    background-size: 1820px auto;
    background-position: top -130px center;
}

.foot {
    margin: 0 auto;
    max-width: 990px;
    padding: 0 20px;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
}

.foot_in {
    padding: 24px 200px 0 0;
    text-shadow: #fff 1px 1px 0, #fff -1px -1px 0, #fff -1px 1px 0, #fff 1px -1px 0, #fff 0px 1px 0, #fff 0 -1px 0, #fff -1px 0 0, #fff 1px 0 0;
}

.foot_sub {
    margin-left: auto;
}

.foot_sub ul li {
    margin-top: 5px;
}

.foot_sub ul li a {
    border: 2px solid #d0d0d0;
    background: #ffe8e2;
    display: inline-block;
    font-size: 80%;
    text-decoration: none;
    text-align: center;
    padding: 8px 16px 8px 10px;
    width: 190px;
    position: relative;
}

.foot_sub ul li a:before {
    display: block;
    content: '';
    position: absolute;
    top: 15px;
    right: 10px;
    width: 6px;
    height: 6px;
    border-right: 1px solid #888;
    border-bottom: 1px solid #888;
    transform: rotate(-45deg);
}

.foot_link {
    margin-top: 8px;
}

.foot_link ul {
    font-size: 84%;
    margin: 0 auto;
}

.foot_link li {
    padding: 0;
    display: inline-block;
    position: relative;
    margin: 8px 16px;
}

.foot_link li::after {
    display: block;
    content: '';
    position: absolute;
    top: 8px;
    left: -13px;
    width: 6px;
    height: 6px;
    border-right: 1px solid #222;
    border-bottom: 1px solid #222;
    transform: rotate(-45deg);
}

.foot_id {
    font-size: 85%;
    text-align: left;
}

.foot_id .logo {
    flex-shrink: 0;
    margin-right: 20px;
    width: 220px;
}

.foot .address {
    margin-top: 0;
    line-height: 1.8;
}

.foot .address span.main_ad {
    display: inline-block;
    font-size: 140%;
    margin-bottom: 8px;
}

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

.foot_copy {
    font-size: 85%;
    padding: 16px 0;
    text-align: center;
}

.foot_copyin {
    width: 100%;
    margin: 0 auto;
}

@media (max-width: 1280px) {
    .foot {
        padding: 0 20px;
    }
}

@media (max-width: 768px) {
    .foot {
        flex-wrap: wrap;
        padding: 0 10px;
        width: 100%;
    }

    .foot_in {
        order: 1;
        padding: 0;
    }

    .foot_link {
        padding-left: 0;
        width: 100%;
    }

    .foot_link ul {
        margin-top: 8px;
    }

    .foot_sub ul li:nth-child(n) {
        margin-top: 10px;
    }

    .foot_link li:after {
        left: -11px;
    }

    .foot_link li a {
        font-size: 90%;
    }

    .foot_link li:nth-child(even) a {
        border-right: 0;
    }

    .foot_link li:nth-child(3) a,
    .foot_link li:nth-child(4) a {
        border-bottom: 0;
    }

    .foot_id {
        border-right: 0;
        padding-right: 0;
        margin-bottom: 8px;
        width: 100%;
    }

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

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

    .foot .address span {
        display: block;
    }

    .foot_sub {
        margin: 0 auto 32px;
        width: 100%;
    }

    .foot_sub ul {
        display: flex;
        flex-wrap: wrap;
    }

    .foot_sub ul li {
        margin-right: 12px;
        width: calc(50% - 6px);
    }

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

    .foot_sub ul li a {
        padding: 10px 16px 10px 10px;
        width: 100%;
    }

    .foot_wrap {
        background: url(img/footer_bg_map_sp.png) no-repeat;
        background-size: 180px auto;
        background-position: top 10px center;
        padding-top: 120px;
    }

    .foot_copy {
        padding: 10px 0 16px;
    }
}

.foot .j_s {
    background: #fff;
    border: 2px solid #d0d0d0;
    margin-top: 0;
    margin-bottom: 12px;
}

.foot .j_s h2 {
    background: #efefef;
    padding: 6px 8px;
}

.foot .j_s_lower {
    padding: 0 8px 6px;
}

.foot .j_s_lower ul li {
    font-size: 90%;
}

.foot .j_s_lower ul li strong {
    display: inline-block;
    margin-right: 6px;
}

.foot .j_s_lower p {
    font-size: 85%;
    margin-top: 6px;
}

@media (max-width: 768px) {
    .foot .j_s {
        margin: 16px 0 8px;
        width: 100%;
    }
}


/********************** 領域共通のスタイル **********************/

.main {
    background: #fff;
    width: 100%;
    margin: 0 auto;
    padding: 0;
}

.main h2 {
    background: #e30167;
    border-radius: 6px 6px 0 0;
    color: #fff;
    text-align: center;
    font-size: 140%;
    padding: 8px;
    margin: 0;
}

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

.main .h2 {
    overflow: hidden;
}

.main .h2 h2 {
    float: left;
}

.main .h2 p {
    float: right;
}

.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);
}

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

    .main h2 {
        font-size: 120%;
        letter-spacing: 0.05em;
    }
}


/**** タイトル要素 アコーディオンのスタイル ****/

.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) {
    .design .ac_display {
        display: inline-block;
        position: absolute;
        top: 50%;
        margin: -12px 0 0;
        right: .5em;
        font-size: 72%;
        background: #fff;
        border: 1px solid #ccc;
        height: 24px;
        z-index: 100;
    }

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

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

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

    .ac_box+div {
        display: none;
    }

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

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


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

.emergency {
    margin: 24px auto 0;
    max-width: 950px;
}

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

.main .emergency .h2 h2 {
    margin-bottom: 0;
    padding: 12px;
}

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

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

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

.main .emergency_lower li {
    //	border-bottom: 1px dashed #aaa;
    padding-bottom: 10px;
}

.main .emergency_lower .date:before {
    display: none;
}

.main .emergency_lower .date {
    border-bottom: 1px dashed #aaa;
}

.main .emergency_lower li:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

@media only screen and (max-width: 990px) {
    .emergency {
        margin: 24px 20px 0;
        width: calc(100% - 40px);
    }
}

@media only screen and (max-width: 768px) {
    .emergency {
        margin: 24px 10px 0;
        width: calc(100% - 20px);
    }

    .main .emergency .h2 {
        text-align: center;
    }

    .main .emergency .h2 h2 {
        width: 100%;
    }
}


/**** スライドショーのスタイル ****/

.vis {
    position: fixed;
    top: 0;
    height: 800px;
}

.vis h2 {
    padding: 0;
    margin: 0;
    height: 0;
}

.vis .vis_bg {
    position: relative;
}

.vis .vis_bg li {
    margin: 0;
    padding: 0;
}

.vis .vis_bg li:before {
    display: none;
}

.vis .vis_bg li img {
    height: auto;
    width: 100%;
}

.vis_slider {
    width: 100vw;
}

.vis .slick_nav {
    bottom: auto;
    top: 532px;
}

.vis .vis_icon {
    position: absolute;
    padding: 0;
    margin: 0;
    width: 980px;
    margin-left: -495px;
    left: 50%;
    top: 350px;
    text-align: right;
}

.vis .vis_icon a {
    display: inline-block;
}

.vis .vis_icon img {
    height: auto;
    width: 240px;
    transition: all .2s;
}

@media print,
screen and (min-width: 769px) {
    .vis .vis_icon a:hover img {
        transform: scale(1.05);
    }
}

@media only screen and (max-width: 1100px) {
    .vis_slider {
        width: 1100px;
    }

    .vis .slick_nav {
        top: 490px;
    }

    .vis .vis_icon {
        left: 0;
        padding-right: 20px;
        margin-left: 0;
        top: 320px;
        width: 100vw;
    }

    .vis .vis_icon img {
        width: 220px;
    }
}

@media only screen and (max-width: 768px) {
    .vis {
        position: static;
        height: auto;
    }

    .vis_slider {
        width: 100%;
    }

    .vis .vis_icon {
        position: static;
        text-align: center;
        padding: 0 10px 20px;
        width: 100%;
    }

    .vis .vis_icon img {
        max-width: 100%;
        width: 100%;
    }
}


/**** 画像リストのスタイル ****/

.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% - 48.1px) / 5);
}

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

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

.main .ilist_lower ul>li a {
    display: flex;
    justify-content: center;
    width: 100%;
    text-decoration: none;
}

.main .ilist_lower ul>li .ilist_in {
    border: 2px dashed #b6a18f;
    background: #e4fae1;
    border-radius: 8px;
    padding: 16px;
    width: 100%;
}

.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: 768px) {
    .main .ilist_lower ul>li {
        width: calc((100% - 24.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% - 24.1px) / 3);
}

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

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

.main .ilist2_lower ul>li a {
    width: 100%;
    text-decoration: none;
}

.main .ilist2_lower ul>li .ilist_in {
    background: #ffe8e2;
    border-radius: 6px;
    padding: 16px;
    display: flex;
    width: 100%;
}

.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: 768px) {
    .main .ilist2_lower ul>li {
        width: calc((100% - 12.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 {
    margin-top: 24px;
}

.category h2 {
    border-radius: 6px;
}

.category2 {
    margin-top: 24px;
}

.category3 {
    margin-top: 24px;
}

.category4 {
    margin-top: 24px;
}

.category5 {
    margin-top: 24px;
}

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

.main .category_lower {
    border: 2px solid #e30167;
    border-radius: 0 0 6px 6px;
    border-top: none;
    padding: 4px 16px 16px;
}


/**** 各課の窓口のスタイル ****/

.kakuka {
    margin-top: 24px;
}

.main .kakuka h2 {
    border-radius: 6px;
}


/**** 催し物・講座のスタイル ****/

.event {
    margin-top: 24px;
}

.main .event_lower {
    border: 2px solid #e30167;
    border-radius: 0 0 6px 6px;
    border-top: none;
    padding: 4px 16px 16px;
}

.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: #e30167;
    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;
    border-radius: 4px;
    font-size: 81.25%;
    margin-bottom: 10px;
    text-decoration: none;
    padding: 4px 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-top: 24px;
}

.main .calendar_lower {
    overflow: auto;
    border: 2px solid #e30167;
    border-radius: 0 0 6px 6px;
    border-top: none;
    padding: 4px 16px 16px;
}

.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: middle;
}

.main .calendar table {
    background: #fff;
    width: 100%;
}

.main .calendar caption {
    display: none;
}

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

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

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

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

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

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

.main .calendar .today a {
    color: #fff;
}


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

.new {
    margin-top: 24px;
}

.main .new .h2 {
    background: #e30167;
    border-radius: 6px 6px 0 0;
}

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

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

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

.main .new ul:not(.more) li {
    overflow: hidden;
    border-bottom: 1px dashed #aaa;
    padding-bottom: 12px;
}

.main .new ul:not(.more) li:before {
    left: 2px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 4px 0 4px 5px;
    border-color: transparent transparent transparent #e40167;
    transform: rotate(0deg);
}

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

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


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

.topics {
    margin-top: 24px;
}

.main .topics .h2 {
    background: #e30167;
    border-radius: 6px 6px 0 0;
}

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

.main .topics_lower {
    border: 2px solid #e30167;
    border-radius: 0 0 6px 6px;
    border-top: none;
    padding: 4px 16px 16px;
}

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

.main .topics ul:not(.more) li {
    overflow: hidden;
    border-bottom: 1px dashed #aaa;
    padding-bottom: 12px;
}

.main .topics ul:not(.more) li:before {
    left: 2px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 4px 0 4px 5px;
    border-color: transparent transparent transparent #e40167;
    transform: rotate(0deg);
}

.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;
    max-width: 360px;
    margin-left: auto;
}

.main .more li {
    padding: 0;
    margin: 2px;
    width: calc(50% - 8px);
}

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

.main .more li a {
    background: #ffa8aa;
    display: inline-block;
    padding: 10px 8px;
    text-align: center;
    text-decoration: none;
    width: 100%;
}

.main .more li.rss span {
    background: url(../images/rss2.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 {
        width: calc(100% - 4px);
    }

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


/**** タブ切り替えのスタイル ****/

.main .free_tab {
    margin-top: 24px;
}

.main .free_tab .tab_index {
    border-bottom: 4px solid #e30167;
    display: flex;
    justify-content: space-between;
    margin-bottom: -25px;
}

.main .free_tab .tab_index .tab_change {
    text-align: center;
    display: flex;
    font-size: 110%;
    width: 49%;
}

.main .free_tab .tab_index .tab_change a {
    background: #ffa8aa;
    border-radius: 8px 8px 0 0;
    display: inline-block;
    padding: 14px 10px 12px;
    width: 100%;
    text-decoration: none;
}

.main .free_tab .tab_index .tab_change.is-active a {
    background: #e30167;
    color: #fff;
}

.main .free_tab li.tab_panel {
    margin: 0;
    padding: 0;
}

.main .free_tab li.tab_panel:before {
    display: none;
}

.main .free_tab h2 {
    background: none;
    padding: 0;
    margin: 0;
    height: 0;
}

@media only screen and (max-width: 768px) {
    .main .free_tab .tab_index .tab_change {
        font-size: 90%;
    }

    .main .free_tab .new,
    .main .free_tab .topics {
        margin-right: 0;
        margin-left: 0;
        width: 100%;
    }
}


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

.pickup {
    margin-top: 24px;
}

.main .pickup_lower {
    border: 2px solid #e30167;
    border-radius: 0 0 6px 6px;
    border-top: none;
    padding: 4px 16px 16px;
}

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

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

.main .pickup_lower .pickup_sub h3 {
    font-size: 110%;
}

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


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

.pickup2 {
    margin-top: 24px;
}

.main .pickup2_lower {
    border: 2px solid #e30167;
    border-radius: 0 0 6px 6px;
    border-top: none;
    padding: 4px 16px 16px;
}

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

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

.main .pickup2_lower .pickup_sub h3 {
    font-size: 110%;
}

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


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

.ranking {
    margin-top: 24px;
}

.main .ranking_lower {
    border: 2px solid #e30167;
    border-radius: 0 0 6px 6px;
    border-top: none;
    padding: 4px 16px 16px 10px;
}

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

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

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


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

.j_s {
    margin-top: 24px;
}

.main .j_s_lower {
    border: 2px solid #e30167;
    border-radius: 0 0 6px 6px;
    border-top: none;
    padding: 4px 16px 16px;
}

.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 {
    border: 1px solid #ddd;
    padding: 24px;
    margin-top: 24px;
}

.bana h2 {
    background: none;
    color: #222;
    font-size: 120%;
    text-align: left;
    padding: 0;
    margin-bottom: 8px;
}

.bana .h2 h2 {
    background: none;
    color: #222;
    padding: 0;
    float: left;
    font-size: 120%;
    margin-bottom: 8px;
}

.bana .h2 p {
    float: left;
    font-size: 85%;
    margin: 6px 0 6px 8px;
}

.bana_lower {
    text-align: center;
}

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

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

.main .bana ul:not(.about) li {
    padding-left: 0;
    width: 150px;
    margin-right: 37px;
}

.main .bana ul:not(.about) li:nth-of-type(5n) {
    margin-right: 0;
}

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

.main .bana ul:not(.about) li .window {
    margin-top: 5px;
}

.main .bana ul.about {
    margin-top: 16px;
}

.main .bana ul.about li {
    font-size: 85%;
    margin-right: 12px;
    padding: 0;
}

.main .bana ul.about li a {
    display: inline-block;
    padding: 0 3px;
}

@media only screen and (max-width: 768px) {
    .bana {
        margin-right: 12px !important;
        margin-left: 12px !important;
    }

    .main .bana ul:not(.about) li {
        margin: 16px 0 0;
        padding: 0 4px;
        width: 33.333%;
    }
}

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

    .bana .h2 p {
        margin: 0 0 10px 0;
    }

    .main .bana ul.about {
        margin-top: 0;
    }
}


/**** RSSのスタイル ****/

.rss {
    margin-top: 24px;
}

.rss .rss_lower {
    border: 2px solid #e30167;
    border-radius: 0 0 6px 6px;
    border-top: none;
    padding: 4px 16px 16px;
}

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

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

.rss_body .rss_icon {
    margin-left: 10px;
}

.rss_body h2 a.rss_icon {
    font-size: 68.75%;
    font-weight: normal;
    margin-bottom: 4px;
}


/**** RSSアイコンのスタイル ****/

a.rss_icon {
    background: #FF8F21;
    display: inline-block;
    color: #fff;
    font-size: 100%;
    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;
    letter-spacing: -0.01px;
    line-height: 1.1;
    position: relative;
    vertical-align: middle;
}

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

a.rss_icon2 {
    background: #FF8F21;
    display: inline-block;
    color: #fff;
    font-size: 68.75%;
    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: 3px 28px 1px 6px;
    letter-spacing: -0.01px;
    line-height: 1.1;
    position: relative;
    vertical-align: middle;
}

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


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

.image {
    text-align: center;
    margin-top: 24px;
}

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

.image .image_img {
    display: block;
}


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

.link {
    margin-top: 24px;
}

.link h2 {
    border-radius: 6px;
}


/**** RSS一覧のスタイル ****/

.rss_list {
    margin-top: 24px;
}

.rss_list h2 {
    border-radius: 6px;
}


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

.option {
    margin-top: 24px;
}

.main .option_lower {
    border: 2px solid #e30167;
    border-radius: 0 0 6px 6px;
    border-top: none;
    padding: 4px 16px 16px;
}


/**** FAQ（よくある質問）のスタイル ****/

.faq {
    margin-top: 24px;
}

.main .faq h2 {
    border-radius: 6px;
}


/**** 新着FAQ ****/

.faq_new {
    margin-top: 24px;
}

.main .faq_new_lower {
    border: 2px solid #e30167;
    border-radius: 0 0 6px 6px;
    border-top: none;
    padding: 4px 16px 16px;
}

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

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


/**** 見られているFAQのスタイル ****/

.popular {
    margin-top: 24px;
}

.main .popular_lower {
    border: 2px solid #e30167;
    border-radius: 0 0 6px 6px;
    border-top: none;
    padding: 4px 16px 16px;
}

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


/********************** 領域共通のスタイル **********************/

.wrap_in {
    padding: 0 20px;
    margin: 0 auto;
    max-width: 990px;
    overflow: hidden;
}

.main .h2_none {
    background: none;
    border: 0;
    padding: 0;
    margin: 0;
    height: 0;
    overflow: hidden;
}

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

.bana {
    margin-right: auto;
    margin-left: auto;
    max-width: 950px;
}

@media only screen and (max-width: 990px) {
    .bana {
        margin-right: 20px;
        margin-left: 20px;
    }
}

@media only screen and (max-width: 768px) {
    .bana {
        padding: 16px;
        margin-right: 0;
        margin-left: 0;
    }
}

.main h2>img {
    margin-right: 8px;
    margin-top: -2px;
    vertical-align: middle;
    height: auto;
    width: 42px;
}

@media only screen and (max-width: 768px) {
    .main h2>img {
        width: 38px;
    }
}

.ilist,
.ilist2,
.category,
.category2,
.category3,
.category4,
.category5,
.kakuka,
.event,
.calendar,
.new,
.topics,
.free_tab,
.pickup,
.pickup2,
.ranking,
.j_s,
.image,
.link,
.option,
.faq,
.faq_new,
.popular,
.rss,
.rss_list {
    margin-right: auto;
    margin-left: auto;
    max-width: 950px;
}

.ilist,
.ilist2 {
    margin-top: 40px;
}

.ilist h2,
.ilist2 h2 {
    background: none;
    color: #222;
    text-align: center;
    font-size: 140%;
    padding: 2px 0 0;
    margin-bottom: 16px;
}

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

    .ilist,
    .ilist2,
    .category,
    .category2,
    .category3,
    .category4,
    .category5,
    .kakuka,
    .event,
    .calendar,
    .new,
    .topics,
    .free_tab,
    .pickup,
    .pickup2,
    .ranking,
    .j_s,
    .image,
    .link,
    .option,
    .faq,
    .faq_new,
    .popular,
    .rss,
    .rss_list {
        margin-right: 12px;
        margin-left: 12px;
        width: calc(100% - 24px);
    }

    .ilist,
    .ilist2 {
        margin-top: 32px;
    }

    .ilist h2,
    .ilist2 h2 {
        margin-bottom: 12px;
    }
}


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

.free_sk {
    background: #ffe8e2;
    padding: 24px 0;
}

.free_sk .wrap_in {
    display: flex;
    overflow: visible;
}


/* 検索 */

.free_sk .src_box {
    width: calc(100% - 420px);
}

.free_sk .src_box .q {
    padding: 4px !important;
    font-size: 85%;
    min-height: 50px;
    width: 88% !important;
}

.free_sk .src_box #search_button {
    min-height: 50px;
    width: 12%;
}

@media only screen and (max-width: 768px) {
    .free_sk {
        padding: 18px 0;
    }

    .free_sk .wrap_in {
        flex-wrap: wrap;
        padding: 0 12px;
    }

    .free_sk .src_box {
        width: 100%;
    }

    .free_sk .src_box .q {
        min-height: 46px;
        width: 80% !important;
    }

    .free_sk .src_box #search_button {
        min-height: 46px;
        width: 20%;
    }
}


/* よく使われるキーワード */

.keyword {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    position: relative;
    margin-left: 10px;
    width: 200px;
}

.keyword_btn {
    margin: 0;
    width: 100%;
}

.keyword_btn a {
    position: relative;
    border-radius: 4px;
    letter-spacing: -0.01em;
    display: block;
    text-align: center;
    text-decoration: none;
    padding: 12px 8px;
    width: 100%;
    font-weight: bold;
    background-color: #fff;
    border: 1px solid #ffbd85;
    box-shadow: 0 0 2px 0 rgba(255, 164, 87, 0.2);
    z-index: 0;
}

.keyword_btn a:hover {
    text-decoration: underline;
}

.keyword_btn a::before {
    position: absolute;
    top: 3px;
    left: 3px;
    display: block;
    content: "";
    width: calc(100% - 6px);
    height: calc(100% - 6px);
    background-color: #ffebc6;
    border-radius: 3px;
    z-index: -1;
    transition-duration: 0.5s;
}

.keyword_btn a:hover::before {
    background-color: #ffe1a9;
}

.keyword_btn a span {
    background-size: 20px auto;
}

.keyword_box {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    z-index: 100;
}

.keyword_box .keyword_box_in {
    padding-top: 16px;
}

.keyword_box .keyword_box_in>div {
    position: relative;
    background: #fff;
    border-radius: 8px;
    padding: 16px;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.2);
    border: 3px solid #ffa8aa;
    width: 500px;
}

.keyword_box .keyword_box_in>div:before {
    content: '';
    position: absolute;
    right: 17%;
    top: -12px;
    margin-top: -12px;
    border: 12px solid transparent;
    border-bottom: 12px solid #ffa8aa;
}

.keyword_box .keyword_box_in ul li {
    display: inline-block;
    position: relative;
    padding-left: 12px;
    margin: 8px 12px;
}

.keyword_box .keyword_box_in ul li:before {
    content: '';
    display: block;
    position: absolute;
    top: 7px;
    left: -2px;
    border-right: 2px solid #ffa8aa;
    border-bottom: 2px solid #ffa8aa;
    width: 6px;
    height: 6px;
    transform: rotate(-45deg);
}

.keyword_box .keyword_box_in .close {
    text-align: center;
}

.keyword_box .keyword_box_in .close a {
    background: #767676;
    border-radius: 2px;
    color: #fff;
    font-size: 85%;
    display: inline-block;
    padding: 4px 8px;
    text-decoration: none;
}

@media only screen and (max-width: 768px) {
    .keyword {
        margin-top: 16px;
        margin-left: 0;
        width: 100%;
    }

    .keyword_btn {
        margin: 0;
        width: 100%;
    }

    .keyword_btn a {
        padding: 14px 10px;
        text-align: center;
        width: 100%;
    }

    .keyword_box .keyword_box_in>div {
        padding: 12px;
        width: 100%;
    }

    .keyword_box .keyword_box_in>div:before {
        right: 48%;
    }
}

/**** ▼▼ 最近のイベント ▼▼ ****/
.main .recently-calendar {
    margin-left: 10px;
}

.main .recently-calendar p {
    margin-top: 0;
}

.main .recently-calendar p a {
    position: relative;
    letter-spacing: -0.01em;
    display: block;
    text-align: center;
    text-decoration: none;
    padding: 12px 8px;
    width: 200px;
    min-height: 50px;
    font-weight: bold;
    background-color: #fff;
    border: 1px solid #ffbd85;
    box-shadow: 0 0 2px 0 rgba(255, 164, 87, 0.2);
    z-index: 0;
}

.main .recently-calendar p a:hover {
    text-decoration: underline;
}

.main .recently-calendar p a::before {
    position: absolute;
    top: 3px;
    left: 3px;
    display: block;
    content: "";
    width: calc(100% - 6px);
    height: calc(100% - 6px);
    background-color: #ffebc6;
    border-radius: 3px;
    z-index: -1;
    transition-duration: 0.5s;
}

.main .recently-calendar p a:hover::before {
    background-color: #ffe1a9;
}

@media only screen and (max-width: 768px) {
    .main .recently-calendar {
        margin-top: 16px;
        margin-left: 0px;
        width: 100%;
    }

    .main .recently-calendar p a {
        width: 100%;
    }
}

/**** ▲▲ 最近のイベント ▲▲ ****/


/* いざという時に */

.main .free_emergency2 {
    max-width: 990px;
    margin: 24px auto 0;
    padding: 0 20px;
}

.emergency2 {
    margin: 24px auto 0;
    max-width: 950px;
    background: #fff;
    display: flex;
    padding: 0;
}

.main .emergency2 .h2 {
    background: #cc0224;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 4px 8px 10px;
    width: 210px;
    overflow: hidden;
}

.main .emergency2 .h2 h2 {
    background: url(img/icon_eme.png) no-repeat left center;
    background-size: 28px auto;
    padding: 0 0 0 32px;
    margin-bottom: 0;
    font-size: 110%;
    letter-spacing: 0.01em;
}

.main .emergency2 .h2 h2 span {
    font-size: 128%;
}

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

.main .emergency2_lower {
    border: 2px solid #cc0224;
    padding: 4px 16px 14px;
    width: calc(100% - 210px);
}

.main .emergency2_lower li {
    display: inline-block;
    margin-top: 12px;
    margin-right: 12px;
}

.main .emergency2_lower li:before {
    border-color: #cc0224;
}

@media only screen and (max-width: 768px) {
    .main .free_emergency2 {
        padding: 0 10px;
    }

    .emergency2 {
        flex-wrap: wrap;
    }

    .main .emergency2 .h2 {
        width: 100%;
    }

    .main .emergency2 .h2 h2 {
        padding-left: 32px;
        width: auto;
    }

    .main .emergency2_lower {
        width: 100%;
    }
}


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

.free_lc {
    background: #fff url(img/bg01.png) no-repeat top 50px center;
    padding: 40px 0;
}


/* ライフシーンから探す */

.main .free_life {
    float: left;
    margin-right: 40px;
    width: calc(60% - 20px);
}

.main .free_life .ilist {
    margin-top: 0;
}

.main .free_life .ilist_lower ul>li .ilist_in {
    padding: 16px 12px 12px;
}

.main .free_life .ilist_lower ul>li {
    margin-right: 12px;
    width: calc((100% - 24.1px) / 3);
}

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

.main .free_life .ilist_lower ul>li .ilist_left img {
    height: auto;
    width: 52px;
}

@media only screen and (max-width: 768px) {
    .main .free_life {
        float: none;
        margin-right: 0;
        width: 100%;
    }

    .main .free_life .ilist {
        margin-right: 0;
        margin-left: 0;
        width: 100%;
    }

    .main .free_life .ilist_lower ul>li .ilist_in {
        padding: 10px 8px;
    }
}


/* 便利メニュー */

.main .free_menu {
    float: right;
    width: calc(40% - 20px);
}

.main .free_menu .ilist {
    margin-top: 0;
}

.main .free_menu .ilist_lower ul>li .ilist_in {
    background: #fff;
    border: 3px solid #ffa8aa;
    padding: 18px 10px;
    letter-spacing: 0;
}

.main .free_menu .ilist_lower ul>li:nth-child(n) {
    margin-right: 12px;
    width: calc((100% - 12.1px) / 2);
}

.main .free_menu .ilist_lower ul>li:nth-child(even) {
    margin-right: 0;
}

.main .free_menu .ilist_lower ul>li .ilist_left img {
    height: auto;
    width: 42px;
}

.main .event_calender {
    margin: 0;
}

.main .event_calender a {
    position: relative;
    display: flex;
    align-items: center;
    padding-left: 70px;
    font-size: 125%;
    font-weight: bold;
    text-decoration: none;
    width: 100%;
    min-height: 60px;
    z-index: 0;
    overflow: hidden;
    border-radius: 8px;
}

.main .event_calender a:hover {
    text-decoration: underline;
}

.main .event_calender a::before,
.main .event_calender a::after {
    position: absolute;
    display: block;
    content: "";
}

.main .event_calender a::before {
    top: 4px;
    left: -5px;
    width: 75px;
    height: 74px;
    background-image: url(img/inzai-look_above.png);
    background-size: cover;
    transition-duration: 0.5s;
}

.main .event_calender a:hover::before {
    top: 0;
    left: 0px;
    transform: rotate(10deg) scale(1);
}

.main .event_calender a::after {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #caecfe;
    z-index: -1;
}

.main .event_calender a span.event-content {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 8px;
    width: calc(100% - 10px);
    min-height: 40px;
    border-radius: 4px;
}

a.btn--shadow {
    -webkit-box-shadow: 0 3px 5px rgba(0, 0, 0, .3);
    box-shadow: 0 3px 5px rgba(0, 0, 0, .3);
}

@media only screen and (max-width: 768px) {
    .main .free_menu {
        margin-top: 40px;
        float: none;
        width: 100%;
    }

    .main .free_menu .ilist {
        margin: 0;
        width: 100%;
    }
}

@media only screen and (max-width: 480px) {
    .main .free_menu .ilist_lower ul>li:nth-child(n) {
        margin-right: 12px;
        width: calc((100% - 12.1px) / 2);
    }

    .main .free_menu .ilist_lower ul>li:nth-child(even) {
        margin-right: 0;
    }

    .main .free_menu .ilist_lower ul>li .ilist_in {
        min-height: auto;
        padding: 12px 8px 10px;
    }

    .main .free_menu .ilist_lower ul>li .ilist_left img {
        width: 36px;
    }

    /* .main .event_calender a {
        padding: 20px 10px;
    } */
}

.free_es {
    width: calc(40% - 20px);
}


/* 市政情報 */

.main .free_shisei h2 {
    padding: 0;
    margin: 0;
    height: 0;
    overflow: hidden;
}

.main .free_shisei .ilist {
    margin-top: 16px;
}

.main .free_shisei .ilist_lower ul>li:nth-child(n) {
    margin-right: 12px;
    width: calc((100% - 12.1px) / 2);
}

.main .free_shisei .ilist_lower ul>li:nth-child(even) {
    margin-right: 0;
}

.main .free_shisei .ilist_lower ul>li .ilist_in {
    border: 0;
    background: #fff;
    padding: 0;
    overflow: hidden;
}

.main .free_shisei .ilist_lower ul>li .ilist_left {
    padding: 10px 10px 0;
    width: 100%;
}

.main .free_shisei .ilist_lower ul>li .ilist_left img {
    border: 1px solid #efefef;
}

.main .free_shisei .ilist_lower ul>li .ilist_right {
    margin: 0;
    padding: 10px;
}

@media only screen and (max-width: 768px) {
    .free_es {
        margin-left: 0;
        margin-top: 32px;
        width: 100%;
    }

    .main .free_shisei .ilist {
        margin: 12px 0 0;
        width: 100%;
    }
}

.free_ts {
    background: #ffe8e2 url(img/bg02.png) no-repeat bottom 30px center;
    padding: 40px 0;
}

.free_ts .wrap_in {
    display: flex;
}

@media only screen and (max-width: 768px) {
    .free_ts {
        padding: 30px 0 40px;
    }

    .free_ts .wrap_in {
        flex-wrap: wrap;
    }
}


/* 新着情報 */

.main .free_new {
    float: left;
    margin: 0 40px 0 0;
    width: calc(60% - 20px);
}

.main .free_new .new {
    margin-top: 0;
}

.main .free_new .new h2 {
    background: #ffa8aa;
    color: #222;
}

.main .free_new .new_lower {
    border-color: #ffa8aa;
    padding: 0 0 16px;
}

.main .free_new .new_lower ul {
    padding: 0 16px;
}

.main .free_new .new_lower ul .icon {
    display: inline-block;
    margin-left: 10px;
}

.main .free_new .new_lower ul .icon img {
    height: 20px;
    width: auto;
}

@media print,
screen and (min-width: 769px) {
    .main .free_new .new_lower ul {
        max-height: 368px;
        overflow-y: auto;
    }
}

@media only screen and (max-width: 768px) {
    .main .free_new {
        float: none;
        margin-right: 0;
        width: 100%;
    }

    .main .free_new .new {
        margin: 0;
        width: 100%;
    }

    .main .free_new .new_lower ul li {
        margin-top: 0;
        padding-top: 10px;
    }

    .main .free_new .new_lower ul li:before {
        top: 16px;
    }
}


/* ピックアップインフォメーション */

.main .free_pickup {
    background: #e5f6ff url(img/bg03.png) no-repeat center bottom 60px;
    padding: 50px 0;
}

.main .free_pickup .ilist {
    margin-top: 0;
}

.main .free_pickup .ilist ul {
    margin: 0 60px;
}

.main .free_pickup li {
    padding: 6px;
    margin: 0;
}

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

.main .free_pickup .ilist_in a {
    background: #fff;
}

.main .free_pickup .ilist_in {
    background: #fff;
    border-radius: 6px;
    padding: 5px;
}

.main .free_pickup .ilist_left img {
    border: 1px solid #efefef;
}

.main .free_pickup a {
    display: block;
    text-decoration: none;
}

.main .free_pickup .ilist_title {
    text-align: center;
    padding: 10px 10px 6px;
    text-shadow: #fff 1px 1px 0, #fff -1px -1px 0, #fff -1px 1px 0, #fff 1px -1px 0, #fff 0px 1px 0, #fff 0 -1px 0, #fff -1px 0 0, #fff 1px 0 0;
}

@media only screen and (max-width: 768px) {
    .main .free_pickup {
        padding: 20px 0 40px;
    }
}

@media only screen and (max-width: 480px) {
    .main .free_pickup li {
        padding: 0 6px;
    }
}


/* 関連リンク */

.main .free_kanren .ilist {
    border: 1px solid #ddd;
    padding: 24px;
}

.main .free_kanren .ilist h2 {
    font-size: 120%;
    margin-bottom: 8px;
    text-align: left;
}

.main .free_kanren .ilist_lower ul>li:nth-child(n) {
    margin-right: 12px;
    width: calc((100% - 48.1px) / 5);
}

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

.main .free_kanren .ilist_lower ul>li img {
    width: 100%;
}

@media only screen and (max-width: 768px) {
    .main .free_kanren .ilist {
        padding: 16px;
        margin-left: 0;
        margin-right: 0;
        width: 100%;
    }

    .main .free_kanren .ilist_lower ul>li:nth-child(n) {
        margin-right: 8px;
        width: calc((100% - 16.1px) / 3);
    }

    .main .free_kanren .ilist_lower ul li a {
        display: inline-block;
    }

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

@media only screen and (max-width:480px) {
    .main .free_kanren .ilist_lower ul>li:nth-child(n) {
        margin-right: 8px;
        width: calc((100% - 8.1px) / 2);
    }

    .main .free_kanren .ilist_lower ul li:nth-child(even) {
        margin-right: 0;
    }
}


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


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


/********************** 中ページのスタイル **********************/

body.inbody .main_header:not(.clone-nav) .h_main .h1 {
    padding: 21px 16px 20px;
    box-shadow: 0 0 8px rgba(100, 100, 100, 0.3);
}

body.inbody .main_header:not(.clone-nav) .g_navi {
    background: #ffe8e2;
    padding: 2px 20px;
    margin: 0 auto;
    max-width: 100%;
}

body.inbody .main_header:not(.clone-nav) .g_navi_in {
    background: #ffe8e2;
    padding: 0 0 0 203px;
    display: flex;
    min-height: auto;
    margin: 0 auto;
    max-width: 950px;
    width: 100%;
    z-index: 10;
}

body.inbody .main_header:not(.clone-nav) .g_navi_in li {
    border-right: 2px solid #ffe8e2;
    display: flex;
    margin: 0;
    width: calc((100% / 6) - 4px);
}

body.inbody .main_header:not(.clone-nav) .g_navi_in li:nth-child(4) {
    width: calc((100% / 6) + 20px);
}

body.inbody .main_header:not(.clone-nav) .g_navi_in li a {
    background: #fff;
    border: 0;
    padding: 8px 3px;
    font-size: 90%;
    text-align: center;
}

body.inbody .main_header:not(.clone-nav) .g_navi_in li a strong {
    display: block;
    width: 100%;
}

body.inbody .main_header:not(.clone-nav) .g_navi_in>li>a img {
    margin: 0 0 6px 0;
    width: 24px;
}

@media only screen and (max-width: 768px) {
    body.inbody .main_header:not(.clone-nav) .h_main .h1 {
        padding: 2px 14px;
        margin: -8px 0;
    }

    body.inbody #menu_button {
        margin-top: -76px;
    }
}


/**** パンくずリストのスタイル ****/

.pankuzu {
    padding: 0 20px;
    margin: 16px auto;
    max-width: 990px;
    font-size: 85%;
}

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

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

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

@media only screen and (max-width: 768px) {
    .pankuzu {
        margin: 16px 0 0;
        padding: 0 10px;
        width: 100%;
    }
}


/**** 中ページメインのスタイル ****/

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

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

.main_naka_top {
    overflow: hidden;
}

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

.main_naka_h1 h1 {
    padding: 12px 6px;
    font-size: 180%;
    border-top: 4px solid #e30167;
    border-bottom: 2px dashed #e30167;
}

.main_naka_h1_img {
    margin: 12px auto 24px;
    min-height: 180px;
    max-width: 950px;
    position: relative;
    padding: 10px 0;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.main_naka_h1_img h1 {
    font-size: 180%;
    border-left: 8px solid #e30167;
    padding: 0 0 0 16px;
    text-shadow: #fff 2px 0, #fff -2px 0, #fff 0 -2px, #fff 0 2px, #fff 2px 2px, #fff -2px 2px, #fff 2px -2px, #fff -2px -2px, #fff 1px 2px, #fff -1px 2px, #fff 1px -2px, #fff -1px -2px, #fff 2px 1px, #fff -2px 1px, #fff 2px -1px, #fff -2px -1px;
    margin-left: 20px;
    width: 100%;
}

.main_naka_h1_img img {
    position: absolute;
    top: 0;
    left: 0;
    height: auto;
    width: 100%;
    z-index: -1;
}

@media only screen and (max-width: 768px) {
    .main_naka_h1_img {
        min-height: 100px;
        height: auto;
        width: 100%;
    }

    .main_naka_h1 h1 {
        font-size: 160%;
        padding: 10px 4px;
    }
}

@media only screen and (max-width: 480px) {
    .main_naka_h1_img {
        min-height: 50px;
    }

    .main_naka_h1_img h1 {
        font-size: 160%;
    }
}

@media only screen and (max-width: 370px) {
    .main_naka_h1_img {
        padding: 4.5% 0;
    }
}

.main_naka h2 {
    font-size: 136%;
    width: 100%;
    margin: 16px 0 0;
    padding: 10px;
    background: #e4fae1;
    border-left: 5px solid #92d689;
}

.main_naka h3 {
    margin: 16px 0 0;
    padding: 0 4px 4px;
    border-bottom: 3px solid #92d689;
    font-size: 120%;
}

.main_naka h4 {
    margin: 16px 0 0;
    padding: 0 0 0 16px;
    font-size: 110%;
    position: relative;
}

.main_naka h4:before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    margin-top: -5px;
    background: #92d689;
    height: 10px;
    width: 10px;
}

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

.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: 2px solid #999;
    border-bottom: 2px solid #999;
    transform: rotate(-45deg);
}

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

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

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


/* ページャーのスタイル */

.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 .main_naka_new {
    border: 1px solid #ccc;
    margin-top: 24px;
    padding: 0;
}

.design .main_naka .main_naka_new h2 {
    background: #ffe8e2;
    border: 0;
    margin: 0;
    padding: 10px 20px;
}

.design .main_naka .main_naka_new ul {
    padding: 16px 16px 24px;
}

.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: 768px) {
    .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 table {
    margin: 16px 0 0;
    width: 100%;
}

.design .main_naka caption {
    display: none;
}

.design .main_naka .th01 {
    padding: 12px 12px 10px;
    border: 1px solid #ccc;
    text-align: center;
    vertical-align: middle;
    background: #ffe8e2;
    width: 240px;
}

.design .main_naka .th02 {
    padding: 12px 12px 10px;
    border: 1px solid #ccc;
    text-align: left;
    background: #ffe8e2;
    font-size: 85%;
}

.design .main_naka td {
    border: 1px solid #ccc;
}

.design .main_naka .t_tel {
    padding: 12px 12px 10px;
    text-align: left;
    font-size: 85%;
}

.design .main_naka .t_fax {
    padding: 12px 12px 10px;
    text-align: left;
    font-size: 85%;
}

.design .main_naka .table03 .t_mail {
    padding: 12px 12px 10px;
    text-align: left;
    font-size: 85%;
}

.design .main_naka .t_gyomu {
    padding: 12px 12px 10px;
    text-align: left;
    font-size: 85%;
}

.design .main_naka .t_address {
    padding: 12px 12px 10px;
    text-align: left;
    font-size: 85%;
}

.design .main_naka .kakuka_link {
    background: #eee;
    padding: 4px 16px 14px;
    margin: 24px 0 8px;
    overflow: hidden;
}

.design .main_naka .kakuka_link li {
    float: left;
    margin-right: 16px;
}

.design .main_naka .lnk_top {
    font-size: 85%;
    text-align: right;
}

@media only screen and (max-width: 768px) {
    .design .main_naka .kakuka_post .th01 {
        width: 140px;
    }
}


/**** 各課のホームページのスタイル ****/


/* メニューセレクト */

.kakuka_head .kakuka_syosai {
    padding-left: 2px;
}

.kakuka_head select {
    font-size: 85%;
    margin-right: 12px;
}


/* 親子ジャンル */

.design .main_naka .kakuka_box {
    margin-top: 24px;
}

.design .main_naka .kakuka_box h2 {
    margin-top: 0;
}

@media only screen and (max-width: 768px) {
    .design .main_naka .kakuka_box {
        float: none;
        margin-top: 24px;
        width: 100%;
    }

    .design .main_naka .th01 {
        width: 40%;
    }
}


/* お問い合わせ */

.design .main_naka .toiawase {
    background: #fff;
    border: 1px solid #ccc;
    margin-top: 24px;
    padding: 16px;
}

.design .main_naka .toiawase h2 {
    margin-top: 0;
}

.design .main_naka .toiawase h2::after {
    background: #999;
}


/**** 各課のホームページ・カテゴリごとの緊急情報のスタイル ****/

.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 .category_p01 {
    margin-top: -12px;
}

.design .main_naka .page_left_box {
    float: left;
    width: 100%;
    margin: 24px -250px 16px 0;
    overflow: hidden;
}

.design .main_naka .page_left {
    margin: 0 250px 0 0;
}

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

.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:first-child h2,
.design .main_naka .page_left_box .cate_post02:first-child h2 {
    margin-top: 0;
}

.design .main_naka .page_left_box .cate_post02 {
    display: flex;
    flex-wrap: wrap;
}

.design .main_naka .page_left_box .cate_post02 li {
    border: 0;
    padding: 0 0 0 4px;
    margin: 0 3% 24px 0;
    position: relative;
    width: 48.5%;
}

.design .main_naka .page_left_box ul.cate_post02 li:nth-child(even) {
    margin-right: 0;
}

.design .main_naka .page_left_box .cate_post02 li .category_h02 {
    font-size: 136%;
    padding-left: 16px;
    position: relative;
}

.design .main_naka .page_left_box .cate_post02 li .category_h02:before {
    content: '';
    position: absolute;
    display: block;
    content: '';
    top: 12px;
    left: 0;
    width: 6px;
    height: 6px;
    border-right: 2px solid #70bd66;
    border-bottom: 2px solid #70bd66;
    transform: rotate(-45deg);
}

.design .main_naka .page_left_box .cate_post02 li .category_p02 {
    padding-left: 16px;
    font-size: 90%;
}

.design .main_naka .page_left_box .cate_post02 .category_p02 .cat_lst {
    font-size: 100%;
}

.design .main_naka .page_left_box .page_left_flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.design .main_naka .page_left_box .page_left_flex .cate_post01 {
    border: 1px solid #ccc;
    margin-top: 0;
    margin-bottom: 24px;
    width: 49%;
}

.design .main_naka .page_left_box .page_left_flex .cate_post01 h2 {
    border: 0;
    border-bottom: 3px solid #92d689;
    margin: 0;
    padding: 10px 16px;
}

.design .main_naka .page_left_box .page_left_flex .cate_post01 h2:after {
    display: none;
}

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

.design .main_naka .page_left_box .page_left_flex .category01 {
    padding: 0 16px 16px;
}

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

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

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

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

.design .main_naka .category_p02 {
    font-size: 85%;
    margin-top: 12px;
}

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

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

    .design .main_naka .page_left_box .page_left_flex .cate_post01 {
        width: 100%;
    }

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

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

    .design .main_naka .page_left_box .cate_post02 li {
        margin-right: 0;
        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: 16px;
    padding: 0 0 16px;
    width: 100%;
    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 .bana {
    margin-top: 24px;
    clear: both;
}

.design .main_naka .bana h2 {
    background: #ffe8e2;
    border: 0;
    padding: 8px 10px 6px;
    margin-top: 0;
}

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

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

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

.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;
}

@media only screen and (max-width: 768px) {
    .design .main_naka .bana {
        margin-right: 0 !important;
        margin-left: 0 !important;
    }
}


/**** 催し物・講座のスタイル ****/

.design .main_naka .event_navi_box {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.design .main_naka .event_navi {
    margin-right: 10px;
    width: calc(100% - 190px);
}

.design .main_naka .event_navi li {
    display: inline-block;
    border-right: 2px solid #e30167;
    margin: 0 16px 6px 0;
    padding: 0 16px 0 0;
}

.design .main_naka .event_navi li:first-child {
    border-left: 2px solid #e30167;
    padding-left: 16px;
}

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

.design .main_naka .event_link {
    text-align: right;
    margin-left: auto;
    margin-top: 0;
    width: 180px;
}

.design .main_naka .event_navi_box .event_link {
    margin-bottom: 6px;
}

.design .main_naka .event_link a {
    display: inline-block;
    border: 2px solid #e30167;
    border-radius: 4px;
    font-size: 85%;
    padding: 5px 10px 5px 22px;
    text-decoration: none;
    position: relative;
}

.design .main_naka .event_link a:before {
    content: '';
    position: absolute;
    top: 50%;
    margin-top: -4px;
    left: 8px;
    width: 6px;
    height: 6px;
    border-right: 1px solid #e30167;
    border-bottom: 1px solid #e30167;
    transform: rotate(-45deg);
}

.design .main_naka .month_lst_box {
    margin-top: 24px;
}

.design .main_naka .month_lst {
    display: flex;
    text-align: center;
}

.design .main_naka .month_lst li {
    padding-left: 0;
    margin-top: 0;
    width: 20%;
    border: 2px solid #e30167;
    border-left: none;
}

.design .main_naka .month_lst li:first-child {
    border-left: 2px solid #e30167;
}

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

.design .main_naka .month_lst .month_select {
    background: #e30167;
    color: #fff;
}

.design .main_naka .month_lst li a,
.design .main_naka .month_lst li strong {
    display: inline-block;
    padding: 8px 2px;
    display: block;
}

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

.design .main_naka .event_post {
    margin-top: 24px;
}

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

.design .main_naka .event_repeat {
    margin-top: 0;
}

@media only screen and (max-width: 768px) {
    .design .main_naka .event_navi {
        margin-right: 0;
        width: 100%;
    }

    .design .main_naka .event_link {
        text-align: left;
        margin-left: 0;
        width: auto;
    }

    .design .main_naka .event_navi_box .event_link {
        margin-top: 12px;
        margin-bottom: 0;
    }

    .design .main_naka .event_link a {
        padding: 8px 10px 8px 22px;
    }
}


/**** 催し物・講座カレンダー表示のスタイル ****/

.design .main_naka .calendar_month {
    margin-top: 24px;
}

.design .main_naka .calendar_month caption {
    display: none;
}

.design .main_naka .calendar_month th {
    padding: 16px;
    border: 1px solid #ccc;
    border-right: none;
    font-size: 85%;
    text-align: center;
    vertical-align: middle;
}

.design .main_naka .calendar_month td {
    padding: 16px;
    border: 1px solid #ccc;
}

.design .main_naka .calendar_month td li {
    margin-top: 16px;
}

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

.design .main_naka .calendar_month td.cal_day {
    text-align: center;
    padding: 16px 20px;
    font-size: 85%;
    vertical-align: middle;
    width: 60px;
}

.design .main_naka .calendar_month td.cal_day img {
    max-width: none;
    vertical-align: middle;
}

.design .main_naka .calendar_month .cal_sun {
    background-color: #ffd8d6;
}

.design .main_naka .calendar_month .cal_sat {
    background-color: #d9e4fc;
}

.design .main_naka .calendar_month .cal_date {
    width: 60px;
}

.design .main_naka .calendar_month .cal_today .cal_date {
    background: #a90000;
    color: #fff;
}

.design .main_naka .calendar_month .hdy {
    margin: 0 0.6em 8px 0;
    padding: 3px 4px 1px 5px;
    background: #a90000;
    color: #fff;
    font-size: 85%;
    display: inline-block;
    vertical-align: middle;
}

.design .main_naka .calendar_month .eve_cate {
    display: inline-block;
    font-size: 85%;
    background: #e30167;
    color: #fff;
    border-radius: 4px;
    padding: 5px 4px;
    margin: 0 8px 0 0;
    text-align: center;
    vertical-align: top;
    line-height: 1;
    min-width: 80px;
}

@media only screen and (max-width: 768px) {
    .design .main_naka .calendar_month th {
        padding: 10px;
    }

    .design .main_naka .calendar_month .cal_date {
        width: 46px;
    }

    .design .main_naka .calendar_month td.cal_day {
        padding: 10px;
        width: 46px;
    }

    .design .main_naka .calendar_month td {
        padding: 10px;
    }
}


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

.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 .garbage_body .garbage_box {
    margin-top: 24px;
}

.design .main_naka .garbage_body .garbage_select {
    margin-top: 12px;
}

.design .main_naka .garbage_body .garbage_select p {
    display: inline-block;
    vertical-align: middle;
    margin-top: 0;
}

.design .main_naka .garbage_body .garbage_select #garbage_area {
    font-size: 85%;
    margin-right: 12px;
    vertical-align: middle;
}

.design .main_naka .garbage_body .garbage_select #garbage_num {
    font-size: 85%;
    vertical-align: middle;
}

#body .main_naka .garbage_body .garbage_select .garbage_select_syosai {
    display: inline-block;
    margin-right: 16px;
}

.design .main_naka .garbage_body .garbage_cal h2 img {
    padding: 0 8px 3px 0;
    vertical-align: middle;
}

.design .main_naka .garbage_body .garbage_cal h2 span {
    vertical-align: middle;
}

.design .main_naka .garbage_body .garbage_cal table {
    margin-top: 24px;
    width: 100%;
    table-layout: fixed;
}

.design .main_naka #calendar_month th {
    padding: 8px;
    border: 1px solid #ccc;
    border-right: none;
    font-size: 85%;
    text-align: center;
    vertical-align: middle;
    width: 60px;
}

.design .main_naka #calendar_month td {
    padding: 16px;
    border: 1px solid #ccc;
}

.design .main_naka .garbage_body .garbage_cal td .cal_icon {
    margin: 8px 0 0;
    background: #000;
    color: #fff;
    text-align: center;
    width: 120px
}

.design .main_naka .garbage_body .garbage_cal td .cal_icon p {
    margin: 0 auto;
    padding: 8px 8px 0;
}

.design .main_naka .garbage_body .garbage_cal td .cal_icon img {
    padding: 2px 0 8px;
    vertical-align: bottom;
    height: auto;
    width: 36px;
    box-sizing: content-box;
}

.design .main_naka #calendar_month td li {
    margin-top: 16px;
    padding-left: 0;
}

.design .main_naka #calendar_month td li:before {
    display: none;
}

.design .main_naka #calendar_month td li:first-child {
    margin-top: 0;
}

.design .main_naka #calendar_month td.cal_day {
    text-align: center;
    padding: 10px;
    font-size: 85%;
    vertical-align: middle;
    width: 60px;
}

.design .main_naka #calendar_month td.cal_day img {
    max-width: none;
    vertical-align: middle;
}

.design .main_naka #calendar_month .cal_sun {
    background-color: #ffd8d6;
}

.design .main_naka #calendar_month .cal_sat {
    background-color: #d9e4fc;
}

.design .main_naka #calendar_month .cal_today .cal_date {
    background: #a90000;
    color: #fff;
}

.design .main_naka #calendar_month .hdy {
    margin: 0 0.6em 4px 0;
    padding: 3px 4px 1px 5px;
    background: #a90000;
    color: #fff;
    font-size: 85%;
    display: inline-block;
    vertical-align: middle;
}

.design .main_naka #calendar_month .eve_cate {
    display: inline-block;
    font-size: 85%;
    background: #e30167;
    color: #fff;
    border-radius: 4px;
    padding: 4px 4px 2px;
    margin: 2px 8px 0 0;
    text-align: center;
    vertical-align: top;
    line-height: 1;
    min-width: 80px;
}

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

    .design .main_naka .garbage_body .garbage_select p,
    .design .main_naka .garbage_body .garbage_select #garbage_area {
        font-size: 100%;
    }

    .design .main_naka #calendar_month th,
    .design .main_naka #calendar_month td.cal_day {
        width: 36px;
    }

    .design .main_naka #calendar_month td {
        padding: 8px 16px;
    }

    .design .main_naka .garbage_body .garbage_cal td .cal_icon img {
        height: auto;
        width: 34px;
    }

    .design .main_naka .garbage_body .garbage_cal td .cal_icon p {
        padding: 6px 6px 0;
    }
}


/* アイコン毎の効果 */

.design .main_naka .garbage_body .garbage_cal td .cal_red {
    background: #d50404;
    border: 1px solid #fff;
    box-shadow: rgba(213, 4, 4, 0.3) 0 0 1px 2px;
}

.design .main_naka .garbage_body .garbage_cal td .cal_bla {
    background: #222;
    border: 1px solid #fff;
    box-shadow: rgba(0, 0, 0, 0.3) 0 0 1px 2px;
}

.design .main_naka .garbage_body .garbage_cal td .cal_blu {
    background: #0274cc;
    border: 1px solid #fff;
    box-shadow: rgba(4, 150, 213, 0.3) 0 0 1px 2px;
}

.design .main_naka .garbage_body .garbage_cal td .cal_pap {
    background: #892dbd;
    border: 1px solid #fff;
    box-shadow: rgba(136, 45, 189, 0.3) 0 0 1px 2px;
}

.design .main_naka .garbage_body .garbage_cal td .cal_gre {
    background: #09820c;
    border: 1px solid #fff;
    box-shadow: rgba(16, 156, 18, 0.3) 0 0 1px 2px;
}

.design .main_naka .garbage_body .garbage_cal td .cal_pin {
    background: #b4156b;
    border: 1px solid #fff;
    box-shadow: rgba(180, 21, 106, 0.3) 0 0 1px 2px;
}

.design .main_naka .garbage_body .garbage_cal td .cal_ora {
    background: #f7bb2d;
    border: 1px solid #fff;
    color: #333;
    box-shadow: rgba(247, 186, 45, 0.66) 0 0 1px 2px;
}

.design .main_naka .garbage_body .garbage_cal .sun {
    background: #ffd8d6;
}

.design .main_naka .garbage_body .garbage_cal .sat {
    background: #d9e4fc;
}

.design .main_naka .garbage_body .garbage_cal th.sun {
    background: transparent;
}

.design .main_naka .garbage_body .garbage_cal th.sat {
    background: transparent;
}

.design .main_naka .garbage_body .garbage_cal .today {
    background: #fffab0;
}

.design .main_naka .garbage_body .garbage_cal .today a:LINK {
    text-decoration: underline;
    color: #fff;
}

.design .main_naka .garbage_body .garbage_cal .today a:VISITED {
    text-decoration: underline;
    color: #eee;
}

.design .main_naka .garbage_body .garbage_cal .today a:ACTIVE {
    text-decoration: underline;
    color: #ffff00;
}

.design .main_naka .garbage_body .garbage_cal .today a:HOVER {
    text-decoration: underline;
    color: #ffff00;
}

.design .main_naka .garbage_foot {
    margin-top: 24px;
}


/**** サイトマップのスタイル ****/

.design .main_naka .kakuka01 li {
    margin: 3px 20px 2px 0;
    padding: 0;
    border: 0;
    display: inline-block;
    height: auto;
    background-image: none;
    font-size: 85%;
}

.design .main_naka .event_month li {
    display: inline-block;
    margin-right: 4px;
    padding-left: 0;
}

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

.design .main_naka .event_month img {
    position: relative;
    top: -2px;
}


/**** RSS一覧のスタイル ****/

.design .main_naka .rss {
    margin: 0 8px 0 8px;
    vertical-align: middle;
    height: 20px;
}


/**** マイページ管理画面のスタイル ****/

.online_strage_edit_a {
    margin-top: 16px;
}

.online_strage_edit_a .mypage h2 {
    margin: 0;
    padding: 0;
    height: 0;
    background: none;
    border: none;
}

.online_strage_edit_a .mypage h2::after {
    display: none;
}

.online_strage_edit_a div.online_strage_list_item {
    border-bottom: 1px dashed #bbb;
    padding: 7px 0;
    overflow: hidden;
}

.online_strage_edit_a div.online_strage_title {
    float: left;
    max-width: 872px;
    padding: 8px 0;
}

.online_strage_edit_a div.online_strage_list_item>p {
    font-size: 85%;
}

.online_strage_edit_a div.edit_btn {
    float: right;
}

.online_strage_edit_a div.online_strage_commandbox {
    float: left;
}

.online_strage_edit_a div.online_strage_updown {
    float: left;
}

.online_strage_edit_a .online_strage_list button {
    vertical-align: top;
    font-size: 85%;
    background: #555;
    border-radius: 4px;
    cursor: pointer;
    color: #fff;
    display: inline-block;
    text-align: center;
    padding: 6px 16px;
    margin: 6px 6px 6px 0;
}


/**** エラーページのスタイル ****/

.design .main_naka .error h1 {
    margin: 40px 0 24px;
    font-size: 200%;
}

.design .main_naka .error ul {
    margin-top: 24px;
}


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

.design .main_naka .pickup_post {
    margin-top: 24px;
}

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


/**** 組織検索機能 ****/

.csv_search {
    margin-top: 16px;
    background: #eee;
    padding: 16px;
}

.csv_search h2 {
    margin: 0 0 16px;
}

#csv_search_word {
    width: 300px;
}

#csv_search_word {
    margin-right: 16px;
    margin-bottom: 8px;
}

.csv_search_input_form fieldset {
    overflow: hidden;
    vertical-align: middle;
    margin-bottom: 8px;
}

.csv_search_input_form fieldset legend {
    float: left;
}

.csv_search_input_form fieldset input[type="radio"] {
    margin-top: 1px;
    padding-top: 0;
}

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

#body .csv_search_form_submit_btn_wrapper .csv_search_form_submit_btn {
    display: inline-block;
    font-size: 81.25%;
    padding: 5px 15px;
}

.csv_search_input_form fieldset {
    display: inline-block;
}

.csv_search_result_table th,
.csv_search_result_table td {
    border: 1px solid #ccc;
    font-size: 85%;
    padding: 6px 4px 4px
}

.csv_search_result_table th {
    background: #ffe8e2;
    text-align: center;
    vertical-align: middle;
}

@media only screen and (max-width: 768px) {
    #csv_search_word {
        width: 100%;
    }
}


/**** お問い合わせフォームのスタイル ****/

#body.inform .main_naka li p input,
#body.inform .main_naka li p button,
#body.inform .main_naka li p textarea {
    font-size: 100%;
}

.inform .design .main_naka form {
    margin-top: 24px;
    padding: 8px 16px 16px;
    background: #eee;
}

.design .main_naka .syosai {
    overflow: hidden;
    margin-top: 8px;
}

.inform .design .main_naka .syosai_hiduke {
    float: none;
}

.inform .design .main_naka form li {
    border-bottom: 1px dashed #bbb;
    margin-top: 16px;
    padding: 0 0 16px;
}

.inform .design .main_naka form li::before {
    display: none;
}

.inform .att {
    color: #a90000;
}

.inform .design .main_naka form li:first-child,
.inform .design .main_naka form h3:first-child {
    margin-top: 8px;
}

.inform .design .main_naka form .tyui li {
    border: none;
    margin-top: 8px;
    padding: 0;
}

.inform .design .main_naka form fieldset {
    margin-top: 8px;
}

.inform .design .main_naka form h2 {
    border-bottom: none;
    font-size: 120%;
    margin: 16px 0 0;
    padding-left: 12px;
}

.inform .design .main_naka form h2:after {
    display: none;
}

.inform .design .main_naka form .radio_p {
    font-size: 85%;
    display: inline-block;
    margin-right: 12px;
}

.inform .design .main_naka form .input_btn {
    text-align: center;
    margin-top: 16px;
}

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

    #body.inform .design .main_naka form input[type="text"],
    #body.inform .design .main_naka form textarea {
        width: 100% !important;
    }

    #body.inform .design .main_naka form input[type="text"]#yuubin1,
    #body.inform .design .main_naka form input[type="text"]#yuubin2 {
        width: 90px !important;
    }

    #body.inform .design .main_naka form input[type="radio"]+label {
        line-height: 2;
    }
}


/** お問い合わせフォームのスタイル　エラー **/

.inform .design .main_naka form .form_error {
    background-color: #ffdfdf;
    padding: 12px 15px;
    margin: 10px 0;
}

.inform .design .main_naka form .form_error p {
    font-size: 120%;
    margin: 5px 0 10px;
    border-bottom: none;
    font-size: 120%;
    padding-left: 12px;
    border-left: 4px solid #f44040;
}

.inform .design .main_naka form .form_error li {
    padding: 3px 0 3px 14px;
    margin: 0 0 5px 0;
}

.inform .design .main_naka form .form_error li:before {
    display: inline-block;
    top: 11px;
    border-color: #f44040;
}


/**** アンケートのスタイル ****/

.design .main_naka .question_box {
    margin-bottom: 24px;
}

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

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

.design .main_naka #qa_tmp {
    border: 1px solid #ccc;
    margin-top: 24px;
    padding: 16px;
}

.inform .design .main_naka form select {
    font-size: 85%;
}


/**** 動的版検索結果のスタイル ****/

.design .main_naka .keyword_post li {
    border-bottom: 1px dashed #bbb;
    margin-top: 16px;
    padding: 0 0 12px;
}

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


/********************** 記事ページのスタイル **********************/

.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;
    padding: 0 20px;
    max-width: 990px;
    width: 100%;
}

.main_naka_kiji {
    float: left;
    width: 700px;
}

.waku .kiji_sub {
    float: right;
    width: 210px;
}

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

    .waku_top {
        padding: 0;
        width: 100%;
    }

    .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_id {
    margin: 8px 0 0 12px;
    font-size: 85%;
    float: left;
}

@media only screen and (max-width: 768px) {
    .design .main_naka .syosai_id {
        margin-bottom: 12px;
    }
}


/* SNSボタン */

.inbody .design .sns_box {
    margin-top: 7px;
    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: #efefef;
    font-size: 85%;
    vertical-align: middle;
}

@media only screen and (max-width: 768px) {
    .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: 16px auto 0;
    max-width: 210px;
}

.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;
    height: auto;
    width: 100%;
}


/*お問い合わせフォーム*/

.waku .kiji_sub .kiji_aside.syosai_sonota {
    margin-top: 16px;
    padding: 12px;
    border: 1px solid #ccc;
    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;
    background: #e30167;
    border: 0;
    color: #fff;
    width: 100%;
}

.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%;
}


/*共通スタイル*/

.waku .kiji_sub .kiji_aside {
    margin-top: 16px;
    background: #fff;
}

.waku .kiji_sub .kiji_aside h2 {
    padding: 10px 8px 8px;
    border: 1px solid #ccc;
    border-bottom: 0;
    background: #ffe8e2;
}

.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 {
    margin-left: 0;
    margin-right: 0;
    width: 100%;
}


/*関連コンテンツ*/

.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: 768px) {
    .design .main_naka .kiji_aside.syosai_qa form p span {
        display: block;
        line-height: 2;
    }
}


/** コンテンツ評価のスタイル 確認画面 **/

.inform .design .main_naka .kiji_aside.syosai_qa {
    background-color: #eee;
    border: none;
    padding: 16px 16px 5px;
    margin: 0;
}

.inform .design .main_naka .kiji_aside.syosai_qa li p {
    border: none;
    padding: 0;
}

.inform .design .main_naka .kiji_aside.syosai_qa>p {
    margin: 0;
    border-bottom: 1px dashed #bbb;
    padding-bottom: 16px;
}

.inform .design .main_naka .kiji_aside.syosai_qa form {
    margin-top: 0;
    padding: 0;
}


/**** 別ルートのスタイル ****/

.design .main_naka .route_box {
    margin-bottom: 24px;
}

.design .main_naka .route_box h2 {
    border: 0;
    font-size: 125%;
    margin-top: 0;
    margin-bottom: 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 #888;
}

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


/**** 記事ページ下メニューのスタイル ****/

.inkiji .main_naka .kiji_aside,
.infaq .main_naka .kiji_aside {
    background: #fff;
    margin-bottom: 24px;
    border: 1px solid #ccc;
    padding: 16px;
}

.inkiji .main_naka .kiji_aside h2,
.infaq .main_naka .kiji_aside h2 {
    border: 0;
    margin-top: 0;
}

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


/*組織内ジャンル*/

.inkiji .main_naka .kiji_aside.kakuka {}


/*関連コンテンツ*/

.inkiji .main_naka .kiji_aside.kanren {}


/*関連している可能性のある記事*/

.inkiji .main_naka .kiji_aside.kanren2 {}


/*お問い合わせフォーム*/

.main_naka .kiji_aside.syosai_sonota {}

.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: 0;
    background: #a90000;
    color: #fff;
}

.sitemap_body .topics,
.sitemap_body .new,
.sitemap_body .event,
.sitemap_body .kakuka,
.sitemap_body .category,
.sitemap_body .category2,
.sitemap_body .category3 {
    margin: 0 auto;
    width: 100%;
}


/**** 分類カスタマイズ（いんザイ君の部屋）のスタイル ****/

.cat_chara .chara_h1 {
    background: url(img/cha_bg.png);
    position: relative;
}

.cat_chara .chara_h1:before {
    content: '';
    background-image: url(img/cha_bg_bottom.png);
    background-size: 1600px 170px;
    background-position: center bottom;
    height: 170px;
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
}

@media print,
screen and (min-width: 1601px) {
    .cat_chara .chara_h1:before {
        background-image: url(img/cha_bg_bottom.png);
        background-size: 100% 100%;
        background-position: center;
    }
}

.cat_chara .chara_h1_in {
    text-align: center;
    margin: 0 auto;
    padding: 30px 20px 240px;
    position: relative;
    max-width: 810px;
    width: 100%;
}

.chara_dec span {
    position: absolute;
}

.chara_dec .dec01 {
    top: 50px;
    right: 250px;
    animation: dr01 5s linear forwards;
}

.chara_dec .dec02 {
    top: 140px;
    left: -70px;
    animation: dr02 5s linear forwards;
}

.chara_dec .dec03 {
    top: 216px;
    left: 20px;
    animation: dr03 5s linear forwards;
}

.chara_dec .dec04 {
    top: 20%;
    right: -60px;
    animation: dr04 5s linear forwards;
}

@keyframes dr01 {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(200deg);
    }
}

@keyframes dr02 {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(300deg);
    }
}

@keyframes dr03 {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes dr04 {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(190deg);
    }
}

@media only screen and (max-width: 768px) {
    .cat_chara .chara_h1_in {
        margin-top: 10px;
        padding: 20px 12px 200px;
    }

    .chara_dec {
        display: none;
    }
}

.cat_chara {
    overflow: hidden;
}

.cat_chara .main_naka {
    overflow: visible;
}

.cat_chara .chara_menu {
    position: relative;
    z-index: 500;
    margin-top: -200px;
}

.cat_chara .chara_menu h2 {
    background: none;
    border: 0;
    padding: 0;
    margin: 0;
    height: 0;
    overflow: hidden;
}

.cat_chara .chara_menu ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0;
    padding: 0;
}

.cat_chara .chara_menu ul li {
    display: flex;
    padding: 0;
    margin: 0 23px 0 0;
    text-align: center;
    min-height: 210px;
    width: 210px;
    animation: amenu 1.5s linear forwards;
}

@keyframes amenu {
    30% {
        transform: scale3d(1.1, 0.75, 1);
    }

    40% {
        transform: scale3d(0.75, 1.25, 1);
    }

    50% {
        transform: scale3d(1.15, 0.85, 1);
    }

    65% {
        transform: scale3d(0.95, 1.05, 1);
    }

    75% {
        transform: scale3d(1.05, 0.95, 1);
    }
}

.cat_chara .chara_menu ul li:nth-child(4),
.cat_chara .chara_menu ul li:nth-child(7) {
    margin-right: 0;
}

.cat_chara .chara_menu ul li:before {
    display: none;
}

.cat_chara .chara_menu ul li a {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background: #fff5f6;
    border: 4px solid #fd8a69;
    box-shadow: 3px 4px 0 #ad4e33;
    border-radius: 50%;
    height: 100%;
    width: 100%;
}

.cat_chara .chara_menu ul .img {
    position: absolute;
    bottom: 112px;
    left: 50%;
    margin-left: -60px;
}

.cat_chara .chara_menu ul .tit img {
    height: 22px;
    width: auto;
}

.cat_chara .chara_menu ul .tit {
    position: relative;
    padding: 70px 10px 20px;
    width: 100%;
}

.cat_chara .chara_menu ul .tit:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    margin-left: -20px;
    background: #fd8a69;
    height: 4px;
    width: 40px
}

.cat_chara .chara_menu ul li:nth-child(2) a {
    background: #fffbf2;
    border-color: #fdaa3b;
    box-shadow: 3px 4px 0 #9f5e06;
}

.cat_chara .chara_menu ul li:nth-child(2) .tit:before {
    background: #fdaa3b;
}

.cat_chara .chara_menu ul li:nth-child(3) a {
    background: #feffea;
    border-color: #fcC332;
    box-shadow: 3px 4px 0 #a88220;
}

.cat_chara .chara_menu ul li:nth-child(3) .tit:before {
    background: #fcC332;
}

.cat_chara .chara_menu ul li:nth-child(4) a {
    background: #f6fcf7;
    border-color: #83c686;
    box-shadow: 3px 4px 0 #4b7c4d;
}

.cat_chara .chara_menu ul li:nth-child(4) .tit:before {
    background: #83c686;
}

.cat_chara .chara_menu ul li:nth-child(5) a {
    background: #f3f7ff;
    border-color: #67b6f4;
    box-shadow: 3px 4px 0 #336b96;
}

.cat_chara .chara_menu ul li:nth-child(5) .tit:before {
    background: #67b6f4;
}

.cat_chara .chara_menu ul li:nth-child(6) a {
    background: #fdf4ff;
    border-color: #cf87ef;
    box-shadow: 3px 4px 0 #672a83;
}

.cat_chara .chara_menu ul li:nth-child(6) .tit:before {
    background: #cf87ef;
}

.cat_chara .chara_menu ul li:nth-child(7) a {
    background: #fff2f7;
    border-color: #ff8ebf;
    box-shadow: 3px 4px 0 #86274f;
}

.cat_chara .chara_menu ul li:nth-child(7) .tit:before {
    background: #ff8ebf;
}

@media only screen and (max-width: 990px) {
    .cat_chara .chara_menu ul .tit {
        padding-top: 60px;
    }

    .cat_chara .chara_menu ul li {
        margin-right: 16px;
        min-height: 175px;
        width: 175px;
    }

    .cat_chara .chara_menu ul .img {
        bottom: 94px;
    }
}

@media only screen and (max-width: 768px) {
    .cat_chara .chara_menu ul li:nth-child(n) {
        min-height: auto;
        margin: 0 16px 16px 0;
        width: calc((100% - 16.1px) / 2);
    }

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

    .cat_chara .chara_menu ul li a {
        border-radius: 8px;
        padding: 20px 10px;
    }

    .cat_chara .chara_menu ul .img {
        position: static;
        margin-left: 0;
    }

    .cat_chara .chara_menu ul .img img {
        width: 70px;
        height: auto;
    }

    .cat_chara .chara_menu ul .tit {
        padding: 10px 0 20px;
    }
}

@media only screen and (max-width: 480px) {
    .cat_chara .chara_menu ul li a {
        padding: 14px 10px;
    }

    .cat_chara .chara_menu ul .tit {
        margin-top: 0;
    }
}

.cat_chara .chara_info_box {
    display: flex;
    margin-top: 70px;
}

@media only screen and (max-width: 768px) {
    .cat_chara .chara_info_box {
        flex-wrap: wrap;
        margin-top: 40px;
    }
}


/* いんざい花だより */

.chara_hana {
    position: relative;
    width: 210px;
}

.chara_hana:before {
    content: '';
    position: absolute;
    right: -50px;
    bottom: 4px;
    background: url(img/cha_hana_img.png) no-repeat;
    height: 94px;
    width: 120px;
}

.chara_hana a {
    display: inline-block;
    background: #ffe8e2;
    border-radius: 8px;
    box-shadow: 3px 4px 0 #b17368;
    padding: 23px 14px;
    text-align: center;
    width: 100%;
}

.chara_hana a:hover {
    background: #ffe0d1;
}

.chara_hana a .text {
    background-image: url(img/cha_hana_dot.png), url(img/cha_hana_dot.png);
    background-repeat: repeat-x;
    background-size: 6px auto;
    background-position: top left, bottom left;
    margin: 0;
    padding: 13px 0;
}

.chara_hana a .text span {
    display: inline-block;
    width: 100%;
}

.chara_hana a .text span:first-child {
    margin-bottom: 8px;
}

.chara_hana a .text span:first-child img {
    height: 30px;
    width: auto;
}

.chara_hana a .text span:nth-child(2) img {
    height: 40px;
    width: auto;
}

.chara_hana a .more {
    margin: 0;
    padding: 12px 10px 0;
    text-align: left;
}

.chara_hana a .more img {
    height: 16px;
    width: auto;
}

@media only screen and (max-width: 768px) {
    .chara_hana {
        margin: 0 auto;
        width: 100%;
    }

    .chara_hana::before {
        right: -30px;
    }

    .chara_hana a {
        padding: 18px 14px;
    }

    .chara_hana a .text span {
        width: auto;
    }

    .chara_hana a .more {
        text-align: center;
    }
}

@media only screen and (max-width: 480px) {
    .chara_hana a .text {
        padding: 10px 0;
    }

    .chara_hana a .text span:first-child img {
        height: 20px;
    }

    .chara_hana a .text span:nth-child(2) img {
        height: 30px;
    }
}


/* 新着情報 */

.chara_new {
    margin-left: 80px;
    width: calc(100% - 290px);
}

.design .main_naka .chara_new .main_naka_new {
    border: 1px solid #888;
    border-radius: 8px;
    box-shadow: 3px 4px 0 #888;
    margin-top: 0;
    display: flex;
}

.design .main_naka .chara_new .main_naka_new h2 {
    display: flex;
    background: none;
    flex-shrink: 0;
    padding: 16px 20px;
    width: 174px;
}

.design .main_naka .chara_new .main_naka_new h2 span {
    display: flex;
    align-items: center;
}

.design .main_naka .chara_new .main_naka_new ul {
    border-left: 1px solid #888;
    padding: 10px 24px;
    width: calc(100% - 174px);
}

.design .main_naka .chara_new .main_naka_new ul li {
    border-bottom: 1px dashed #888;
    padding: 0 0 12px 16px;
    margin: 12px 0 0;
}

.design .main_naka .chara_new .main_naka_new ul li:last-child {
    border-bottom: 0;
}

.design .main_naka .chara_new .main_naka_new ul li:before {
    border: 0;
    background: #d02e67;
    border-radius: 50%;
}

@media only screen and (max-width: 768px) {
    .chara_new {
        margin-left: 0;
        margin-top: 24px;
        width: 100%;
    }

    .design .main_naka .chara_new .main_naka_new {
        flex-wrap: wrap;
    }

    .design .main_naka .chara_new .main_naka_new h2 {
        justify-content: center;
        width: 100%;
    }

    .design .main_naka .chara_new .main_naka_new h2 img {
        height: auto;
        width: 100px;
    }

    .design .main_naka .chara_new .main_naka_new ul {
        border: 0;
        border-top: 1px solid #888;
        padding: 0 16px;
        width: 100%;
    }
}


/* ▼▼▼▼▼▼ 伝えるWEB ▼▼▼▼▼▼ */
/* .tsutaeru01-menu */
.tsutaeru01-menu {
    display: none;
}

/*
#tsutaeru-info {
    background-color: #ebf5f5 !important;
    border-bottom: 1px solid #DBDBDB;
}
*/

.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: 10px 16px 10px 0;
}

.design li.tsutaeru01-button-easy #tsutaeru01-li-easy {
    background-image: none;
}

.design #head_lang02 li.tsutaeru01-button-easy-off,
.design #head_lang02 li.tsutaeru01-button-ruby,
.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: block;
    padding: 10px 16px 10px 0;
    font-size: 100%;
    color: #2b3095;
    text-decoration: underline;
    background: #fff;
    border: none;
}

#body button.tsutaeru01-button.tsutaeru01-button-speech-start,
#body button.tsutaeru01-button.tsutaeru01-button-config.tsutaeru01-button-speech-config {
    padding: 3px 4px 0;
    font-size: 117%;
}

#body.category_futami button.tsutaeru01-button.tsutaeru01-button-speech-start,
#body.category_history button.tsutaeru01-button.tsutaeru01-button-speech-start,
#body.category_futami button.tsutaeru01-button.tsutaeru01-button-config.tsutaeru01-button-speech-config,
#body.category_history button.tsutaeru01-button.tsutaeru01-button-config.tsutaeru01-button-speech-config {
    background: transparent;
}

#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 #sidr button.tsutaeru01-button.tsutaeru01-button-speech-start,
#body #sidr button.tsutaeru01-button.tsutaeru01-button-speech-control,
#body #sidr button.tsutaeru01-button.tsutaeru01-button-config.tsutaeru01-button-speech-config {
    background-image: none;
    margin-right: 0 !important;
    border-radius: 0;
    border: none;
}

#body #sidr button.tsutaeru01-button.tsutaeru01-button-speech-start,
#body #sidr button.tsutaeru01-button.tsutaeru01-button-config.tsutaeru01-button-speech-config {
    position: relative;
}

#body #sidr button.tsutaeru01-button.tsutaeru01-button-speech-start::after,
#body #sidr button.tsutaeru01-button.tsutaeru01-button-config.tsutaeru01-button-speech-config::after {
    position: absolute;
    top: 50%;
    right: 12px;
    content: '';
    margin-top: -4px;
    width: 6px;
    height: 6px;
    border-top: 1px solid #999;
    border-right: 1px solid #999;
    transform: rotate(45deg);
}


.tsutaeru01-speech .tsutaeru01-button:disabled {
    opacity: 0.8;
}

.tsutaeru01-speech-buttons {
    display: flex;
    padding: 0;
}

.tsutaeru01-speech-audio-container {
    margin-top: 0px;
    margin-bottom: 10px;
    padding: 5px 0px;
    position: relative;
    /*position: absolute;*/
    top: 26px;
    left: 0;
}


@media (max-width:1024px) {
    .tsutaeru01-speech-audio-container {
        margin-top: 10px;
        position: inherit;
    }
}

.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: #4E7D15;
    text-align: center;
    font-weight: bold;
    position: relative;
    border-radius: 5px 5px 0px 0px;
    border: 1px solid #FFF;
}

#body.category_futami .tsutaeru01-config-header,
#body.category_history .tsutaeru01-config-header {
    color: #000;
    background: #D6C6AF;
}

.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: #4E7D15;
    font-weight: normal;
    padding: 0.5em 1em;
    border-radius: 3px;
    cursor: pointer;
}

#body.category_futami .tsutaeru01-config .tsutaeru01-config-footer .tsutaeru01-config-button-close,
#body.category_history .tsutaeru01-config .tsutaeru01-config-footer .tsutaeru01-config-button-close {
    color: #2b3095;
    background: #F6F5EA;
    border: 1px solid #7D7C6D;
}

#body.category_futami .tsutaeru01-config .tsutaeru01-config-footer .tsutaeru01-config-button-close:hover,
#body.category_history .tsutaeru01-config .tsutaeru01-config-footer .tsutaeru01-config-button-close:hover {
    color: #860000;
}

.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.category_futami .tsutaeru01-config .tsutaeru01-config-header .tsutaeru01-config-close:before,
#body.category_futami .tsutaeru01-config .tsutaeru01-config-header .tsutaeru01-config-close:after,
#body.category_history .tsutaeru01-config .tsutaeru01-config-header .tsutaeru01-config-close:before,
#body.category_history .tsutaeru01-config .tsutaeru01-config-header .tsutaeru01-config-close:after {
    background: #000;
}

#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) {

    .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 {
        position: static;
        width: 100%;
        font-size: 100%;
    }

    .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 {
        width: 50%;
        padding: 12px 20px 12px 10px;
        text-align: left;
        text-decoration: none;
        position: relative;
    }

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

        #body button.tsutaeru01-button.tsutaeru01-button-speech-start,
        #body button.tsutaeru01-button.tsutaeru01-button-config.tsutaeru01-button-speech-config {
            font-size: 100%;
        }

        #body button.tsutaeru01-button.tsutaeru01-button-speech-start,
        button.tsutaeru01-button.tsutaeru01-button-speech-control {
            border-right: 1px solid #4E7D15 !important;
        }
    }

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

        /*
        #body button.tsutaeru01-button.tsutaeru01-button-speech-start,
        #body button.tsutaeru01-button.tsutaeru01-button-config.tsutaeru01-button-speech-config {

            display: block !important;
        }

        #body button.tsutaeru01-button.tsutaeru01-button-speech-control {
            display: none !important;
        }
*/
    }

    #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);
    }

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

        #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 {
            display: none;
        }
    }

    /*
    .tsutaeru01-speech-buttons {
        white-space: nowrap;
    }
    
    @media only screen and (max-width: 1024px) {
        .tsutaeru01-speech-buttons {
            white-space: normal;
        }
    }
*/

    .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;
}*/

.tsutaeru01-speech-audio-container {
    position: fixed;
    top: 250px;
    left: 10px;
    z-index: 100;
}

@media only screen and (max-width: 1024px) {
    .tsutaeru01-speech-audio-container {
        position: relative;
        top: 0;
        left: 0;
    }

}

/* ▲▲▲▲▲▲ 伝えるWEB ▲▲▲▲▲▲ */


/* ▼▼▼▼▼▼ 【トップページ】フロント（ナビ・メインビジュアル）設定 ▼▼▼▼▼▼ */
.main .main_front {
    margin-bottom: -6px;
}

.main .front_screen {
    display: flex;
    margin: 0 auto;
    padding: 0 20px;
    max-width: 990px;
    width: 100%;
}

@media only screen and (max-width: 768px) {
    .main .front_screen {
        display: flex;
        margin: 0 auto;
        padding: 0;
        max-width: none;
        width: 100%;
    }
}

/* ▼▼▼▼ ナビゲーション ▼▼▼▼ */
.main .main_front .g_navi {
    margin-bottom: 6px;
    padding: 0;
    max-width: 200px;
    border-left: 1px solid #aaa;
    border-right: 1px solid #aaa;
}

@media only screen and (max-width: 1100px) {
    .main .main_front .g_navi {
        margin-top: 60px;
    }
}

@media only screen and (max-width: 963px) {
    .main .main_front .g_navi {
        margin-top: 25px;
    }
}


.main .main_front .g_navi_in {
    min-height: auto;
}

.main .main_front .g_navi_in>li {
    padding-left: 0;
}


.main .main_front .g_navi_in>li::before {
    display: none;
}

.main .main_front .slick_nav {
    width: auto;
}

/* ▲▲▲▲ ナビゲーション ▲▲▲▲ */
/* ▼▼▼▼ メインビジュアル ▼▼▼▼ */

.main .main_front .vis {
    position: relative;
    top: auto;
    width: calc(100% - 200px);
    height: auto;
}

.main .main_front .vis .vis_slider {
    width: auto;
}

.main .main_front .vis .slick_nav {
    top: auto;
    bottom: 0;
    left: 0;
    margin-left: 0;
    padding: 10px 16px 16px;
}

.main .main_front .slick-dots {
    flex-wrap: wrap;
}

.main .main_front .slick-dots li {
    margin-top: 6px !important;
}

.main .main_front .slick_ps div {
    margin-top: 6px;
    width: 55px;
}

@media only screen and (max-width: 768px) {
    .main .main_front .vis {
        width: 100%;
    }
}

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



/* ▲▲▲▲▲▲ 【トップページ】フロント（ナビ・メインビジュアル）設定 ▲▲▲▲▲▲ */


/* ▼▼▼▼▼▼ 【トップページ】追従用メニュー ▼▼▼▼▼▼ */
.following-navi {
    display: none;
}

.is-show .following-navi {
    display: block;
    margin: 0;
    padding: 0 0 0 20px;
    width: calc(100% - 60px);
}

.is-show .following-navi ul {
    background: none;
    display: flex;
    min-height: auto;
    padding: 0;
    width: auto;
}

.is-show .following-navi ul li {
    margin-top: 0;
    width: calc((100% / 6) - 4px);
}

.is-show .following-navi ul li:nth-child(3) {
    width: calc((100% / 6) + 20px);
}

.is-show .following-navi ul li a {
    border: 0;
    border-right: 1px solid #aaa;
    font-size: 86%;
    padding: 4px 12px 4px 8px;
    text-align: center;
    color: #222;
    display: inline-block;
    text-decoration: none;
    letter-spacing: -1px;
    position: relative;
    width: 100%;
}

.is-show .following-navi ul li:first-child a {
    border-left: 1px solid #aaa;
}

.is-show .following-navi ul li.active a,
.is-show .following-navi ul li a:hover {
    color: #e30167;
}


.is-show .following-navi ul li a img {
    background: #ffe8e2;
    border-radius: 50%;
    padding: 4px;
    vertical-align: middle;
    margin-right: 3px;
    margin-top: -3px;
    height: auto;
    width: 22px;
}

/* ▲▲▲▲▲▲ 【トップページ】追従用メニュー ▲▲▲▲▲▲ */