/* ------------------------------------------- */
/* なび：レスポンシブ
/* ------------------------------------------- */

/* ---------------- レイアウト ----------------- */
* {
  /* Swiper + flex でエラーになるので追加。*/
  min-width: 0;
  min-height: 0;
}
html,
body {
    width: 100%;
}

body {
    /* フォントレンダリング設定: 1x解像度ではsubpixel、2x以上の解像度ではgrayscale */
    -webkit-font-smoothing: subpixel-antialiased;
    -moz-osx-font-smoothing: unset;
    background-color: #F7F6F0;
    font-size: 1rem;
    line-height: 1.5;
    color: #222;
    font-family: 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック', sans-serif;
    -webkit-text-size-adjust: none;
}

@media only screen and (-webkit-min-device-pixel-ratio: 2),
(min-resolution: 2dppx) {
    body {
        /* フォントレンダリング設定: 1x解像度ではsubpixel、2x以上の解像度ではgrayscale */
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }
}

.container {
    max-width: 1060px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

@media (min-width: 768px) {
    /*　画面サイズが768px以上（iPad）の場合、ここのスタイルを読み込む　*/
    .container {
        width: 1060px;
        display: flex;
        flex-direction: row;
    }
}

.right {
    /*　右カラム　*/
    margin: 0 auto;
    width: 95%;
}

@media (min-width: 768px) {
    .main {
        width: 760px;
    }
    .right {
        margin: 0;
        width: 300px;
    }
    .right.detail {/*20231103*/
        margin-top: -80px;
    }
}

/* ---------------- Basic ----------------- */
h1,
h2 {
    color: #003264;
    font-size: 1.2rem;
    margin: 5px 0;
    line-height: 1.2em;
}

h3 {
    color: #003264;
}
h3 a {
    color: #003264;
}

@media (min-width: 768px) {

    /*　画面サイズが768px以上（iPad）の場合、ここのスタイルを読み込む　*/
    h1,
    h2 {
        color: #003264;
        font-size: 1.8rem;
        margin: 5px 0;
        line-height: 1.2em;
    }
}

a {
    /* color: #4183C4; */
    /*color: #0C70D4; */
    color: #0B6BCB;
    /* 明るい青 */
    text-decoration: none !important;
}

a:visited {
    color: #264C72;
    /* くすんだ青色 !important*/
}

a:hover {
    color: #264C72;
    /* くすんだ青色 */
}

.floatleft {
    float: left;
}

.floatright {
    float: right;
}

.relative {
    position: relative;
}
.anchor{
    padding-top: 90px;
    margin-top: -90px;
}
@media (min-width: 768px) {
    .anchor{
        padding-top: initial;
        margin-top: initial;
    }
}

/* ---------------- flex/レスポンシブ ----------------- */

.flex {
    display: -webkit-box;
    display: -moz-box;
    display: box;
    display: -webkit-flex;
    display: flex;
}

.flex>div {
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    box-flex: 1;
    -webkit-flex: 1 1 0;
    flex: 1 1 0;
}

@media (min-width: 768px) {
    .pc-flex {
        display: flex;
    }
}

.mobile-only {
    display: block;
}

.pc-only,
.pc-only-inline {
    display: none;
}

@media (min-width: 768px) {
    .mobile-only {
        display: none;
    }

    .pc-only {
        display: block;
    }

    .pc-only-inline {
        display: inline-block;
    }
}

/* ----------------- ヘッダー ---------------- */
header {
    background: #FFF;
    border-bottom: 1px solid #c5d2ec;
    position: sticky;
    position: -webkit-sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
}

@media (min-width: 768px) {
    header {
        position: relative;
        position: -webkit-relative;
        top: initial;
        left: initial;
        right: initial;
    }
}

.header {
    width: 95%;
    max-width: 1060px;
    margin: 0 auto;
    padding: 10px 0;
    display: -webkit-box;
    display: -moz-box;
    display: box;
    display: -webkit-flex;
    display: flex;
}

.header-logo {
    padding: 0 10px 0 0;
}

.header-logo img {
    width: 90px;
    height: 29px;
}

.header-button .btn {
    padding: 0 2px 0 5px;
    height: 28px;
}

.header-search {
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    box-flex: 1;
    -webkit-flex: 1 1 0;
    flex: 1 1 0;
    padding: 0 5px 0 0;
}

.header-banner {
    text-align: right;
}

.form-search input[type="search"] {
    color: #555;
    background-color: #FFF;
    border: 2px solid #8CA5BF;
    border-radius: 4px;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset;
    transition: border 0.2s linear 0s, box-shadow 0.2s linear 0s;
    width: 100%;
    vertical-align: middle;
    display: inline-block;
    font-size: 0.8rem;
    line-height: 1.4rem;
    font-family: FontAwesome;
}

@media (min-width: 768px) {

    /*　画面サイズが768px以上（iPad）の場合、ここのスタイルを読み込む　*/
    .header-logo {
        padding: 15px 10px 0 0;
    }

    .header-logo img {
        width: 150px;
        height: 50px;
    }

    .header-button {
        padding: 15px 10px 0 0;
    }

    .header-button .btn {
        padding: 0px 10px;
        height: 39px;
    }

    .form-search input[type="search"] {
        line-height: 1.8em;
        /*width: 480px;*/
        /*margin-left: 20px;*/
        font-size: 1.2rem;
    }

    .header-search {
        padding: 15px 5px 0 20px;
    }
}

.header-tool ul {
    margin: 0;
    padding: 0;
}

.header-tool ul li {
    font-size: 0.9rem;
    list-style: none outside none;
    margin: 3px 0 3px 0;
    padding: 0 0 0 10px;
    float: left;
    display: inline;
    position: relative;
}

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

footer {
    /*background: #EBF2FA;*/
    background: #fff;
    /*border-top: 1px solid #C5D2EC;*/
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 3px 6px -6px rgba(0, 0, 0, 0.1) inset;
    padding-top: 10px;
    /*padding-bottom: 100px;*/
    padding-bottom: 150px;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.8);
    clear: both;
    margin-top: 10px;
}

.footer-content {
    margin: 20px 0;
}

.footer-content p {
    font-size: 0.9rem;
    color: #231815;
    line-height: 1.7em;
    margin-top: 20px;
}

.footer-share {
    margin-bottom: 10px;
}

.copyright {
    color: #231815;
    font-size: 0.6rem;
    margin-top: 5px;
}

.footer-wrapper {
    margin: 0 auto;
    max-width: 1060px;
    text-align: center;
}

@media (min-width: 768px) {
    .footer-wrapper {
        display: flex;
        text-align: initial;
    }
}

/* ----------------- フッターコンテンツ（SPのみ） ---------------- */

.footer-announce {
    margin: 20px 0 0 0;
    padding-left: 20px;
    font-size: 0.9rem;
    border-left: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: -1px 0 0 rgba(255, 255, 255, 0.8);
}

@media (min-width: 768px) {
    .footer-announce {
        width: 33%;
        margin: 20px 20px 0 0;
        padding-left: 20px;
    }
}

.footer-about {
    margin: 20px 0 0 0;
}

@media (min-width: 768px) {
    .footer-about {
        width: 33%;
        margin: 20px 20px 0 0;
        padding: 0;
    }
}

.footer-aboutblock ul {
    font-size: 0.9rem;
    list-style-type: none;
    line-height: 1.7rem;
    margin: 0;
    padding: 0;
}

/* ----------- 報告フォーム ------------- */

#report {
    margin-top: 10px;
    width: 33%;
    padding-bottom: 2px;
    background: #EBF2FA;
    border-radius: 5px;
    box-shadow: rgba(0, 0, 0, 0.3) 0 1px 2px;
}

#report-header {
    background: #DBE7F5;
    padding: 10px;
    border-bottom: 1px solid #DDD;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

#report-header h4 {
    margin: 0;
}

#report-header p {
    font-size: 12px;
    margin: 0;
}

#report .txt-fld {
    padding: 14px 20px 5px 20px;
}

#report .btn-fld {
    margin: 0px auto 10px auto;
    text-align: center;
}

#report .btn-fld .button {
    font-size: 12px;
}

#report .txt-fld select {
    background-color: #FFF;
    border: 1px solid #CCC;
    border-radius: 4px;
    display: inline-block;
    vertical-align: middle;
    height: 30px;
    cursor: pointer;
    width: 100%;
    margin: 0 0 10px 0;
}

#report .txt-fld textarea {
    width: 100%;
    height: 80px;
    padding: 5px;
    border-radius: 4px;
    background: #F7F7F7;
    outline: none;
    border-top: 1px solid #CCC;
    border-left: 1px solid #CCC;
    border-right: 1px solid #E7E6E6;
    border-bottom: 1px solid #E7E6E6;
}

/* ----------------- フッター固定メニュー（SPのみ） ---------------- */

ul.footermenu {
    margin: 0;
    padding: 0;
    position: fixed;
    bottom: 0px;
    left: 0px;
    right: 0px;
    z-index: 999
}

ul.footermenu li {
    width: 33.333%;
    float: left;
    margin-left: 0;
    margin-right: 0;
    padding: 0;
    list-style: none;
}

ul.footermenu li a {
    cursor: pointer;
    list-style: none outside none;
    position: relative;
    display: block;
    text-decoration: none;
    padding: 12px 0;
    font-size: 0.7rem;
    text-align: center;
    font-weight: bold;
    text-shadow: 0 -1px 1px rgba(0, 0, 0, 0.35);
    color: #fdda1b;
    background-color: #147ac1;
    background-image: linear-gradient(#147ac1, #0d69a9);
    border: 0px solid #0b619c;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

ul.footermenu li a.purplemenu {
    color: #fff;
    background-color: #7183a5;
    background-image: linear-gradient(#7183a5, #5b6f95);
    border: 0px solid #5b6f95;
}

ul.footermenu li a.redmenu {
    color: #fdda1b;
    background-color: #bf3737;
    background-image: linear-gradient(#bf3737, #a52a2a);
    border: 0px solid #a52a2a;
}

ul.footermenu li:first-child a {
    border-left-width: 0;
    border-right-width: 0;
}

ul.footermenu li:last-child a {
    border-left-width: 0;
    border-right-width: 0;
}

/* ---------------- メイン ----------------- */

.wrapper {
    margin: 0 auto 20px auto;
    width: 95%;
}

.shopinfo {
    margin: 0 auto 20px auto;
    width: 95%;
    background: #fff;
}
.detail .shopinfo {/*20231103*/
    box-shadow: rgb(0 0 0 / 30%) 0 1px 2px;
    /*margin: 0 auto 40px auto;*/
}

.shopcard {
    margin: 0 auto 20px auto;
    width: 95%;
    background: #fff;
    box-shadow: rgba(0, 0, 0, 0.3) 0 1px 2px;
    padding: 2%;
}

.shop-body {
    padding: 10px;
}

.shop-body.tight {
    padding: 0 !important;
}

@media (min-width: 768px) { /* PC */
    .wrapper {
        margin: 0 auto 20px 0;
        width: 728px;
    }

    .shopinfo {
        margin: 0 auto 20px 0;
        width: 728px;
        background: #fff;
    }
    .shopinfo {/*20231103 TB*/
        margin: 0 auto 40px 0;
    }
    .shopcard {
        margin: 0 auto 20px 0;
        width: 728px;
        background: #fff;
    }
}

.shop-header {
    /*紫色の帯*/
    padding: 5px 7px;
    margin-top: 14px;
    color: #fff;
    font-size: 1.0rem;
    font-weight: bold;
    border-top: 1px solid #5b6f95;
    border-bottom: 1px solid #5b6f95;
    background-color: #5b6f95;
    background-image: linear-gradient(#6981ad, #5b6f95);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.shop-header {/*20231103*/
    padding: 10px;
    margin: 0;
}

.shop-header.custom {
    /*カスタムの帯色変更*/
    border-top: 1px solid #73955b;
    border-bottom: 1px solid #73955b;
    background-color: #73955b;
    background-image: linear-gradient(#86a96d, #73955b);
    margin: 0;
}

.shop-header span {
    font-weight: normal;
    font-size: 0.8rem;
    margin-left: 10px;
}

.shop-header-sub {
    /*水色の帯*/
    border-top: 1px solid #c5d2ec;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.8);
    color: #264c72;
    font-weight: bold;
    font-size: 1.0rem;
    text-decoration: none;
    _line-height: 2.0em;
    margin: 0;
    padding: 8px 5px 8px 10px;
    display: block;
    background-color: #d0e3ef;
    background: linear-gradient(#d8ebf8, #d0e3ef);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.shop-header-sub {/*20231103*/
    padding: 10px;
}

.shop-header-sub.custom {
    border-top: 1px solid #ffc3e2;
    background-color: #fdebeb;
    background: linear-gradient(#fdebeb, #fdebeb);
}

.shop-body ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.shop-body ul li {
    border-bottom: dotted 1px #ccc;
    padding: 10px 0;
}
.shop-body.tight ul li {
    border-bottom: dotted 1px #ccc;
    padding: 5px 10px;
}

.shop-body.tight ul li a {
    display: block;
}

.sm-detail span {
    font-weight: bold;
    font-size: 14px;
    color: #666;
}

/* ------------ 詳細ページ　公式HP -------------- */
.officialhp {
  background: #d8ebf8;
  padding: 10px;
  border-radius: 4px
}
.officialhp img {
  width: 41px;
  height: 38px;
  margin: 5px 10px 5px 3px;
  float: left;
}
@media (max-width: 768px) {
  .officialhp img {
	margin: 0 5px 0 0;
	float: left;
	width: 25px;
	height: auto;
  }
}
.officialhp p {
  font-weight: bold;
  margin: 0;
  color: #0B6BCB;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* ------------ ここが好き -------------- */

p.love-date {
  font-size: 0.9rem;
  color: #666;
}

p.love-user {
  font-size: 0.9rem;
  color: #666;
}

p.love-review {
  font-weight: normal;
  margin-top: 0;
}

.love-contents {
  margin-bottom: 15px;
  padding: 0px 0px 7px 0px;
}

.love-usericon {
  margin: 5px;
  width: 40px;
}

.love-post {
  margin: 5px;
}
/* ------------ ここが好き、お問合せ -------------- */

.sm-mailform {
  width: 95%;
  margin: 10px auto;
  padding-bottom: 5px;
}

.formtitle {
    font-size: 1.2rem;
}
.sm-mailform span.formtitle {
  font-size: 0.9rem;
  font-weight: bold;
}

.sm-mailform p.textxsmall {
  font-size: 0.9rem !important;
  margin-top: 5px;
}

.sm-mailform textarea.ui-input-text {
  height: 100px !important;
}

.sm-mailform .form {
  /* input,textareaの枠 */
  border: 1px solid #CCCCCC;
  line-height: 1.5;
}

/* ------------ フォームのページ -------------- */

.form {
  background-color: #FFFFFF;
  border: 1px solid #CCCCCC;
  border-radius: 4px;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset;
  color: #555555;
  display: block;
  height: auto;
  line-height: 1.5;
  padding: 5px;
  transition: border-color 0.15s ease-in-out 0s, box-shadow 0.15s ease-in-out 0s;
  /*width: 96%;*/
  width: 100%;
}

.form-short {
  width: 60% !important;
}

.form textarea {
  padding: 6px 12px;
}


/* ----------------- 部品 ---------------- */

.eventnone {
  color: #999;
  pointer-events: none;
}

.visibilityhidden {
    visibility: hidden;
}

.overflowellipsis {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.circleimg {
    border-radius: 35px;
    -moz-border-image: border-radius:35px;
    -webkit-border-image: border-radius:35px;
    object-fit: cover;
    width: 70px;
    height: 70px;
    background-color: #ccc;
}

.gyosyulink-tag a {
    border-radius: 3px;
    display: inline-block;
    padding: 3px 6px;
    font-size: 0.8rem;
    margin: 3px;
    text-align: center;
    background: #4cb55e;
    color: #fff!important;
    background-image: linear-gradient(to bottom, #61c572, #4cb55e);
    font-weight: bold;
}
.gyosyulink-tag a {/*20231103*/
    font-size: 1.0rem;
}

.gyoshulink {
    color: #4cb55e;
    /*font-size: 0.9rem;*/
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;/*ようわからん！*/
    /*max-width: 100%; ここと inline-blockいっしょだと横にゆれる?*/
    width: 100%;
    max-width: 500px;
    /*display: inline-block;*/
    display: block;
    height: 24px;
}

.gyoshulink a {
    /*color: #4cb55e !important;*/
    color: #128727 !important;
}

.tagcloud {
    display: inline-block;
    margin: 3px 0;
}

.tagcloud a {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 3px;
    padding: 6px;
    font-size: 0.9rem;
    text-align: center;
    line-height: 2.0rem;
}

.label-red {
    background: #e54028;
    color: white;
    border-radius: 3px;
    display: inline-block;
    padding: 2px 5px;
    font-size: 0.7rem;
    margin: 2px 0;
    text-align: center;
}

ul.nonestyle {
    list-style-type: none;
    padding: 0;
}

ul.nonestyle li {
    margin: 10px 0;
}

.ruby {
    color: #666;
    font-size: 0.7rem;
    margin: 0;
}

.stickyalert {
    position: sticky;
    position: -webkit-sticky;
    top: 0;
    display: block;
    display: none;
    margin: 0;
    background: #003264;
    color: #fff;
    width: 100%;
    z-index: 99999;
    text-align: center;
    font-size: 0.8rem;
    padding: 5px;
}

.adsense {
    font-size: 0.7rem;
    padding: 5px 0 20px 0;
    text-align: center;
    display: none;
}

.spadwrap {
    margin:0 auto 20px auto;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    text-align: center;
    max-width: 95%;
}
.spadwrap {/*20231103*/
    margin: 0 auto 40px auto;
}

.pcadwrap {
    max-width: 728px;
    margin: 0 auto 20px 0;
    text-align: center;
}
.pcadwrap {/*20231103*/
    margin: 0 auto 40px 0;
}

.topicpath {
    margin: 10px;
    font-size: 0.8rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 700px;
    color: #666;
}

.widget_top .topwaku {
    border: 1px solid #ffead6;
    border-radius: 6px;
    margin: 0px;
    padding: 5px;
    text-align: center;
    font-size: 12px;
    background: #ffffea;
    color: #336699;
    max-width: 722px;
}

.geolisttitle {
    border-radius: 4px;
    font-size: 14px;
    color: #fff;
    padding: 5px;
    margin: 0;
    text-align: center;
    background-color: #5b6f95;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
/* ---------------- 掲載事業者様へ ----------------- */

.setsumei {
    color: #666;
    font-size: 0.9rem;
}


.editorhead {
    border-top: 1px solid #eab106;
    padding: 10px 0;
    margin: 20px 0 0 0;
    color: #6A4A3F;
    font-weight: bold;
    font-size: 1.0rem;
    background-color: #FFC107;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    text-align: center;
}

.editorbody {
    background: #ffffea;
    border: 1px solid #FFC107;
    padding: 10px;
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 30px;
}

/* ---------------- 引出しメニュー ----------------- */

.drawerbtn {
    border: 1px solid #ccc;
    background-color: #F2F2F2;
    background-image: linear-gradient(to bottom, #FFFFFF, #F2F2F2);
    border-radius: 5px;
    padding: 3px 6px 3px 6px;
    text-decoration: none;
    color: #BBB;
    font-size: 0.7rem;
    text-align: center;
    cursor: pointer;
    height: 28px;
    user-select: none;
}

#drawermenu {
    display: none;
    width: 100%;
    position: fixed;
    z-index: 9999;
    top: 51px;
    left: 0px;
    box-sizing: border-box;
    box-shadow: 5px 2px 5px rgba(0, 0, 0, .15);
    background: #EBF2FA;
}

#drawermenu ul {
    padding-left: 15px;
    list-style: none;
    font-size: 14px;
    font-size: 0.8rem;
    line-height: 2.5;
}

#drawermenu li a {
    display: block;
}

#drawermenu li a:before {
    font-family: FontAwesome;
    content: "\f060";
    margin-right: 5px;
}


#drawermenu_new {
    display: none;
    width: 100%;
    position: fixed;
    z-index: 9999;
    top: 51px;
    left: 0px;
    box-sizing: border-box;
    box-shadow: 5px 2px 5px rgba(0, 0, 0, .15);
    background: #EBF2FA;
}

#drawermenu_new ul {
    padding: 0;
    margin: 0;
    list-style: none;
    font-size: 14px;
    line-height: 2.5;
}

#drawermenu_new li a {
    display: block;
    border-bottom: 1px solid #c5d2ec;
    padding: 3px 15px;
}


/* ---------------- 紺色ナビメニュー：アイコン ----------------- */

.menu {
    width: 100%;
    margin: 0 auto 0 auto;
    padding-top: 0;
    transition: .5s;
    z-index: 99;
    position: sticky;
    top: 50px;
}

@media (min-width: 768px) {
    .menu {
        width: 728px;
        margin: 0 auto 0 0;
        position: relative;
        top: initial;
        padding: 8px 0;
    }
}

.menucontainer {/*20231103*/
    max-width: 1060px;
    /*margin: 50px auto 0 auto;*/
}
@media (min-width: 768px) {/*20231103*/
    .menucontainer {
        max-width: 1060px;
        margin: 0 auto;
    }
}

.menuicon_info {
    background: 0 0 no-repeat url(/asset/img/menuicon_info.png);
    padding: 0 0 12px 25px;
    background-size: 25px;
}

.menuicon_map {
    background: 0 0 no-repeat url(/asset/img/menuicon_map.png);
    padding: 0 0 12px 25px;
    background-size: 25px;
}

.menuicon_photo {
    background: 0 0 no-repeat url(/asset/img/menuicon_photo.png);
    padding: 0 0 12px 25px;
    background-size: 25px;
}

.menuicon_review {
    background: 0 0 no-repeat url(/asset/img/menuicon_review.png);
    padding: 0 0 12px 25px;
    background-size: 25px;
}

.menuicon_ecshop {
    background: 0 0 no-repeat url(/asset/img/menuicon_ecshop.png);
    padding: 0 0 12px 25px;
    background-size: 25px;
}

.menuicon_job {
    background: 0 0 no-repeat url(/asset/img/menuicon_job.png);
    padding: 0 0 12px 25px;
    background-size: 25px;
}

.menuicon_tokuhain {
    background: 0 0 no-repeat url(/asset/img/menuicon_tokuhain.png);
    padding: 0 0 12px 25px;
    background-size: 25px;
}

.menuicon_editor {
    background: 0 0 no-repeat url(/asset/img/menuicon_editor.png);
    padding: 0 0 12px 25px;
    background-size: 25px;
}

.menutext {
    font-size: 10px;
    font-size: 0.6rem;
    margin: 4px 0 0 0;
}

@media (min-width: 768px) {

    .menuicon_info,
    .menuicon_map,
    .menuicon_photo,
    .menuicon_review,
    .menuicon_ecshop,
    .menuicon_job,
    .menuicon_tokuhain,
    .menuicon_editor {
        background-position: center bottom;
        padding: 20px 0;
        background-size: 30px;
        display: block;
    }

    .menutext {
        font-size: 0.8rem;
        margin: 0 0 4px 0;
    }
}

/* ----------------- ふきだし ---------------- */

.gurunavi {
    margin: 5px 0 0 0 !important;
    text-align: left;
    color: #a76c1e;
    border: 1px solid #f1c545;
    background: #fffff0;
    padding: 3px !important;
    border-radius: 3px;
    font-size: 0.9rem;
}

.fukidashi {
    padding: 3px !important;
    margin: 8px 0 8px 0;
    background: #ebf5ff;
    border: 2px solid #c6dff5;
    font-size: 0.9rem;
    color: #0B6BCB;
    position: relative;
    /*display: inline-block;*/
    display: inline-block;
    width: fit-content;
    border-radius: 6px;
    line-height: 1.2;
}

.fukidashi:before {
    content: "";
    border: 9px solid transparent;
    border-bottom: 9px solid #c6dff5;
    position: absolute;
    left: 10px;
    top: -19px;
}

.fukidashi:after {
    content: "";
    border: 9px solid transparent;
    border-bottom: 9px solid #ebf5ff;
    position: absolute;
    left: 10px;
    top: -16px;
}

.fukidashi_reply {
  padding: 3px !important;
  margin: 8px 0 0 0;
  background: #fff8ef;;
  line-height: 1.2em;
  border: 1px solid #ea9312;
  color: #EA9312;
  position: relative;
  /*display: inline-block;*/
  display: inline-block;
  width: fit-content;
  border-radius: 6px;
  font-size: 0.9rem;
}

.fukidashi_reply:before {
  content: "";
  border: 9px solid transparent;
  border-bottom: 8px solid #EA9312;
  position: absolute;
  left: 10px;
  top: -18px;
}

.fukidashi_reply:after {
  content: "";
  border: 9px solid transparent;
  border-bottom: 7px solid #fff8ef;
  position: absolute;
  left: 10px;
  top: -16px;
}

.fukidashiboy {
    font-size: 0.9rem;
    border-radius: 8px;
    margin: 3px 10px 10px 10px;
    color: #477B80;
}

.fukidashigirl {
    font-size: 0.9rem;
    border-radius: 8px;
    margin: 3px 10px 10px 10px;
    color: #D92B59;
}

.fukidashimaru {
    font-size: 0.9rem;
    border: 1px solid #e0c38c;
    border-radius: 20px;
    margin: 10px;
    padding: 5px;
    background: #f8f4e6;
    line-height: 1.2rem;
    text-align: center;
}

.cafe_food {
    background: url(/asset/img/yusuke_kamiyamane_icon-cafe_food.png) #f04365 no-repeat 5px 50%;
    border-radius: 3px;
    display: inline-block;
    padding: 3px 6px 3px 30px;
    font-size: 85%;
    font-size: 12px;
    margin-top: 8px;
    text-align: center;
    color: #fff !important;
    cursor: pointer;
}
.cafe_food a {
    color: #fff !important;
  }

/* ------------ 商品紹介 -------------- */

.article {
  background-color: #FFF;
  margin-bottom: 15px;
  padding: 2%;
  box-shadow: rgba(0, 0, 0, 0.3) 0 1px 2px;
}

.article p {
  margin: 5px 8px 5px 8px;
}

.article-title {
  font-weight: bold;
  font-size: 14px;
  margin: 0px 8px 5px 8px;
}

.article-title-shop {
  font-weight: bold;
  font-size: 16px;
  text-align: left;
}

.article-price {
  text-align: left;
}

.article-price-yen {
  font-weight: bold;
  font-size: 16px;
  color: red;
}

.article-price-shop {
  text-align: left;
  font-weight: bold;
  font-size: 26px;
  color: red;
  font-family: Helvetica;
}

.article-date {
  font-size: 10px;
  color: #666;
}

/* ----------------- カラーボール ---------------- */

.colorball {
    margin: 5px 10px 0 2px;
    float: left;
}

.icon-stack [class^="icon-"],
.icon-stack [class*=" icon-"] {
    font-size: 0.7em;
}

.icon-stack {
    width: 1.3em;
    height: 1.3em;
    line-height: 1.3em;
}

.icon-stack .icon-stack-base {
    font-size: 1.3em;
}

.icon-star {
    color: #FA9E25;
    font-size: 0.9em;
    vertical-align: bottom;
}

.icon-star:before {
    vertical-align: bottom;
}

.icon-map-marker_color .icon-circle {
    /*地図確認済み（濃いピンク）*/
    color: #ee4a7c;
}

.icon-picture_color .icon-circle {
    /*ストリートビュー（オレンジ）*/
    color: #ffa500;
}

.icon-laptop_color .icon-circle {
    /*ホームページ（黄緑）*/
    color: #a4db00;
}

.icon-usd_color .icon-circle {
    /*【未使用】クーポンは無しで同じ色でネットショップを追加*/
    color: #c25ce5;
}

.icon-shopping-cart_color .icon-circle {
    /*ネット販売（青緑）*/
    color: #00b0a4;
}

.icon-camera_color .icon-circle {
    /*写真掲載あり（facebookより薄い青）*/
    color: #535fba;
}

.icon-link_color .icon-circle {
    /*【未使用】相互リンクは無しで同じ色で予約を追加*/
    color: #b9603d;
}

.icon-calendar_color .icon-circle {
    /*予約受付（茶色）*/
    color: #b9603d;
}

.icon-envelope_color .icon-circle {
    /*メールアドレス（紫）*/
    color: #9756b4;
}

.icon-bullhorn_color .icon-circle {
    /*特派員記事（濃いサーモン）*/
    color: #ee664e;
}

.icon-twitter_color .icon-circle {
    /*ツイッター（水色）*/
    color: #00ACEE;
}

.icon-heart_color .icon-circle {
    /*ここが好き（薄ピンク）*/
    color: #FF9292;
}

.icon-rss_color .icon-circle {
    /*【未使用】rssは無しで同じ色で求人を追加*/
    color: #ffa500;
}

.icon-list-alt_color .icon-circle {
    /*求人情報（濃い緑）*/
    color: #6cb524;
}

.icon-facebook_color .icon-circle {
    /*フェイスブック（facebook青）*/
    color: #3F5C9A;
}

.bigicon .icon-stack [class^="icon-"],
.bigicon .icon-stack [class*=" icon-"] {
    font-size: 0.9em;
}

.bigicon .icon-stack {
    width: 1.5em;
    height: 1.5em;
    line-height: 1.5em;
    margin-right: -3px;
}

.bigicon .icon-stack .icon-stack-base {
    font-size: 1.5em;
}

/* ----------------- ボタン ---------------- */

.btn {
    color: #FFF;
    background-color: #52A8E8;
    background-image: linear-gradient(#52A8E8, #377AD0);
    border-color: #4081AF #2E69A3 #20559A;
    border-radius: 5px;
    border-style: solid;
    border-width: 1px;
    margin: 0 3px;
    padding: 1px 10px;
    box-shadow: 0 1px 0 0 #72B9EB inset, 0 1px 2px 0 #B3B3B3;
    text-align: center;
    text-shadow: 0 -1px 1px #3275BC;
}

.button-post {
    color: #E91E63 !important;
    min-width: 280px;
}

.button-post-blue {
    color: #0B6BCB !important;
    min-width: 280px;
}

.button {
    display: inline-block;
    border: 1px solid #CCC;
    background-color: #f2f2f2;
    background-image: linear-gradient(to bottom, #fff, #f2f2f2);
    border-radius: 4px;
    transition: none;
    text-shadow: none;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    padding: 8px 10px;
    color: #222;
    font-size: 0.9rem;
    text-align: center;
    cursor: pointer;
    user-select: none;
}

@media (min-width: 768px) {
    .button {
        width: initial;
    }
}

.button.btn-action {
    font-weight: bold;
    border: 1px solid #003264;
    background-color: #003264;
    background-image: linear-gradient(to bottom, #00458b, #003264);
    color: #fff;
    text-shadow: 0 -1px 1px rgba(0, 0, 0, 0.35);
    line-height: 1.2rem;
    font-size: 1.0rem !important;
    width: 100%;
}

.button.btn-cart {
    font-weight: bold;
    border-color: #bf7004;
    background-image: linear-gradient(#fa9915, #d87e04);
    background-color: #f18d05;
    border-radius: 30px;
    box-shadow: inset 0px 1px 0px rgba(255, 255, 255, 0.5), 0px 1px 2px rgba(0, 0, 0, 0.2);
    color: #fff;
    text-shadow: 0 -1px 1px rgba(91, 53, 2, 0.35);
    line-height: 15px;
    min-width: 280px;
}

.button.btn-mailform {
    font-weight: bold;
    border: 1px solid #003264;
    background-color: #003264;
    background-image: linear-gradient(to bottom, #00458b, #003264);
    color: #fff;
    text-shadow: 0 -1px 1px rgba(0, 0, 0, 0.35);
    line-height: 30px;
    font-size: 12px;
    padding: 0 15px;
    min-width: 280px;
}

.button.btn-love {
    font-weight: bold;
    border: 1px solid #DF3E7B;
    background-color: #DF3E7B;
    background-image: linear-gradient(to bottom, #ef689b, #DF3E7B);
    color: #fff;
    text-shadow: 0 -1px 1px rgba(0, 0, 0, 0.35);
    font-size: 1.0rem;
    font-weight: bold;
    min-width: 280px;
}

.button.btn-photo {
    border: 1px solid #3e8ddf;
    background-color: #3e8ddf;
    background-image: linear-gradient(to bottom,#509ff1,#3e8ddf);
    color: #fff;
    text-shadow: 0 -1px 1px rgba(0,0,0,0.35);
    font-size: 1.0rem;
    font-weight: bold;
    min-width: 280px;
}

.btn-green {
    cursor: pointer;
    font-weight: bold;
    color: #FFF !important;
    margin: 0 0 0 10px;
    padding: 2px 10px;
    background-color: #4cb303;
    background-image: linear-gradient(#4cb303,#3e9500);
    border-color: #3e9500;
    box-shadow: none;
}

.btn-skyblue {
    padding: 10px;
    font-size: 16px;
    font-weight: 700;
    color: #6ba2d8 !important;
    min-width: 280px;
}
/* ----------------- アクションボタン ---------------- */

.action-button:first-child {
    padding-right: 5px;
}

/* ----------------- 投票ボタン ---------------- */
.inlinebtn {
    font-size: 0.9rem;
    font-weight: bold;
    border-width: 1px;
    border-style: solid;
    color: #6ba2d8;
    border: 1px solid #CCC;
    background-color: #F2F2F2;
    background-image: linear-gradient(to bottom, #FFFFFF, #F2F2F2);
    padding: 10px 0;
    text-align: center;
    user-select: none;
}

.inlinebtn.firstchild {
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    border-right-width: 0;
}

.inlinebtn.middlechild {
    border-right-width: 0;
}

.inlinebtn.lastchild {
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
}

.inlinebtn.firstlast {
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
}

.inlinebtn.active {
    background: #ededed;
    color: #264C72;
    box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.2) inset;
}


/* ----------------- ナビメニュー ---------------- */
.inlinebtnsp {
    font-weight: 700;
    padding: 0;
    text-align: center;
    border-right: 1px solid #CCC;
    border-bottom: 1px solid #CCC;
    background-color: #F2F2F2;
    background-image: -webkit-linear-gradient(top, #FFFFFF, #F2F2F2);
    background-image: -moz-linear-gradient(top, #FFFFFF, #F2F2F2);
    background-image: linear-gradient(to bottom, #FFFFFF, #F2F2F2);
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.inlinebtnsp.active {/*20231103*/
	background-color: #b0d0f0;
	background-image: -webkit-linear-gradient(top, #b0d0f0, #85abd0);
	background-image: -moz-linear-gradient(top, #b0d0f0, #85abd0);
	background-image: linear-gradient(to bottom, #b0d0f0, #85abd0);
}

.inlinebtnsp a {
    display: block;
}

.inlinebtnsp.lastchild {
    border-right: 0px solid #CCC;
}

@media (min-width: 768px) {
    .inlinebtnsp.firstchild {
        border-left: 1px solid #CCC;
    }

    .inlinebtnsp.lastchild {
        border-right: 1px solid #CCC;
    }
}

/* -----------------  近隣の同業他社 ---------------- */

.shop-list h3 {
    margin: -2px 0 0 0;
    padding: 0;
    line-height: 1.2;
}

.shop-list h4 {
    color: #222;
    font-size: 0.9rem;
    margin: 0;
    padding: 0 30px 0 0;
    line-height: 1.2;
}

.shop-list ul {
    margin: 0;
    padding: 0;
    list-style: none outside none;
}

.shop-list ul li {
    /*padding: 20px 20px 7px 20px;*/
    padding: 20px 10px 7px;
    background: #fff;
    border-bottom: 1px solid rgb(224, 224, 224);
}

.shop-list.top ul li {
    padding: 12px 10px 7px 12px;
}

@media (min-width: 768px) {
    shop-list ul li {
        padding: 10px 20px 7px 20px;
    }
}

@media (min-width: 768px) {
    /*PCは矢印なし*/
    .shop-list ul li a:before {
        font-family: FontAwesome;
        content: initial;
        position: absolute;
        top: 30%;
        right: 15px;
    }
}

.shop-list ul li .gyoshulink a:before {
    display: none;
}

.shop-list ul li p a:before {
    display: none;
}

.shop-list ul li:first-child {
    border-top: 1px solid rgb(224, 224, 224);
}

.shop-list p {
    color: #222;
    margin: 0;
    padding: 0;
}

.shop-list a:hover {
    text-decoration: none;
    opacity: 0.8;
}

/* ----------------- 閲覧履歴（最近見たページ） ---------------- */

ul.accesslist {
    list-style-type: none;
    font-size: 0.9rem;
    margin: 0;
    background: #FFF;
    padding: 5px;
}

ul.accesslist li {
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    line-height: 2.0rem;
    border-bottom: 1px dashed #d0e3ef;
}

ul.accesslist li a {
    display: block;
}

ul.accesslist li .date {
    color: #777;
    font-size: 0.7rem;
    margin-left: 7px;
    margin-right: 5px;
}

/* ----------------- なびゲーション ---------------- */
.navigation-head {
    background-color: #d0e3ef;
    background-image: linear-gradient(#d8ebf8, #d0e3ef);
    color: #264c72;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.8);
    border: 1px solid #97c1da;
    border-radius: 8px 8px 0 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.navigation-head p {
    line-height: 2.0em;
    margin: 0 0 0 5px;
    padding: 0 0 0 20px;
    font-weight: bold;
}

.navigation-contents a {
    background: #4b96d2;
    color: #fff;
    border-bottom: 1px solid #ddd;
    padding: 6px 6px 6px 12px;
    cursor: pointer;
    display: block;
    margin: 0;
    padding: 10px 10px 10px 13px;
}

.navigation-foot {
    background-color: #d0e3ef;
    background-image: linear-gradient(#d8ebf8, #d0e3ef);
    border: 1px solid #97c1da;
    border-radius: 0 0 8px 8px;
    height: 10px;
    margin-bottom: 20px;
}

/* ----------------- 画像アイコン ---------------- */
.icon_magnify {
    background: url(/asset/img/glyphish_icon-magnify.png) no-repeat scroll left center transparent;
    padding-left: 18px;
    background-size: 80%;
}

.icon_vline {
    background: url(/asset/img/vline.png) no-repeat scroll left center transparent;
    padding-left: 18px;
}

.icon_love {
    background: 0 0 no-repeat url("/asset/img/famfamfam_icon-heart.png");
    padding-left: 24px;
}

.icon_search {
    background: 0 0 no-repeat url("/asset/img/famfamfam_icon-zoom.png");
    padding-left: 24px;
}

.icon_chart {
    background: 0 -1px no-repeat url("/asset/img/famfamfam_icon-chart_bar.png");
    padding-left: 17px;
    padding-bottom: 2px;
}

.icon_marker {
    background: 0 0 no-repeat url("/asset/img/yusuke_kamiyamane_icon-marker.png");
    padding-left: 17px;
    padding-top: 2px;
}

.icon_bell {
    background: 0 -1px no-repeat url("/asset/img/famfamfam_icon-bell.png");
    padding-left: 17px;
    padding-bottom: 2px;
}

.icon_vcard {
    background: 0 -1px no-repeat url("/asset/img/famfamfam_icon-vcard.png");
    padding-left: 17px;
    padding-bottom: 2px;
}

.icon_thumbdown {
    background: 0 -1px no-repeat url("/asset/img/fatcow_icon-thumb_down.png");
    padding-left: 17px;
    padding-bottom: 2px;
}

.icon_zoom {
    background: url("/asset/img/famfamfam_icon-zoom.png") no-repeat scroll left center rgba(0, 0, 0, 0);
    padding-left: 18px;
}

.icon_thumbsup {
    padding-left: 20px;
    background: url(/asset/img/fatcow_icon-thumb_up.png) no-repeat scroll left center transparent;
}

.icon_accept {
    padding-left: 20px;
    background: url(/asset/img/fatcow_icon-accept_button.png) no-repeat scroll left center transparent;
}

.icon_heart {
    padding-left: 20px;
    background: url(/asset/img/famfamfam_icon-heart.png) no-repeat scroll left center transparent;
}

.icon_tag {
    background: url(../img/famfamfam_icon-tag.png) no-repeat scroll left center transparent;
    padding-left: 18px;
}

/* ------------ ページの先頭へ -------------- */
/* Back to top button http://webdesignerwall.com/tutorials/animated-scroll-to-top */

#back-top {
    text-align: center;
    margin-bottom: 30px;
    /*position: fixed;
    bottom: 30px;
    right: 5px;*/
}

#back-top a {
    background-image: url("/asset/img/back_to_top.png");
    background-position: center;
    background-repeat: no-repeat;
    cursor: pointer;
    display: block;
    height: 55px;
}

#back-top a span {
    color: #888;
    font-size: 0.7rem;
    line-height: 120px;
    text-decoration: none;
}

#back-top a:link {
    text-decoration: none;
}

/* ----------- ダミーレイアウト用 ------------- */

.dummyad728_90 {
    background-color: #eee;
    max-width: 728px;
    height: 90px;
    text-align: center;
    margin-bottom: 30px;
}

.dummyad336_280 {
    background-color: #eee;
    width: 336px;
    height: 280px;
    text-align: center;
    margin: 0 auto;
    margin-bottom: 30px;
}

.dummyad300_600 {
    background-color: #eee;
    width: 300px;
    height: 600px;
    text-align: center;
    margin-bottom: 30px;
}

.dummyad160_600 {
    background-color: #eee;
    width: 160px;
    height: 600px;
    text-align: center;
}

/* ----------- カテゴリ用 ------------- */
/* ----------- カテゴリ用 ------------- */


.bluebox {
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.055);
    margin: 10px 10px 10px 0;
    width: 272px;
}

.bluebox-head {
    background-color: #D0E3EF;
    background-image: linear-gradient(#D8EBF8, #D0E3EF);
    background-image: -moz-linear-gradient(top, #D8EBF8, #D0E3EF);
    background-image: -webkit-gradient(linear, left top, left bottom, from(#D8EBF8), to(#D0E3EF));
    border: 1px solid #97C1DA;
    border-radius: 8px 8px 0 0;
}

.bluebox-head p {
    line-height: 2em;
    margin: 0 0 0 5px;
    padding: 5px 5px 5px 20px;
    font-weight: bold;
    color: #264C72;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.8);
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.bluebox-contents {
    background-color: #FFF;
    border-color: #FFF #97C1DA #97C1DA;
    border-style: solid;
    border-width: 1px;
    padding: 0;
}
.lovebox-contents {
    background-color: #FFF;
    border-color: #FFF #97c1da #97c1da;
    border-style: solid;
    border-width: 1px;
    padding: 0;
}
.bluebox-contents ul {
    padding: 0;
    margin: 0;
}
.lovebox-contents ul {
    margin: 0;
    padding: 0;
}


.shop-contents {
    background-color: #FFF;
    margin-bottom: 20px;
}
.shop-contents {/*20231103*/
    margin-bottom: 40px;
}

.shop-contents.list a {
    margin: 0;
    padding: 5px 5px 5px 10px;
    display: inline-block;
    width: 100%;
    border-bottom: 1px solid #c5d2ec;
}
.shop-contents ul {
    margin: 0;
    padding: 0;
}
.shop-contents ul li {
    margin: 0;
    padding: 5px 5px 5px 10px;
    display: inline-block;
    width: 100%;
    border-bottom: 1px solid #c5d2ec;
}
.shop-contents.twocol ul li {
    margin: 0;
    padding: 5px 0 5px 10px;
    display: inline-block;
    width: 49%;
    border-bottom: 1px dashed #c5d2ec;
}
.shop-contents.threecol ul li {
    margin: 0;
    padding: 5px 0 5px 10px;
    display: inline-block;
    width: 32%;
    border-bottom: 1px dashed #c5d2ec;
}
.twocol ul li .ct,
.threecol ul li .ct {
    margin-left: 5px;
    font-size: small;
}
.bluebox-contents li {
    list-style-type: none;
}

.lovebox-contents li {
    color: #4183c4;
    line-height: 1.5em;
    border-bottom: 1px dashed #c5d2ec;
    margin: 0;
    padding: 10px;
    list-style: none;
}

.bluebox-contents a {
    background: #fff;
    border-bottom: 1px solid #ddd;
    margin: 2px 0;
    padding: 6px 6px 6px 12px;
    cursor: pointer;
    display: block;
    margin: 0;
    font-size: 14px;
}
.bluebox-foot {
    background-color: #D0E3EF;
    background-image: linear-gradient(#D8EBF8, #D0E3EF);
    background-image: -moz-linear-gradient(top, #D8EBF8, #D0E3EF);
    background-image: -webkit-gradient(linear, left top, left bottom, from(#D8EBF8), to(#D0E3EF));
    border: 1px solid #97C1DA;
    border-radius: 0 0 8px 8px;
    height: 10px;
    margin-bottom: 10px;
    margin-top: -2px;
}

.formatwrapper {
    margin-bottom: 10px;
}

.formatwrapper ul {
    text-align: center;
    margin: 0 auto;
    padding: 0;
}

.formatwrapper li {
    margin: 0 5px;
    list-style: none outside none;
}


/* ------------ 関連業種サーチのタブ部分 JQMタブ -------------- */

ul.btn-tab {
    padding: 0;
    margin: 0;
}

.btn-tab li {
    width: 100%;
    float: left;
    margin-left: 0;
    margin-right: 0;
    padding: 0;
    list-style: none;
}

.btn-tab-half li {
    width: 50%;
}

.btn-tab-third li {
    width: 33.333%;
}

ul.btn-tab li a {
    background-color: #FFF;
    list-style: none outside none;
    border: 1px solid #97C1DA;
    position: relative;
    display: block;
    text-decoration: none;
    color: #264C72;
    padding: 10px 0;
    text-align: center;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    cursor: pointer;
    font-weight: 700;
}

ul.btn-tab li:first-child a {
    border-right-width: 0;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
}

ul.btn-tab li:last-child a {
    border-right-width: 1px;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
    border-left-width: 0px;
    border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;
}

ul.btn-tab-half li:last-child a {
    border-right-width: 1px;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
    border-left-width: 1px;
    border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;
}

ul.btn-tab-one li:last-child a {
    border-right-width: 1px;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
    border-left-width: 1px;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
}


.panels>.panel {
    display: none;
}

.panels>.panel.active {
    display: block;
}

ul.btn-tab li a.active {
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.8);
    font-weight: bold;
    background-color: #D0E3EF;
    background-image: -webkit-gradient(linear, left top, left bottom, from(#D8EBF8), to(#bcd8ea));
    background-image: -moz-linear-gradient(top, #D8EBF8, #D0E3EF);
    background-image: linear-gradient(#D8EBF8, #D0E3EF);
}

.votecount .icon_chart,
.votecount .icon_thumbup,
.votecount .icon_accept {
    padding-left: 20px;
    background-size: 18px;
    font-size: 1.2rem;
}

.votecount {
    margin: 5px 10px 0 2px;
    float: left;
    font-size: 16px;
    color: #666;
}

.votecount i {
    font-style: normal;
}

.icon_thumbup {
    background: 0 -1px no-repeat url("/ass/asset/img/fatcow_icon-thumb_up.png");
    padding-left: 17px;
    padding-bottom: 2px;
}


.votebox-head .icon_accept {
    /*ランキング*/
    background: 0 -1px no-repeat url("/ass/asset/img/fatcow_icon-accept_button.png");
    padding-left: 24px;
    margin-right: -10px;
    padding-bottom: 6px;
    background-size: 18px;
}

.icon_accept {
    background: 0 -1px no-repeat url("/ass/asset/img/fatcow_icon-accept_button.png");
    padding-left: 17px;
    padding-bottom: 2px;
}

.icon_new {
    background: 0 -1px no-repeat url(/ass/asset/img/fatcow_icon-new.png);
    padding-left: 32px;
    padding-bottom: 5px;
    vertical-align: top;
    margin-left: 5px;
}

.ellipsis li {
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

/* ----------- center column 投票結果 ------------- */

.votebox {
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.055);
    margin: 10px 10px 10px 0;
    width: 272px;
}

.votebox-head {
    background-color: #FFEB92;
    background: -moz-linear-gradient(top, #FCEDB0, #FFEB92);
    background: linear-gradient(#FCEDB0, #FFEB92);
    border: 1px solid #E3AC2C;
    border-radius: 8px 8px 0 0;
}

.votebox-head p {
    line-height: 2em;
    margin: 0;
    padding: 0 0 0 10px;
    font-weight: bold;
    font-size: 0.9rem;
    color: #B58501;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.8);
}

.votebox-contents {
    background-color: #FFFFFF;
    border-color: #FFFFFF #E3AC2C #FFFFFF #E3AC2C;
    border-style: solid;
    border-width: 1px;
    font-size: 85%;
    padding: 0;
}

.votebox-contents ul {
    padding-left: 0;
}

.votebox-contents li {
    border-bottom: 1px dashed #C5D2EC;
    color: #0B6BCB;
    margin: 5px;
    padding: 0;
    list-style-type: none;
}

.votebox-contents li:last-child {
    border-bottom: none;
}

.votebox-contents li span.rank1,
.votebox-contents li span.rank2,
.votebox-contents li span.rank3,
.votebox-contents li span.rank4,
.votebox-contents li span.rank5,
.votebox-contents li span.rank6,
.votebox-contents li span.rank7,
.votebox-contents li span.rank8,
.votebox-contents li span.rank9,
.votebox-contents li span.rank10 {
    padding: 2px 0 2px 25px;
    margin-left: 7px;
    vertical-align: top;
    display: inline-block;
    height: 18px;
}

.votebox-contents li span.rank11,
.votebox-contents li span.rank12,
.votebox-contents li span.rank13,
.votebox-contents li span.rank14,
.votebox-contents li span.rank15,
.votebox-contents li span.rank16,
.votebox-contents li span.rank17,
.votebox-contents li span.rank18,
.votebox-contents li span.rank19,
.votebox-contents li span.rank20,
.votebox-contents li span.rank21,
.votebox-contents li span.rank22,
.votebox-contents li span.rank23,
.votebox-contents li span.rank24,
.votebox-contents li span.rank25,
.votebox-contents li span.rank26,
.votebox-contents li span.rank27,
.votebox-contents li span.rank28,
.votebox-contents li span.rank29,
.votebox-contents li span.rank30 {
    background: url("../img/fatcow_icon-toggle_wh.png") no-repeat scroll left center transparent;
    padding: 15px 10px 15px 3px;
    margin-left: 7px;
    vertical-align: top;
    display: inline-block;
    font-size: 9px;
}

.votebox-contents li span.rank1 {
    background: url("../img/fatcow_icon-toggle1.png") no-repeat scroll left center transparent;
}

.votebox-contents li span.rank2 {
    background: url("../img/fatcow_icon-toggle2.png") no-repeat scroll left center transparent;
}

.votebox-contents li span.rank3 {
    background: url("../img/fatcow_icon-toggle3.png") no-repeat scroll left center transparent;
}

.votebox-contents li span.rank4 {
    background: url("../img/fatcow_icon-toggle4.png") no-repeat scroll left center transparent;
}

.votebox-contents li span.rank5 {
    background: url("../img/fatcow_icon-toggle5.png") no-repeat scroll left center transparent;
}

.votebox-contents li span.rank6 {
    background: url("../img/fatcow_icon-toggle6.png") no-repeat scroll left center transparent;
}

.votebox-contents li span.rank7 {
    background: url("../img/fatcow_icon-toggle7.png") no-repeat scroll left center transparent;
}

.votebox-contents li span.rank8 {
    background: url("../img/fatcow_icon-toggle8.png") no-repeat scroll left center transparent;
}

.votebox-contents li span.rank9 {
    background: url("../img/fatcow_icon-toggle9.png") no-repeat scroll left center transparent;
}

.votebox-contents li span.rank10 {
    background: url("../img/fatcow_icon-toggle10.png") no-repeat scroll left center transparent;
}

.votebox-contents li span.rank {
    padding-left: 9px;
    margin-right: 6px;
    line-height: 2em;
}

.votebox-contents .rankadress {
    position: absolute;
    top: 20px;
    right: 12px;
    color: #888;
}

.votebox-contents .ranktel {
    position: absolute;
    top: 20px;
    right: 12px;
    color: #888;
}

.votebox-contents .catebg {
    padding: 10px;
    color: #B58501;
    margin: 0;
}

.votebox-foot {
    background-color: #FFEB92;
    background: -moz-linear-gradient(top, #FCEDB0, #FFEB92);
    background: linear-gradient(#FCEDB0, #FFEB92);
    border: 1px solid #E3AC2C;
    border-radius: 0 0 8px 8px;
    height: 10px;
}

.votebox-foot p {
    line-height: 2em;
    margin: 0;
    padding: 0;
    font-size: 14px;
    color: #B58501;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.8);
    text-align: center;
}
/* ------------ カテゴリトップ、事業所一覧 -------------- */

.rankicon1 {
    background: url("/ass/asset/img/fatcow_icon-award_star_gold_red.png") no-repeat scroll left center transparent;
}

.rankicon2 {
    background: url("/ass/asset/img/fatcow_icon-award_star_silver_blue.png") no-repeat scroll left center transparent;
}

.rankicon3 {
    background: url("/ass/asset/img/fatcow_icon-award_star_bronze_green.png") no-repeat scroll left center transparent;
}

.rankicon4 {
    background: url("/ass/asset/img/fatcow_icon-toggle4.png") no-repeat scroll left center transparent;
}

.rankicon5 {
    background: url("/ass/asset/img/fatcow_icon-toggle5.png") no-repeat scroll left center transparent;
}

.rankicon6 {
    background: url("/ass/asset/img/fatcow_icon-toggle6.png") no-repeat scroll left center transparent;
}

.rankicon7 {
    background: url("/ass/asset/img/fatcow_icon-toggle7.png") no-repeat scroll left center transparent;
}

.rankicon8 {
    background: url("/ass/asset/img/fatcow_icon-toggle8.png") no-repeat scroll left center transparent;
}

.rankicon9 {
    background: url("/ass/asset/img/fatcow_icon-toggle9.png") no-repeat scroll left center transparent;
}

.rankicon10 {
    background: url("/ass/asset/img/fatcow_icon-toggle10.png") no-repeat scroll left center transparent;
}

.rankicon1,
.rankicon2,
.rankicon3 {
    padding: 20px 0 20px 28px;
    padding-bottom: 20px;
    vertical-align: top;
    display: inline-block;
    position: absolute;
    right: 0px;
    top: -5px;
}

.rankicon4,
.rankicon5,
.rankicon6,
.rankicon7,
.rankicon8,
.rankicon9,
.rankicon10 {
    padding: 20px 0 20px 21px;
    margin-left: 7px;
    vertical-align: top;
    display: inline-block;
    position: absolute;
    right: 0px;
    top: -10px;
}

.rankicon {
    padding: 1px;
    font-size: 0.7rem;
    text-align: center;
    color: #555;
    background: #efefef;
    border: #bbbbbb solid 1px;
    position: absolute;
    min-width: 20px;
    top: 0px;
    right: 0px;
}

/* ------------ 新しい丸い：カテゴリトップ、事業所一覧 -------------- */

.scorerank, .scorevote1, .scorevote2 {
    bottom: 14px;
    left: 10px;
    font-size: 15px;
    color: #fff!important;
    width: 60px;
    text-align: center;
    line-height: 2em;
    opacity: .8;
    font-weight: 700;
}
.ranknumber_wp {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 60px;
    height: 60px;
}
.ranknumber {
    font-size: 15px;
    font-weight: bold;
    color: #fff;
    text-align: center;
    line-height: 60px;
    display: block;
}
.ranknumber1, .ranknumber2, .ranknumber3 {
    position: absolute;
    width: 60px;
    height: 60px;
    top: 0;
    left: 0;
    background: url(/ass/asset/img/medal_1st.png) left center no-repeat;
    background-size: contain;
}
.ranknumber2 {
    position: absolute;
    width: 60px;
    height: 60px;
    top: 0;
    left: 0;
    background: url(/ass/asset/img/medal_2nd.png) left center no-repeat;
    background-size: contain;
}
.ranknumber3 {
    position: absolute;
    width: 60px;
    height: 60px;
    top: 0;
    left: 0;
    background: url(/ass/asset/img/medal_3rd.png) left center no-repeat;
    background-size: contain;
}
.imageradius {
    border-radius: 7px;
}

/* 写真トリミング */
.cover_category {
    object-fit: cover;
    width: 80px;
    height: 80px;
    background-color: #ccc;
    /*margin-right: 10px;*/
    margin-right: 0;
}

@media (min-width: 768px) {
    .cover_category {
        width: 100px;
        height: 100px;
    }
}

/* --------- clearfix (h5bp.com) ---------- */

.clearfix:before,
.clearfix:after {
    content: " ";
    display: table;
}

.clearfix:after {
    clear: both;
}

.clearfix {
    *zoom: 1;
}

.left-box {
    width: 95%;
    margin-right: 10px;
}
@media (min-width: 768px) {
    .left-box {
        width: 100%;
        position: relative;
    }
}

.photo-box {
    /*margin-right: 15px;*/
    margin-right: 10px;
}

.right-box {
    margin-left: auto;
}

/* --------- flex ---------- */

.flex-container {
    /*display: box;*/
    display: flex;
}
.flex-container > * {
    min-width: initial;
    min-height: initial;
}

.flex-column {
    display: flex;
    flex-direction: column;
}

@media (min-width: 768px) {

    /* PC */
    .flex-column {
        display: flex;
        flex-direction: row !important;
    }

    .flex-column .twocol {
        width: 50%;
        margin-right: 10px;
    }

    .flex-column .twocol+.twocol {
        /*直後に隣接している要素*/
        width: 50%;
        margin-left: 10px;
        margin-right: 0;
    }
}

.flex-box {
    -webkit-box-flex: 1;
    /*すべて均等幅で横に並べる*/
    -moz-box-flex: 1;
    box-flex: 1;
    -webkit-flex: 1 1 0;
    flex: 1 1 0;
}

.flex-innerleft {
    margin: 5px;
}

.flex-innerright {
    margin: 0 5px;
}

.flex {
    display: -webkit-box;
    display: -moz-box;
    display: box;
    display: -webkit-flex;
    display: flex;
}

.flex>div {
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    box-flex: 1;
    -webkit-flex: 1 1 0;
    flex: 1 1 0;/* 全て均等 : flex-grow flex-shrink flex-basis */
        min-width: initial;
    min-height: initial;
}

.flex-flex-start {
    display: flex;
    -webkit-justify-content: flex-start;
    /* Safari */
    justify-content: flex-start;
    align-content: flex-start;
}

._flex-space-between {
    display: flex;
    -webkit-justify-content: space-between;
    /* Safari */
    justify-content: space-between;
    align-content: space-between;
}

.sm-menu {
    width: 100%;
    margin: 0 auto 0 auto;
    padding-top: 0;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    z-index: 999;
    /*position: fixed;*/
    position: sticky;
    position: -webkit-sticky;
    top: 51px;
}

      /* ------------ social button -------------- */

.socialbtn {
    height: 30px;
    margin: 0;
    padding: 0;
}


.linebtn {
    float: left;
    padding-left: 15px;
}


.twitterbtn {
    float: left;
    margin-right: -25px;
}

.facebookbtn {
    float: left;
    padding-left: 40px;
    margin-top: -4px;
}


.cate.group_life {
    background: #f4bf2f url("/asset/img/group_life_sp.png") 7px 7px no-repeat !important;
}

.cate.group_life:before {
    border-left-color: #f4bf2f !important;
}

.cate.group_life:after {
    border-left: 11px solid #f4bf2f !important;
}

.cate.group_beauty {
    background: #9599bf url("/asset/img/group_beauty_sp.png") 7px 7px no-repeat !important;
}

.cate.group_beauty:before {
    border-left-color: #9599bf !important;
}

.cate.group_beauty:after {
    border-left: 11px solid #9599bf !important;
}

.cate.group_shopping {
    background: #24b8ae url("/asset/img/group_shopping_sp.png") 7px 7px no-repeat !important;
}

.cate.group_shopping:before {
    border-left-color: #24b8ae !important;
}

.cate.group_shopping:after {
    border-left: 11px solid #24b8ae !important;
}

.cate.group_gourmet {
    background: #f04365 url("/asset/img/group_gourmet_sp.png") 7px 7px no-repeat !important;
}

.cate.group_gourmet:before {
    border-left-color: #f04365 !important;
}

.cate.group_gourmet:after {
    border-left: 11px solid #f04365 !important;
}

.cate.group_play {
    background: #1892d0 url("/asset/img/group_play_sp.png") 7px 7px no-repeat !important;
}

.cate.group_play:before {
    border-left-color: #1892d0 !important;
}

.cate.group_play:after {
    border-left: 11px solid #1892d0 !important;
}

.cate.group_study {
    background: #b1d000 url("/asset/img/group_study_sp.png") 7px 7px no-repeat !important;
}

.cate.group_study:before {
    border-left-color: #b1d000 !important;
}

.cate.group_study:after {
    border-left: 11px solid #b1d000 !important;
}

.cate.group_living {
    background: #ff7a95 url("/asset/img/group_living_sp.png") 7px 7px no-repeat !important;
}

.cate.group_living:before {
    border-left-color: #ff7a95 !important;
}

.cate.group_living:after {
    border-left: 11px solid #ff7a95 !important;
}

.cate.group_medical {
    background: #98caf4 url("/asset/img/group_medical_sp.png") 7px 7px no-repeat !important;
}

.cate.group_medical:before {
    border-left-color: #98caf4 !important;
}

.cate.group_medical:after {
    border-left: 11px solid #98caf4 !important;
}

.cate.group_health {
    background: #42e0ff url("/asset/img/group_health.png") 7px 7px no-repeat !important;
}

.cate.group_health:before {
    border-left-color: #42e0ff !important;
}

.cate.group_health:after {
    border-left: 11px solid #42e0ff !important;
}

.cate.group_welfare {
    background: #b044a5 url("/asset/img/group_welfare_sp.png") 7px 7px no-repeat !important;
}

.cate.group_welfare:before {
    border-left-color: #b044a5 !important;
}

.cate.group_welfareb:after {
    border-left: 11px solid #b044a5 !important;
}

.cate.group_job {
    background: #ce7350 url("/asset/img/group_job_sp.png") 7px 7px no-repeat !important;
}

.cate.group_job:before {
    border-left-color: #ce7350 !important;
}

.cate.group_job:after {
    border-left: 11px solid #ce7350 !important;
}

.cate.group_public {
    background: #81ce36 url("/asset/img/group_public_sp.png") 7px 7px no-repeat !important;
}

.cate.group_public:before {
    border-left-color: #81ce36 !important;
}

.cate.group_public:after {
    border-left: 11px solid #81ce36 !important;
}

/* ------------ 業種一覧ページ -------------- */
.group, .group_ {
    /*background-color: #fba862;*/
    background-color: #256a9f;/* 青色に変更 2024/03/12 */
}

.group_life {
    background-color: #f4bf2f;
}

.group_beauty {
    background-color: #9599bf;
}

.group_shopping {
    background-color: #24b8ae;
}

.group_gourmet {
    background-color: #f04365;
}

.group_play {
    background-color: #1892d0;
}

.group_study {
    background-color: #b1d000;
}

.group_living {
    background-color: #ff7a95;
}

.group_medical {
    background-color: #98caf4;
}

.group_health {
    background-color: #42e0ff;
}

.group_welfare {
    background-color: #b044a5;
}

.group_job {
    background-color: #ce7350;
}

.group_public {
    background-color: #81ce36;
}


ul.____groupmenu li {
    padding: 5px;
        display: inline-block;
    width: 130px;
}
.group-life {
    font-size: 16px;
    line-height: 30px;
    height: 30px;
    font-weight: bold;
    color: #F3B100;
    background: url("../img/icon-kurashi.png") no-repeat scroll left center transparent;
    padding-left: 35px;
    margin: 0 0 0 5px;
}
.group-beauty {
    font-size: 16px;
    line-height: 30px;
    height: 30px;
    font-weight: bold;
    color: #7C82BD;
    background: url("../img/icon-biyou.png") no-repeat scroll left center transparent;
    padding-left: 35px;
    margin: 0 0 0 5px;
}
.group-public {
    font-size: 16px;
    line-height: 30px;
    height: 30px;
    font-weight: bold;
    color: #6CB524;
    background: url("../img/icon-koukyo.png") no-repeat scroll left center transparent;
    padding-left: 35px;
    margin: 0 0 0 5px;
}
.group-job {
    font-size: 16px;
    line-height: 30px;
    height: 30px;
    font-weight: bold;
    color: #B9603D;
    background: url("../img/icon-business.png") no-repeat scroll left center transparent;
    padding-left: 35px;
    margin: 0 0 0 5px;
}
.group-medical {
    font-size: 16px;
    line-height: 30px;
    height: 30px;
    font-weight: bold;
    color: #82BEF0;
    background: url("../img/icon-iryou.png") no-repeat scroll left center transparent;
    padding-left: 35px;
    margin: 0 0 0 5px;
}
.group-living {
    font-size: 16px;
    line-height: 30px;
    height: 30px;
    font-weight: bold;
    color: #FF7A95;
    background: url("../img/icon-sumai.png") no-repeat scroll left center transparent;
    padding-left: 35px;
    margin: 0 0 0 5px;
}
.group-study {
    font-size: 16px;
    line-height: 30px;
    height: 30px;
    font-weight: bold;
    color: #B1D000;
    background: url("../img/icon-manabu.png") no-repeat scroll left center transparent;
    padding-left: 35px;
    margin: 0 0 0 5px;
}
.group-play {
    font-size: 16px;
    line-height: 30px;
    height: 30px;
    font-weight: bold;
    color: #007CBB;
    background: url("../img/icon-asobu.png") no-repeat scroll left center transparent;
    padding-left: 35px;
    margin: 0 0 0 5px;
}
.group-gourmet {
    font-size: 16px;
    line-height: 30px;
    height: 30px;
    font-weight: bold;
    color: #EC254C;
    background: url("../img/icon-taberu.png") no-repeat scroll left center transparent;
    padding-left: 35px;
    margin: 0 0 0 5px;
}
.group-shopping {
    font-size: 16px;
    line-height: 30px;
    height: 30px;
    font-weight: bold;
    color: #00B0A4;
    background: url("../img/icon-kaimono.png") no-repeat scroll left center transparent;
    padding-left: 35px;
    margin: 0 0 0 5px;
}
.group-health {
    font-size: 16px;
    line-height: 30px;
    height: 30px;
    font-weight: bold;
    color: #00d5ff;
    background: url("../img/icon-kenko.png") no-repeat scroll left center transparent;
    padding-left: 35px;
    margin: 0 0 0 5px;
}
.group-welfare {
    font-size: 16px;
    line-height: 30px;
    height: 30px;
    font-weight: bold;
    color: #972c8c;
    background: url("../img/icon-fukushi.png") no-repeat scroll left center transparent;
    padding-left: 35px;
    margin: 0 0 0 5px;
}

/* ------------ カテゴリページ（sp_category） -------------- */

.cate-head {
    margin: 0;
    font-size: 16px;
    text-align: center;
    color: #fff;
    padding: 9px 10px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.dummyad_auto_300 {
    background-color: #eee;
    width: 100%;
    height: 300px;
    text-align: center;
    margin: 0 auto;
}

.pagenation .page_current,
.pagenation a {
    width: 49%;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 3px;
    display: inline-block;
    padding: 8px 10px;
    text-align: center;
    font-weight: bold;
}

.pagenation a.page_next,
.pagenation a.page_prev {
    border: 1px solid #003264;
    background-color: #003264;
    background-image: linear-gradient(to bottom, #00458b, #003264);
    color: #fff !important;
}

/* ------------ 特派員の業種へのコメント -------------- */
.business_rss{
  margin: 0 auto 20px;
  background: #fff;
  font-weight: normal;
  padding-bottom: 10px;
}
@media (max-width: 768px) {
    .business_rss {
        max-width: 720px;
    }
}
.business_rss ul {
    list-style-type: none;
    line-height: 1.7;
    padding-left: 3px;
    padding-top: 5px;
    margin-top: 0;
    background: #FFF;
    margin-bottom: 5px;
}
.business_rss p {
    margin: -20px 5px 0 5px;
}
.business_rss h3 {
    overflow: hidden;
    margin: 20px 0 0 0;
    padding: 5px;
    line-height: 1.3em;
    color: #fff;
}

#navitopibox {
    display: block;
    border: 1px solid #d2b48c;
    border-radius: 8px;
    margin: 10px;
    padding: 18px;
    background: #fff;
    font-size: 15px;
}

#navitopibox h2 {
    border: 0px solid #000;
    border-radius: 6px;
    margin: 0px 10px 15px 10px;
    background: #708090;
    padding: 3px;
    text-align: center;
    font-size: 20px;
    color: #fff;
}

#navitopibox h3 {
    border: 0px solid #000;
    margin: 0px 10px 15px 10px;
    color: #000;
}

#navitopibox ul {
    margin: 5px 5px 20px 20px;
    display: inline-block;
    padding: 7px;
    border: 1px solid #d3d3d3;
    border-radius: 6px;
}

#navitopibox p {
    margin: 10px 10px;
}
  
/* ----------- なびとぴ ----------- */

article.detail h1 {
    margin-top: 0;
    font-size: 30px;
    font-weight: normal;
}

.cover_topic_detail {
    object-fit: cover;
    width: 100%;
    height: auto;
    max-height: 400px;
    background-color: #ccc;
}

@media (max-width: 768px) {
    .cover_topic_detail {
        object-fit: cover;
        width: 100%;
        height: auto;
        max-height: 200px;
        background-color: #ccc;
    }
}

.cover_category_pc {
    /* 写真トリミング */
    object-fit: cover;
    width: 100px;
    height: 100px;
    background-color: #ccc;
}

.cover_topic_pc {
    /* 写真トリミング */
    object-fit: cover;
    width: 70px;
    height: 70px;
    background-color: #ccc;
    margin-right: 10px;
}

.topic-list {
    background: #fff;
    padding: 10px;
    box-shadow: rgba(0, 0, 0, 0.3) 0 1px 1px;
}

h3.topic-list-head {
    color: #fff;
    font-weight: bold;
    font-size: 1.0rem;
    line-height: 2.0em;
    overflow: hidden;
    margin: 0;
    text-align: center;
    background-color: #00BCD4;
}

.topic-list ul {
    display: flex;
    flex-wrap: wrap;
    /* 折り返す指定 */
    width: 100%;
    margin: 0;
    padding: 0;
    list-style: none outside none;
}

.topic-list ul>li {
    /*width: 50%; HTML側で対応style="width: 50%;" */
    list-style: none;
    border: 1px solid white;
    box-sizing: border-box;
    margin-bottom: 10px;
}

.mousehover{
    cursor: pointer;
}

.mousehover:hover {
    background-color: #f4f9fc !important;
}

.sponsoredlink {
    font-size: 0.8rem;
    color: #888 !important;
    background: #def1fb;
    text-align: center;
    padding: 3px !important;
}

.kensuu {
    font-size: 0.8rem;
    color: #fff;
    background: #888;
    text-align: center;
    padding: 3px;
}

/* ------------ 一覧のパネル -------------- */
#filter-panel,
#filter-panel-all,
#filter-panel-bn,
#filter-panel-group {
    background: #FFF;
}

.tojiru {
    text-align: center;
    background: #666;
    color: #fff;
    font-size: 12px;
    line-height: 3em;
}

dl.categbox {
    padding-top: 0;
}
dl.categbox dt {
    padding: 10px;
    font-weight: bold;
    color: #003264!important;
    text-shadow: 0 1px 0 rgba(255,255,255,0.8);
    background-color: #d0e3ef;
    background-image: linear-gradient(#d8ebf8,#d0e3ef);
}
dl.categbox dd {
    margin: 0;
    border-bottom: 1px solid #e0e0e0;
    padding: 10px;
    position: relative;
    color: #9e9e9e;
    display: block;
    font-weight: bold;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
dl.categbox dd a {
    display: block;
}
dl.categbox dd a:before {
    font-family: FontAwesome;
    content: "\f054";
    float: right;
    padding-right: 5px;
}
@media (min-width: 768px) {
     /* .pc */
    dl.categbox {
        padding-top: 5px;
    }
    dl.categbox dt {
        border-radius: 6px;
        margin: 10px;
        padding: 3px 10px;
        font-weight: normal;
    }
    dl.categbox dd {
        display: inline-block;
        _font-size: .9rem;
        margin: 3px 5px 4px 13px;
        border: 0;
        padding: 0;
        font-weight: normal;
}
    }
    dl.categbox dd a:before {
        font-family: FontAwesome;
        content: initial;
        float: right;
        padding-right: 5px;
    }
}




dl.top_categbox dt {
    background: url(/asset/img/orange_icon.png) 7px 7px / 10px 10px no-repeat #fdf5e6;
    border: 1px solid #eee8aa;
    border-radius: 6px;
    color: #8f2e14;
    font-size: 14px;
    font-weight: normal;
    margin: 10px 5px 5px 5px;
    padding: 3px 2px 2px 20px;
}

dl.top_categbox dd {
    margin: 0;
    border-bottom: 1px solid #e0e0e0;
    padding: 10px;
    position: relative;
    color: #9e9e9e;
    font-size: .9rem;
    display: block;
    font-weight: bold;
    line-height: 30px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.pc dl.top_categbox dd {
    border-bottom: 1px solid #e0e0e0;
    padding: 0;
    position: relative;
    color: #9e9e9e;
    font-size: .9rem;
    display: inline-block; /* .pc */
    font-weight: normal;
    line-height: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    margin: 5px 10px;
    border: 0;
}

dl.top_categbox dd a {
    display: block;
    font-weight: bold;
    font-size: 0.9rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.pc dl.top_categbox dd a {
    display: block;
    font-weight: normal;
}

dl.top_categbox dd a:before {
    font-family: FontAwesome;
    content: "\f054";
    float: right;
    padding-right: 5px;
}
.pc dl.top_categbox dd a:before {
    font-family: FontAwesome;
    content: initial;
    float: right;
    padding-right: 5px;
}

/* ------------ グループ一覧 -------------- */


/* ------------ 関連業種リスト -------------- */

.type-list h3 {
    font-size: 80%;
    line-height: 30px;
    margin: 0 0 0 8px;
    padding: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.type-list ul li a {
    display: block;
    font-weight: bold;
    font-size: 90%;
    font-size: 1.1rem;
    white-space: nowrap;

    overflow: hidden;
    text-overflow: ellipsis;
}


.type-list ul li a:before {
    font-family: FontAwesome;
    content: "\f054";
    /* icon-chevron-right */
    float: right;
    padding-right: 5px;
}

.type-list ul {
    margin: 0;
    padding: 0;
    list-style: none outside none;
}

.type-list ul li {
    border-bottom: 1px solid rgb(224, 224, 224);
    /*padding: 10px 0;*/
    padding: 10px;
    position: relative;
    color: #9E9E9E;
    font-size: 0.9rem;
    display: block;
    font-weight: bold;
    line-height: 30px;
    /*margin: 0 0 0 8px;*/
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.type-list ul li.ui-li-divider {
    margin-top: 0px !important;
}

/*ドロワーメニュー（市区郡絞り込み）*/
.type-list ul li a.button:before {
    display: none;
}

.displaynone {
    display: none;
}

#toggle_sebtn {
    display: none;
}

/* ----------- トップ用 ------------- */

.shop-cateicon {
    width: 40px;
    overflow: hidden;
    margin: 0 5px;
}

.recommendimg {
    max-width: 100px;
    max-height: 100px;
}

.navigatelink {
    position: relative;
    padding: 10px;
}

/* same as .shop-list ul li a:before */
.navigatelink a:before {
    font-family: FontAwesome;
    content: "\f054";
    position: absolute;
    top: 30%;
    right: 15px;
}

.navigatelink h3 {
    color: #222;
    font-size: 1.2rem;
    margin: 0;
    padding: 0 25px 0 0;
}

.navigatelink p {
    color: #222;
    padding: 0 25px 0 0;
    margin: 0;
}

ul.cuslist {
    list-style-type: none;
    margin-top: 0;
    background: #FFF;
    padding: 0 5px;
}

ul.cuslist li {
    line-height: 2.3rem;
    border-bottom: 1px dashed #d0e3ef;
    padding: 0 5px;
}

ul.cuslist li a {
    display: block;
}

/* ---------------- トップページ：なびボイス ----------------- */

ul.recommend-list {
    margin: 0;
    padding: 0;
    list-style: none outside none;
}

ul.recommend-list li {
    padding: 10px;
    border-bottom: 1px solid rgb(224, 224, 224);
}

.recommend-list p {
    color: #222;
    margin-bottom: 0.5rem;
}

.claim {
    background: #fff;
    padding: 10px;
}

ul.claim-list {
    list-style-type: none;
    font-size: 14px;
    padding-left: 3px;
    margin-top: 0;
    background: #FFF;
    padding-top: 5px;
}

ul.claim-list li {
    border-bottom: 1px dashed #d0e3ef;
    padding: 10px 5px;
    line-height: 1.5em;
}



/* ------------ left column recruiting -------------- */

.recruitinglist {
    background-color: #FFF;
    margin-bottom: 20px;
    padding: 0px;
}

.recruitinglist p {
    color: #222;
    margin-bottom: 0.5rem;
}

.recruitinglist ul {
    margin-top: 5px;
}

.recruitinglist li {
    list-style: none;
    line-height: 1.3;
    border-bottom: 1px solid rgb(224, 224, 224);
    padding-bottom: 5px;
    margin: 0 10px 10px -25px;
}

.postit {
    margin: 0 0 5px 0;
    color: #bd550a !important;
    background: #ffc;
    padding: 5px;
    border-radius: 3px;
}

.topaccrank-list {
    border-bottom: 1px solid #e0e0e0;
    padding: 10px 8px 0 10px;
    position: relative;
}

.ranksquare {
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    margin: 0 5px 0 0;
    padding: 5px 0;
    display: inline-block;
    width: 30px;
    height: 30px;
    text-align: center;
    background: #8bc34a;
}

.nomoremsg {
    display: none;
}


/*カスタムページ*/
      h2.custom_header {
        padding: 5px 10px;
        background: #999;
        color: #fff;
        font-size: 1rem;
        font-weight: normal;
        margin-bottom: 0;
      }

      .custom_card {
        line-height: 1.7em;
        margin-bottom: 20px;
        color: #666;
        background: #fff;
        padding: 10px;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.055);
      }

      .insta-center iframe {
        margin: 0 auto !important;
      }

      .custom_group_link {
        margin: 15px 5px;
        padding: 10px 10px;
        text-align: center;
        border: 1px solid #b0e0e6;
        background: #f0fff0;
        border-radius: 6px;
        font-size: 1.2rem;
      }

      .custom_group_all_link {
        border: 1px solid #f5b1aa;
        border-radius: 4px;
        margin: 5px 0px;
        padding: 5px 10px;
        background: #fef4f4;
      }

      .custom_each_all_link {
        border: 1px solid #f0e68c;
        border-radius: 4px;
        margin: 5px 0px;
        padding: 5px 10px;
        background: #fafad2;
      }

      .custom_each {
        margin: 15px 5px;
        padding: 10px 10px;
        text-align: center;
        border: 1px solid #f6bfbc;
        background: #fdeff2;
        border-radius: 6px;
        font-size: 1.2rem;
      }

/* ------------ ここが好き、お問合せ -------------- */
      .recommendimg {
          max-width: 100px;
          max-height: 100px;
      }
        #recommend_area {
          display: none;
        }

.recommend_del_link {
  display: none;
  text-align: right;
}

.recommend_del_link > .ui-input-text {
  width: 70px;
  display: inline-block;
  border: 1px solid #CCCCCC;
}

.recommend_del_each .ui-btn {
  padding: 0 0.7em;
  margin: 0;
  width: 71px;
}

#recommend_passwd_disp {
  font-size: 14px;
  font-weight: bold;
  color: #FF0000;
  text-align: center;
  margin: 0 auto;
}

.recommend_howtocancel {
  margin-top: 20px;
  font-size: 95%;
  padding-left: 20px;
}

.recommend_howtocancel li {
  padding: 5px;
}

.recommend_catch {
  font-weight: bold;
  color: #6379a2;
}

#form_recommend {
    border: solid 1px #ffc3e2;
    background-color: #fdebeb;
    color: #666;
    font-size: 14px;
    margin: 10px 0 0 0;
    padding: 10px;
}
#recommend_cancel{
  display: none;
}


.sm-map {
    margin: 0 auto;
    border: 1px solid #CCC;
    border-radius: 4px;
    width: 100%;
    _max-width: 600px;
}

/* ----------- 求人情報の黄色いノート ----------- */


/* CSS3 Lined Paper (http://www.techrepublic.com/blog/web-designer/how-to-get-the-ruled-paper-background-effect-with-css3/)*/

.yellownote {
    margin: 0 auto;
    padding: 15px 27px 4px 42px;
    position: relative;
    color: #444;
    line-height: 20px;
    border: 1px solid #d2d2d2;
    background: #ffffcc;
    background: -webkit-gradient(linear, 0 0, 0 100%, from(#d9eaf3), color-stop(4%, #ffffcc)) 0 4px;
    background: -webkit-linear-gradient(top, #d9eaf3 0%, #ffffcc 8%) 0 4px;
    background: -moz-linear-gradient(top, #d9eaf3 0%, #ffffcc 8%) 0 4px;
    background: -ms-linear-gradient(top, #d9eaf3 0%, #ffffcc 8%) 0 4px;
    background: -o-linear-gradient(top, #d9eaf3 0%, #ffffcc 8%) 0 4px;
    background: linear-gradient(top, #d9eaf3 0%, #ffffcc 8%) 0 4px;
    -webkit-background-size: 100% 20px;
    -moz-background-size: 100% 20px;
    -ms-background-size: 100% 20px;
    -o-background-size: 100% 20px;
    background-size: 100% 20px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    -webkit-box-shadow: 0 12px 10px -13px rgba(0, 0, 0, .3);
    -moz-box-shadow: 0 12px 10px -13px rgba(0, 0, 0, .3);
    box-shadow: 0 12px 10px -13px rgba(0, 0, 0, .3);
    _width: 90%;
}

.yellownote::before {
    content: '';
    position: absolute;
    width: 4px;
    top: 0;
    left: 30px;
    bottom: 0;
    border: 1px solid;
    border-color: transparent #efe4e4;
}

.yellownote p {
    line-height: 40px;
    margin-bottom: 10px;
    font-size: 18px;
}

/* ----------- indeed求人 ----------- */

.indeedtitle {
    margin: 20px 0 0 0;
    background: #fff;
    padding: 5px;
    border: 1px solid #c1cfec;
}
  ul.cuslist {
      list-style-type: none;
      margin-top: 0;
      background: #FFF;
      padding: 0 5px;
  }
  ul.cuslist li {
      line-height: 2.3rem;
      border-bottom: 1px dashed #d0e3ef;
      padding: 0 5px;
  }
  ul.cuslist li a {
      display: block;
  }

/* ----------- ページの先頭へ ----------- */

.pagetop {
    display: none;
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    right: unset;
    bottom: 58px;
}

.pagetop a {
    display: block;
    background-color: #ccc;
    color: #222;
    -moz-opacity: 0.7;
    opacity: .7;
    cursor: pointer;
    width: 55px;
    height: 55px;
    line-height: 55px! important;
    text-align: center;
    padding: 0;
    border-radius: 50%;
    font-size: 12px;
}
.pagetop a:hover {
    display: block;
    background-color: #b2d1fb;
    color: #fff;
    padding: 0;
    -moz-opacity: 0.7;
    opacity: .7;
    text-decoration: none;
}

/* ----------- フッターフロートメニュー ----------- */

ul.floatmenu {
  margin: 0;
  padding: 0;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  /*border-top: 1px solid #dcdcdc;*/
  /*background: #fff;*/
  background: #147ac1;
}

ul.floatmenu li {
  float: left;
  margin-left: 0;
  margin-right: 0;
  padding: 0;
  list-style: none;
}

ul.floatmenu li:first-child a {
  border-left-width: 0;
  border-right-width: 0;
}

ul.floatmenu li a {
  cursor: pointer;
  display: block;
  text-decoration: none;
  padding: 10px 0 5px 0;
  font-size: 14px;
  text-align: center;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  color: #fff;
}

ul.floatmenu li a.active {
  background-color: #0b619c;
}
/* ----------- ツールチップ ----------- */

#vtip {
    display: none;
    position: absolute;
    padding: 5px;
    left: 5px;
    font-size: 0.8em;
    background-color: #c6c5c1;
    color: #fff;
    opacity: 0.9;
    filter: progid: DXImageTransform.Microsoft.Alpha(Enabled=1, Style=0, Opacity=90);
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    z-index: 999;
}

/* ----------- ツールチップ ----------- */

h3.train {
    font-size: 2rem !important;
    margin: 1px auto;
    text-align: center;
    padding: 8px 5px 10px 5px;
    border-bottom: dashed 5px #000;
    box-shadow: 0 1px #000, 0px -1px #000 inset;
    background: url(/asset/img/train_60x20.gif) no-repeat 18px 55px/70px 15px;
}
h4.train {
    margin: 8px 3px 3px 3px;
    text-align: center;
    font-weight: normal;
}

/* ----------- なびゲート（navigate） ------------- */

.aiu_navi {
    /*width: 553px;*/
    background: #fff;
    box-shadow: rgba(0,0,0,0.3) 0 1px 2px;
}

  .aiu_navi dl {
    margin: 10px 5px;
    padding: 10px 5px;
    border-radius:8px;
    text-align:center;
  }
  .aiu_navi dt {
    border-radius: 4px;
    margin: 0 auto;
    padding: 2px 8px;
    text-align: center;
    font-size: 20px;
    font-weight: normal;
    background: #cd853f;
    color: #fff;
  }
  .aiu_navi dd {
    display:inline-block;
    margin:10px 0px;
    padding:6px 5px;
  }
img.fluid {
    max-width: 100%;
    height: auto;
    display: block;
}

.navigation_afs {
    text-align:center;
    padding:12px;
}

.navigate {
    /*width: 553px;*/
    background: #fff;
    box-shadow: rgba(0, 0, 0, 0.3) 0 1px 2px;
}

.navigate dl {
    margin: 10px 5px;
    padding: 10px 5px;
    border: 0px solid #d3d3d3;
    border-radius: 8px;
}

.navigate dt.l0 {
    border: 0px solid #999;
    border-radius: 4px;
    margin: 0px auto;
    padding: 2px 8px;
    text-align: center;
    font-size: 20px;
    font-weight: normal;
    background: #5b6f95;
    color: #fff;
}

.navigate dt.l2 {
    border: 0px solid #999;
    border-radius: 4px;
    margin: 12px 0 0 0;
    padding: 2px 8px;
    text-align: center;
    font-size: 16px;
    font-weight: normal;
    background: #993333;
    color: #fff;
}

.navigate dd {
    display: list-item;
    list-style: disc;
    list-style: none;
    margin: 5px 30px;
    margin: 0;
    padding: 3px;
    line-height: 2.5em;
    font-size: 16px;
    border-bottom: solid 1px #d3d3d3;
    color: #2f4f4f;
    font-weight: bold;
}

.navigate dd a {
    display:block;
    width:100%;
}

.sptopexplain {
    width: 86%;
    border: 2px solid #aa89bd;
    border-radius: 10px;
    margin: 0 auto;
    padding: 3px 3px;
    color: #434c44;
    background: #fffbff;
}

.sptopexplain p {
    font-size: 15px;
    padding: 5px 15px 3px 15px;
    line-height: 23px;
    color: #483d8b;
}

.sptopexplain .source {
    font-size: 12px;
    padding: 5px 15px 3px 15px;
    line-height: 23px;
    color: #483d8b;
}
.citytopbox {
    border-radius: 8px;
    padding: 5px;
    background: #13649e;
    color: #fff;
    font-size: 25px;
    margin: 0 0 10px 0;
    text-align: center;
}
      .navigatetitle {
          border: 0 solid #999;
          border-radius: 4px;
          margin: 0 auto;
          padding: 2px 8px;
          text-align: center;
          font-size: 20px;
          font-weight: normal;
          background: #5b6f95;
          color: #fff;
      }
      .navigate ul {
          margin: 10px 5px;
          padding: 10px 5px;
          list-style: none outside none;
      }
      .navigate ul li {
          padding: 12px 0;
          font-weight: bold;
          border-bottom: solid 1px #d3d3d3;
      }

.custom_group {
  margin: 15px 5px;
  padding: 10px 10px;
  text-align: center;
  border: 1px solid #d4dcd6;
  background: #e6eae3;
  border-radius: 6px;
  font-size: 20px;
}

.custom_group_menu {
  margin: 15px 5px;
  padding: 10px 10px;
  text-align: center;
  border: 1px solid #d4dcd6;
  background: #e6eae3;
  border-radius: 6px;
  font-size: 20px;
}

.custom_group_sns {
  margin: 15px 5px;
  padding: 10px 10px;
  text-align: center;
  border: 1px solid #eee8aa;
  background: #f5f5dc;
  border-radius: 6px;
  font-size: 20px;
}

.custom_group_tempo {
  margin: 15px 5px;
  padding: 10px 10px;
  text-align: center;
  border: 1px solid #dcdcdc;
  background: #fffafa;
  border-radius: 6px;
  font-size: 20px;
}

.custom_group_misc {
  margin: 15px 5px;
  padding: 10px 10px;
  text-align: center;
  border: 1px solid #add8e6;
  background: #f0f8ff;
  border-radius: 6px;
  font-size: 20px;
}

.custom_group_link {
  margin: 15px 5px;
  padding: 10px 10px;
  text-align: center;
  border: 1px solid #b0e0e6;
  background: #f0fff0;
  border-radius: 6px;
  font-size: 20px;
}



.custom_each_others {
  margin: 15px 5px;
  padding: 10px 10px;
  text-align: center;
  border: 1px solid #e9e4d4;
  background: #f8f4e6;
  border-radius: 6px;
  font-size: 20px;
}

.custom_each_pics {
  margin: 15px 5px;
  padding: 10px 10px;
  text-align: center;
  border: 1px solid #e9e4d4;
  background: #f8f4e6;
  border-radius: 6px;
  font-size: 20px;
}

.custom_each_sns {
  margin: 15px 5px;
  padding: 10px 10px;
  text-align: center;
  border: 1px solid #b0e0e6;
  background: #f0fff0;
  border-radius: 6px;
  font-size: 20px;
}

.custom_each_expn {
  border: 1px solid #897858;
  border-radius: 4px;
  margin: 10px 0px;
  padding: 10px;
  color: #393e4f;
}

.custom_box {
  background-color: #FFF;
  width: 720px;
  font-size: 85%;
  padding-bottom: 20px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.055);
}

.custom_box_head {
  font-size: 16px;
  color: #fff;
  background: #999;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  border-radius: 8px 8px 0 0;
  line-height: 40px;
  margin: 0;
}

.shop-list .arrow {
    position: absolute;
    right: 0;
    top: 0;
    padding: 48px 5px 48px 15px;
}

.imagespace {
    opacity: initial;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-image: none !important;
    transform: scale(0.85);/*全体的な幅を維持しながら丸を50px程度に縮小*/
}

.imagespace.group_life {
    background: #f3b100 url("../img/group_life.png") 50% 50% no-repeat;
}

.imagespace.group_beauty {
    background: #7c82bd url("../img/group_beauty.png") 50% 50% no-repeat;
}

.imagespace.group_shopping {
    background: #00b0a4 url("../img/group_shopping.png") 50% 50% no-repeat;
}

.imagespace.group_gourmet {
    background: #ec254c url("../img/group_gourmet.png") 50% 50% no-repeat;
}

.imagespace.group_play {
    background: #007cbb url("../img/group_play.png") 50% 50% no-repeat;
}

.imagespace.group_study {
    background: #b1d000 url("../img/group_study.png") 50% 50% no-repeat;
}

.imagespace.group_living {
    background: #ff7a95 url("../img/group_living.png") 50% 50% no-repeat;
}

.imagespace.group_medical {
    background: #82bef0 url("../img/group_medical.png") 50% 50% no-repeat;
}

.imagespace.group_health {
    background: #3bcdea url("../img/group_health.png") 50% 50% no-repeat;
}

.imagespace.group_welfare {
    background: #972c8c url("../img/group_welfare.png") 50% 50% no-repeat;
}

.imagespace.group_job {
    background: #b9603d url("../img/group_job.png") 50% 50% no-repeat;
}

.imagespace.group_public {
    background: #6cb524 url("../img/group_public.png") 50% 50% no-repeat;
}

.scorerank {
    bottom: 14px;
    left: 10px;
    font-size: 15px;
    color: #fff !important;
    font-weight: bold;
    background: #d87f7f;
    width: 100px;
    text-align: center;
    line-height: 2em;
    opacity: 0.8;
}

.scorevote1 {
    bottom: 14px;
    left: 10px;
    font-size: 15px;
    color: #fff !important;
    font-weight: bold;
    background: #ffb600;
    width: 100px;
    text-align: center;
    line-height: 2em;
    opacity: 0.8;
}

.scorevote2 {
    bottom: 14px;
    left: 10px;
    font-size: 15px;
    color: #fff !important;
    font-weight: bold;
    background: #59ab21;
    width: 100px;
    text-align: center;
    line-height: 2em;
    opacity: 0.8;
}

/* ----------- 全国ランキング ------------- */
.flexbox_spacebetween {
	display: flex;
	justify-content: space-between;
}
.flexbox_spacebetween .name {
	display: inline-block;
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
	width: 100%;
	padding-right: 40px;
	font-weight: bold;
	color: #003264;
	margin-bottom: 10px;
	font-size: 1.1em;
}
.flexbox_spacebetween .num{
	position: absolute;
	right: 7px;
}
.sitename {
	position: absolute;
	bottom: 0;
	left: 46px;
	font-size: 12px;
	color: #ff9800;
}
.topaccrank-list {
	border-bottom: 1px solid #e0e0e0;
	padding: 10px 8px 0 10px;
	position: relative;
}
.loading {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background-image: url(/ass/asset/img/icon-loading.gif);
	background-repeat: no-repeat;
	background-attachment: fixed;
	background-position: center center;
}

/* ----------- シェアボタン ------------- */
.btn-share {
    position: fixed;
    right: 10px;
    bottom: 75px;
    z-index: 1030;
    background: #e4f6ff;
    box-shadow: 0 3px 15px rgba(0,0,0,0.2);
}
.btn-circle {
    width: 55px;
    height: 55px;
    line-height: 55px;
    text-align: center;
    padding: 0;
    border-radius: 50%;
}
.btn-share img {
    position: absolute;
    right: 12px;
    top: 5px;
}
.text-share {
    color: #6699ff;
    font-weight: bold;
    font-size: 11px;
    position: absolute;
    left: 12px;
    top: 17px;
}

/* ----------- 横スクロールボタン ------------- */
.scrolling {
  overflow-x: auto;
}
.scrolling ul {
  display: flex;
  width: max-content;
  margin: 0 auto;
  padding: 0;
}
.scrolling ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  display: inline-block;
  text-decoration: none;
}

/* ----------- 便利リンクボタン ------------- */
ul.benribtns {
  list-style-type: none;
  padding: 5px;
  margin: 0;
  display: flex; /* Flexコンテナとして設定 */
  flex-wrap: wrap; /* 画面の端に到達したら改行する */
  width: auto;
  justify-content: center;
}
.benribtn {
  border-radius: 5px;
  background-color: #ddf8eb;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #66c798;
  font-size: 16px;
  font-weight: bold;
  border: 2px solid #66c798;
  letter-spacing: -0.05em;
  width: 18%;
  width: 14%;
  margin: 1%;
}
.benribtn a {
  height: 100%;
  width: 100%;
  text-align: center;
  padding: 4px 0;
  color: inherit;
}
@media only screen and (min-width: 768px) {/*PC*/
  .benribtn {
    width: 109px;
    margin: 5px;
    letter-spacing: normal;
  }
}
.grp-icon {
    width: 100px;
    overflow: hidden;
    margin: 0 5px;
    font-size: 2em;
}

  /* ------------ 便利カテゴリ -------------- */

  .star {
    color: #d2691e;
  }

  /* より詳しく→ の黄色い枠 */
  .yellowlink, .categbox ul li.yellowlink {
    background: #fef6e5 !important;
    border: 1px solid #ead099;
    color: #ead099;
    padding: 0;
    border-radius: 5px;
  }

  .redwaku {
    font-size: 15px;
    line-height: 1.7em;
    letter-spacing: 2px;
    margin: 10px;
    padding: 5px 10px;
    border: 2px solid #e26d63;
    border-radius: 5px;
  }

  /* 上部タイトル */
  .menu h2 {
    color: #fff;
    background: #256a9f;
    font-size: 20px;
    margin: 0;
    text-align: center;
    padding: 9px 10px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
  }

  /* 目次BOX：背景 */
  .mokujibox {
    padding: 10px;
    border-radius: 5px;
    background: #cbdcea;
  }

  /* 目次BOX：目次 */
  .mokujibox p {
    margin: 4px;
    padding: 4px;
    border-radius: 5px;
    text-align: center;
    color: #fff;
    background: #256a9f;
    font-size: 17px;
  }

  /* 目次BOX：タイトル */
  .mokujibox h3 {
    margin: 4px;
    padding: 4px;
    border-radius: 5px;
    text-align: center;
    color: #fff;
    background: #3480ba;
    font-size: 17px;
  }

  .mokujibox ul {
    column-count: 1;
    margin: 10px 4px;
    padding: 0;
  }

  .mokujibox ul li {
    width: 100%;
    display: inline-block;
    margin: 0px 0px 5px 0px;
    background: #fff;
    list-style-type: none !important;
    padding: 2px 8px;
    border-radius: 5px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  /* PC */
  @media only screen and (min-width: 768px) {
    .mokujibox ul li {
      margin: 0 5px 5px 5px;
      float: left;
      width: calc(50% - 10px);
    }
  }

  .mokujibox ul li a {
    display: block;
    color: #4F4F4F;
    padding: 5px;
    font-size: 18px;
  }

  /* 目次BOXの内側に.grayのdivで囲うとグレー系になる */
  .mokujibox .gray {
    margin-top: 2em;
  }

  .mokujibox .gray ul li {
    background: #eee !important;
  }

  .mokujibox .gray h3 {
    background: #d0d3d4 !important;
    border: 1px solid #b2b5b6 !important;
  }

  /* カテBOX */
  .categbox {
    padding: 5px;
  }

  /* カテBOX：タイトル */
  .categbox h3 {
    margin: 10px 3px 3px 3px;
    padding: 3px;
    background: #5a819e;
    color: #fff;
    border-radius: 5px;
    text-align: center;
    font-size: 17px;
  }

  /* カテBOX：サブタイトル */
  .categbox h4 {
    margin: 5px;
    padding: 2px;
    background: #90b4ce;
    color: #fff;
    border-radius: 5px;
    text-align: center;
    font-size: 15px;
  }

  /* カテBOX：サブサブタイトル */
  .categbox h5 {
    margin: 5px;
    padding: 2px;
    background: #cee2f0;
    color: #256a9f;
    border-radius: 5px;
    text-align: left;
    padding-left: 10px;
    font-size: 15px;
  }

  .categbox ul {
    margin: 3px;
    padding: 0;
  }

  .categbox ul li {
    margin: 10px 10px;
    background: url(/asset/img/orangeball.png) no-repeat 10px 50%;
    background-color: #e9f5ff;
    background-size: 13px;
    padding: 5px 20px;
    border-radius: 5px;
    list-style-type: none !important;
  }

  /* PC */
  @media only screen and (min-width: 768px) {
    .categbox ul li {
      display: inline-block;
      margin: 5px;
      background: url(/asset/img/orangeball.png) no-repeat 0px 50%;
      background-color: #fff !important;
      background-size: 13px;
      padding: 0 0 0 10px;
    }
  }

  .categbox ul li a {
    display: block;
    padding: 5px 10px;
    color: #435069;
    font-size: 18px;
  }

  /* カテBOXの内側に.grayのdivで囲うとグレー系になる */
  .categbox .gray p {
    margin: 4px;
    padding: 4px;
    border-radius: 5px;
    text-align: center;
    color: #fff;
    background: #787878;
    font-size: 17px;
  }

  .categbox .gray ul li {
    background-color: #dadada !important;
  }

  @media only screen and (min-width: 768px) {
    .categbox .gray ul li {
      background-color: #fff !important;
    }
  }

  .categbox .gray h3 {
    background: #b6b6b6 !important;
    border: 1px solid #b2b5b6 !important;
  }

/* ----------- トップに掲載の47都道府県ボタン ------------- */
         #navitableblock {
            border: 0px solid #d2b48c;
            padding: 4px;
            background: #fff;
            border-radius: 10px;
            margin: 10px 0 30px 0;
            font-weight:normal;
          }
          .navisptable {
            width: 100%;
            text-align: center;
          }
          .navisptable tr td a {
            color: #0645ad;
            margin:3px 3px;
            padding:5px 2px;
            font-size:15px;
          }
          .bigcitybutton {
            position: relative;
            display: inline-block;
            width: 98%;
            margin:10px 5px;
            padding:7px 5px;
            text-decoration: none;
            background-image: linear-gradient(to right, #ff8177 0%, #ff867a 0%, #ff8c7f 31%, #f99185 42%, #cf556c 78%, #b12a5b 100%);
            border-radius: 5px;
            border: 1px solid #a52a2a;
          }
          .bigcity {
            font-size:22px;
            text-shadow: 3px 3px #999;
            color: #fff;
          }
          .hokkaiokinawabutton {
            position: relative;
            display: inline-block;
            width: 98%;
            margin: 3px;
            padding: 10px 4px;
            text-decoration: none;
            color: #fff;
            background: #e0ffff;
            border-radius: 5px;
            border: 1px solid #89BCD6;
          }
          .aomoributton {
            position: relative;
            display: inline-block;
            width: 98%;
            margin: 3px;
            padding: 4px 5px;
            text-decoration: none;
            color: #333;
            background: #fff8dc;
            border-radius: 5px;
            border: 1px solid #d3d3d3;
          }
          .tohokubutton {
            position: relative;
            display: inline-block;
            width: 94%;
            margin: 3px;
            padding: 4px 5px;
            text-decoration: none;
            color: #333;
            background: #fff8dc;
            border-radius: 5px;
            border: 1px solid #d3d3d3;
          }
          .kantobutton {
            position: relative;
            display: inline-block;
            width: 94%;
            margin: 3px;
            padding: 4px 5px;
            text-decoration: none;
            background: #fce4d6;
            border-radius: 5px;
            border: 1px solid #ffb6c1;
          }
          .chububutton {
            position: relative;
            display: inline-block;
            width: 94%;
            margin: 3px;
            padding: 4px 5px;
            text-decoration: none;
            color: #333;
            background: #f0fff0;
            border-radius: 5px;
            border: 1px solid #f0e68c;
          }
          .kinkibutton {
            position: relative;
            display: inline-block;
            width: 94%;
            margin: 3px;
            padding: 4px 5px;
            text-decoration: none;
            color: #333;
            background: #fff0f5;
            border-radius: 5px;
            border: 1px solid #d8bfd8;
          }
          .chugokubutton {
            position: relative;
            display: inline-block;
            width: 98%;
            margin: 3px;
            padding: 4px 5px;
            text-decoration: none;
            background: #dfe8cf;
            border-radius: 5px;
          }
          .shikokubutton {
            position: relative;
            display: inline-block;
            width: 94%;
            margin: 3px;
            padding: 4px 5px;
            text-decoration: none;
            color: #333;
            background: #ffe4e1;
            border-radius: 5px;
          }
          .kyushubutton {
            position: relative;
            display: inline-block;
            width: 94%;
            margin: 3px;
            padding: 4px 5px;
            text-decoration: none;
            color: #333;
            background: #ffdab9;
            border-radius: 5px;
            border: 1px solid #deb887;
          }
/* ------------------------------------------- */
/* ここまで
/* ------------------------------------------- */