@charset "UTF-8";

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
}

/* 大枠 */
html,
body {
    height: 100%;
    -webkit-font-smoothing: antialiased;
    -webkit-text-size-adjust: none;
    -webkit-overflow-scrolling: touch !important;
    -moz-osx-font-smoothing: grayscale;
}
body {
    font-size: 16px;
    line-height: 1.6;
}
#wrapper {
    width: 100%;
    margin: 0 auto;
    position: relative;
}
body > #wrapper {
    height: auto;
    overflow: hidden;
}
.clearfix:after {
    visibility: hidden;
    display: block;
    content: " ";
    clear: both;
    height: 0;
}

@media print {
    html,
    html body {
        overflow: visible !important;
    }
}

/* アクセシビリティ */
.guidance {
    left: -999px;
    position: absolute;
    width: 990px;
}
img {
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
} /* レスポンシブ対応 */
img {
    vertical-align: bottom;
    box-shadow: #000 0 0 0; /* ロールオーバー対応 */
}
img,
x:-moz-any-link,
x:default {
    box-shadow: #000 0 0 0; /* IE7対応 */
}

/* リンク */
a {
    color: #333;
    text-decoration: none;
}
a:hover {
    opacity: 0.6;
    text-decoration: none !important;
}
.tel-moji a {
    text-decoration: underline;
}

.mincho {
    font-family: "Noto Serif JP", serif;
    position: relative;
    font-weight: 500;
}
.spartan {
    font-family: "Spartan", sans-serif;
    font-weight: 500;
}

.container {
    width: 100%;
    max-width: 1040px;
    padding: 0 20px;
    margin: 0 auto;
    position: relative;
}

.pc {
    display: block;
}
.sp {
    display: none;
}

/* ▼ タイトル
--------------------------------------- */
#site_title {
    width: 50px;
    margin: 0 auto;
}
.title {
    text-align: center;
    font-family: "Spartan", sans-serif;
    font-weight: 500;
    line-height: 1.3;
    letter-spacing: 0.05em;
}
/* メインタイトル */
.boder_title {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 220px;
    border-bottom: 1px solid #ccc;
    font-size: 46px;
}
.boder_title h1 span {
    display: block;
    font-size: 14px;
    text-align: center;
}
/* サブタイトル */
.boder_subtitle {
    border-bottom: 2px solid #000;
    padding-bottom: 10px;
    margin-bottom: 80px;
    font-size: 24px;
    font-weight: 500;
}
/* ▼ ボタン
--------------------------------------- */
.boder_btn a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 405px;
    height: 75px;
    margin: 0 auto;
    border: 1px solid #000;
    text-align: center;
    font-family: "Spartan", sans-serif;
    font-weight: 500;
    position: relative;
}
.boder_btn a:hover:hover {
    opacity: 1;
}
.boder_btn a:hover::before,
.boder_btn a:hover::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 7px;
    bottom: -7px;
}
.boder_btn a:hover::before {
    border-bottom: 1px solid #000;
    animation: boderBtn01 0.5s ease-in-out;
}
@keyframes boderBtn01 {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}
.boder_btn a:hover::after {
    border-right: 1px solid #000;
    animation: boderBtn02 0.5s ease-in-out;
}
@keyframes boderBtn02 {
    from {
        height: 0;
    }
    90% {
        height: 0;
    }
    to {
        height: 100%;
    }
}

/* ▼▼▼ ヘッダー
====================================================== */
header {
    width: 100%;
    height: 130px;
    background: #f5f5f5;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99999;
    overflow: hidden;
}
header .header_inner {
    padding: 15px;
    background: #fff;
}
.header_link {
    display: flex;
    position: absolute;
    top: 20px;
    right: 40px;
}
/* sns */
ul.share_sns {
    display: flex;
    align-items: center;
    margin-right: 25px;
}
ul.share_sns li {
    margin-right: 15px;
    font-size: 20px;
}
ul.share_sns li:last-child {
    margin-right: 0;
}
ul.share_sns li.share {
    font-size: 12px;
    margin-right: 0;
}
ul.share_sns li.share::after {
    display: inline-block;
    content: "";
    width: 20px;
    height: 1px;
    background: #000;
    margin: 5px 15px;
}

.menu {
    display: none;
}

/* ▼ グローバルナビゲーション
--------------------------------------- */
#gnav {
    overflow: hidden;
}
#gnav > ul {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
}
#gnav > ul > li {
    margin: 0 40px;
    position: relative;
    transition: .4s;
}
#gnav > ul > li.now::after,
#gnav > ul > li:hover::after {
    content: "";
    width: 100%;
    height: 2px;
    background: #000;
    margin: auto;
    position: absolute;
    bottom: -15px;
    left: 0;
}
#gnav > ul > li:hover::after {
    animation: gnavHover 0.3s ease;
}
@keyframes gnavHover {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}
#gnav > ul > li a {
    display: block;
    font-size: 12px;
    transition: .4s;
}
#gnav > ul > li a:hover {
    opacity: 1;
}
/* search */
#search {
    position: absolute;
    bottom: 10px;
    right: 40px;
    z-index: 2000;
}
#search form {
    position: relative;
}
/* 初期化 */
#search input {
    @include box-sizing(border-box);
    -webkit-appearance: none;
    &::-webkit-search-decoration {
        display: none;
    }
}
#search input {
    margin: 0;
    padding: 0;
    border: none;
    border-radius: 0;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
#search input[type="search"] {
    width: 160px;
    padding: 5px 10px 5px 30px;
    border-radius: 20px;
    font-size: 16px;
}
#search input[type="submit"] {
    width: 12px;
    height: 13px;
    background: url(../img/icon_search.svg) no-repeat center center/contain;
    position: absolute;
    top: 6px;
    left: 10px;
}
/* sp時ぶら下がるメニュー */
.sp_menu_bottom {
    position: absolute;
    left: 0;
    bottom: 0;
    transform: translateY(100%);
    background-color: #f5f5f5;
    padding: 10px;
    width: 100%;
    transition: 0.3s;
    display: none;
}
.sp_menu_bottom.hide {
    opacity: 0;
    transform: translateY(50%);
    pointer-events: none;
    z-index: -1;
}
.sp_menu_bottom ul {
    display: flex;
    justify-content: center;
    list-style: none;
    font-size: 11px;
    width: 100%;
}
.sp_menu_bottom ul li a {
    padding: 0 15px;
    border-right: solid 1px #cccccc;
}
.sp_menu_bottom ul li:last-of-type a {
    border-right: none;
}

/* ▼▼▼ メイン 「コンテンツとサイドを囲む要素」
====================================================== */
#main {
    margin: 130px auto 0;
    clear: both;
    /* overflow: hidden; */
}

.read {
    margin: 0 0 30px;
}

/* 2column の場合！！各自修正して使用してください */
.flex_box {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

/* ▼ パンくず
--------------------------------------- */
#path {
    padding-top: 20px;
    margin-bottom: 60px;
    font-family: "Spartan", sans-serif;
    font-size: 14px;
    overflow: hidden;
}
#path li {
    float: left;
}
#path li:not(:last-child):after {
    content: "〉";
    margin-left: 10px;
    color: #333;
}

/* ▼ 記事一覧
--------------------------------------- */
.article_list {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 70px;
}
.article_list li {
    width: 30%;
    margin: 0 5% 60px 0;
}
.article_list li.new {
    position: relative;
}
.article_list li.new::before {
    display: flex;
    align-items: center;
    justify-content: center;
    content: "NEW";
    width: 50px;
    height: 50px;
    background: #ba4343;
    border-radius: 50%;
    color: #fff;
    font-family: "Spartan", sans-serif;
    font-size: 12px;
    font-weight: 500;
    position: absolute;
    top: -20px;
    left: -20px;
    z-index: 1;
}
.article_list li:nth-child(3n) {
    margin-right: 0;
}
.article_list li:nth-last-child(-n + 3) {
    margin-bottom: 0;
}
.article_list li a {
    display: block;
}
.article_list li .photo {
    margin: 0 auto 15px;
    overflow: hidden;
}
.article_list li .photo img {
    transition-duration: 0.5s;
}
.article_list li:hover p.photo img {
    transform: scale(1.02);
    transition-duration: 0.5s;
}
.article_list li p {
    font-size: 14px;
}
.article_list li p.data {
    margin-bottom: 5px;
    color: #aaa;
    font-size: 10px;
    font-family: "Spartan", sans-serif;
    font-weight: 500;
}
.article_list li p.data .article_list_cat {
    padding-left: 10px;
    margin-left: 10px;
    border-left: solid 1px #aaaaaa;
}

/* ▼ タグ
--------------------------------------- */
section#trend_tag h2 {
    border-top: solid 1px #000000;
    border-bottom: solid 1px #000000;
    padding-top: 30px;
    padding-bottom: 22px;
    font-size: 30px;
}
ul.tag,
ol.tag {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 10px;
}
ul.tag li,
ol.tag li {
    margin: 0 20px 15px 0;
}
ol.tag li a,
ul.tag li a {
    background: #E2E2E2;
    padding: 0 2px;
    font-size: 12px;
    font-weight: bold;
    text-decoration: none;
    font-family: 'Noto Sans JP', sans-serif;
}
ol.tag li a::before,
ul.tag li a::before {
    content: "＃";
}
.header_tag {
    padding: 0 30px 50px;
}
.header_tag_bnr {
	max-width: 320px;
	width: 100%;
	margin: 20px auto 0;
}
.header_tag .tag_title {
    font-size: 18px;
    border-top: solid 1px #000000;
    border-bottom: solid 1px #000000;
    padding: 18px 0 13px;
    margin: 35px 0 25px;
}
.header_tag ol {
    margin-bottom: 0;
}
.header_tag ol li {
    margin-right: 20px;
    margin: 0 20px 15px 0;
}
/* ▼▼▼ フッター
===================================== */
footer {
    width: 100%;
    background: #000;
    padding: 50px 0;
    color: #fff;
    font-size: 12px;
    clear: both;
    overflow: hidden;
    padding-top: 0;
}
/* footer_category */
footer .footer_category {
    border-top: solid 1px #cccccc;
}
footer .footer_category ul {
    justify-content: center;
    border: none;
    display: flex;
    flex-wrap: wrap;
    background-color: #f5f5f5;
    margin-bottom: 70px;
}
footer .footer_category ul li {
    width: auto;
    border: none;
}
footer .footer_category ul li a {
    text-align: center;
    padding: 15px 10px 15px 35px;
    padding-left: 45px;
    padding-right: 45px;
    font-size: 12px;
    color: #000000;
    display: block;
    position: relative;
}
footer .footer_category ul li a:before {
    content: none;
    width: 11px;
    height: 4px;
    background-image: url(../img/footer_category_arw.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    display: block;
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
}

footer a {
    color: #fff;
}
.follow {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}
.follow > p::after {
    display: inline-block;
    content: "";
    width: 50px;
    height: 1px;
    background: #fff;
    margin: 5px 25px;
}
.follow ul.footer_sns {
    display: flex;
    align-items: center;
}
.follow ul.footer_sns li.spartan {
    margin: 5px 15px 0 0;
}
.follow ul.footer_sns li a {
    font-size: 27px;
}

/* 注意 */
.caution {
    justify-content: flex-start;
    margin-bottom: 45px;
}
.caution ul {
    margin-right: 30px;
}
.caution ul li:not(:last-child) {
    margin-bottom: 5px;
}
ul#copyright {
    justify-content: center;
}
ul#copyright li:not(:last-child)::after {
    display: inline-block;
    content: "｜";
    margin: 0 15px;
}

/* RANKING number */
ul.recommend_list.ranking_side {
    counter-reset: num;
}
ul.recommend_list.ranking_side li {
    position: relative;
}
ul.recommend_list.ranking_side li a:before {
    counter-increment: num;
    content: counter(num);
    width: 30px;
    height: 27px;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 5px;
    top: 5px;
    font-size: 13px;
    border-radius: 100px;
    z-index: 2;
    font-family: "Spartan", sans-serif;
    font-weight: 500;
    padding-top: 3px;
}


/* ▼ ページ上部へ戻る
--------------------------------------- */
.pagetop {
    position: fixed;
    bottom: 20px;
    right: 0px;
    z-index: 2000;
    cursor: pointer;
}

/* ▼▼▼ 992px〜1199px
====================================================== */
@media screen and (min-width: 992px) and (max-width: 1199px) {
    #gnav > ul > li {
        margin: 0 20px;
    }
}
/* ▼▼▼ 858px〜991px
====================================================== */
@media screen and (min-width: 848px) and (max-width: 991px) {
    #gnav > ul > li {
        margin: 0 10px;
    }
    #gnav > ul > li a {
        font-size: 11px;
    }
}
/* ▼▼▼ 858px〜991px
====================================================== */
@media screen and (min-width: 769px) and (max-width: 847px) {
    #gnav > ul > li {
        margin: 0 6px;
    }
    #gnav > ul > li a {
        display: block;
        font-size: 10px;
    }
}


/* ▼▼▼ 480px〜768px
====================================================== */
@media screen and (max-width: 768px) {
    body {
        font-size: 14px;
    }
    body.wrap {
        overflow: hidden;
    }

    #wrapper {
        width: 100%;
    }
    #screen {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: rgba(0, 0, 0, 0.8);
        z-index: 200;
    }

    .pc {
        display: none;
    }
    .sp {
        display: block;
    }

    /* ▼ タイトル
	--------------------------------------- */
    #site_title {
        width: 40px;
    }
    /* メインタイトル */
    .boder_title {
        height: 125px;
        font-size: 30px;
    }
    .boder_title h1 span {
        font-size: 12px;
    }
    /* サブタイトル */
    .boder_subtitle {
        margin-bottom: 60px;
        font-size: 19px;
    }
    /* ▼ ボタン
--------------------------------------- */
    .boder_btn a {
        max-width: 250px;
        height: 45px;
        margin: 0 auto;
    }
    .boder_btn a::before,
    .boder_btn a::after {
        content: "";
        width: 100%;
        height: 100%;
        position: absolute;
        left: 4px;
        bottom: -5px;
        border-right: 1px solid #000;
        border-bottom: 1px solid #000;
    }
    .boder_btn a:hover::before,
    .boder_btn a:hover::after {
        animation: none;
    }
    /* ▼ タブ
--------------------------------------- */
    section#trend_tag h2 {
        border-top: solid 1px #000000;
        border-bottom: solid 1px #000000;
        padding-top: 22px;
        padding-bottom: 15px;
        font-size: 22px;
    }

    ul.tag li {
        margin: 0 15px 20px 0;
    }

    /* ▼▼▼ ヘッダー
	====================================================== */
    header {
        width: 100%;
        height: 70px;
        background: #fff;
        padding: 0;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 99999;
        overflow: visible;
    }
    .header_inner {
        width: 100%;
        height: 70px;
        background: #fff;
        border-bottom: 1px solid #ededed;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 99999;
    }
    .header_link {
        justify-content: space-between;
        width: 100%;
        padding: 0 30px;
        position: relative;
        top: initial;
        bottom: auto;
        left: 0;
    }
    /* sns */
    ul.share_sns {
        display: flex;
        align-items: center;
    }
    ul.share_sns li {
        margin-right: 10px;
    }
    ul.share_sns li:last-child {
        margin-right: 0;
    }
    ul.share_sns li.share {
        margin-right: 20px;
    }
    ul.share_sns li.share::after {
        display: none;
    }

    /* ▼ グローバルナビゲーション
	--------------------------------------- */
    #gnav {
        display: block !important;
        -webkit-transition: 0.5s ease-in-out;
        -moz-transition: 0.5s ease-in-out;
        transition: 0.5s ease-in-out;
        background: #fff;
        width: 100%;
        height: 100vh;
        margin: 0;
        position: absolute;
        top: -1000px;
        left: 0;
        z-index: 1000;
        overflow: auto;
		padding-bottom: 100px;
    }
    #gnav.open {
        -moz-transform: translateY(1000px);
        -webkit-transform: translateY(1000px);
        transform: translateY(1000px);
    }
    #gnav > ul {
        display: block;
        height: auto;
        margin: auto;
        /* position: absolute; */
        top: 20vh;
        bottom: 0;
        left: 0;
        right: 0;
        margin-top: 100px;
        display: flex;
        flex-wrap: wrap;
    }
    #gnav > ul > li {
        width: 100% !important;
        max-width: 50% !important;
        height: auto;
        margin: 0 auto;
        text-indent: 0;
    }
    #gnav > ul > li:hover::after {
        display: none;
    }
    #gnav > ul > li > a {
        padding: 13px 10px;
        text-align: center;
        font-size: 16px;
        line-height: 1;
    }
    /* search */
    #search {
        width: 100%;
        height: 70px;
        position: initial;
        height: 0;
    }
    #search .sp {
        width: 70px;
        height: 70px;
        background: url(../img/icon_search.svg) no-repeat center center/19px
            19px;
        position: absolute;
        top: 0;
        left: 0;
    }
    #search form {
        display: none;
    }
    #search.close form {
        display: block;
        background: #ddd;
        width: 100%;
        height: 60px;
        padding: 15px 20px;
        position: absolute;
        top: 70px;
        left: 0;
		z-index: 1;
    }
    #search.close {
        height: 70px;
    }
    /* sp時ぶら下がるメニュー */
    .sp_menu_bottom {
        display: block;
    }
    /* new */
    .article_list li.new::before {
        width: 36px;
        height: 36px;
        font-size: 10px;
        top: -15px;
        left: -15px;
        z-index: 9;
    }
    /* 初期化 */
    #search input {
        @include box-sizing(border-box);
        -webkit-appearance: none;
        &::-webkit-search-decoration {
            display: none;
        }
    }
    #search input {
        margin: 0;
        padding: 0;
        border: none;
        border-radius: 0;
        outline: none;
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
    }
    #search input[type="search"] {
        width: 100%;
        height: 30px;
        padding: 5px 10px 5px 38px;
    }
    #search input[type="submit"] {
        top: 24px;
        left: 34px;
    }

    /* ▼メニューボタン
	--------------------------------------- */
    .menu {
        display: block;
        width: 70px;
        height: 70px;
        position: absolute;
        top: 0;
        right: 0;
        z-index: 2000;
    }
    .menu .icon {
        display: block;
        width: 30px;
        height: 2px;
        border-top: 1px solid #000;
        margin: auto;
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        -moz-box-sizing: border-box;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        -moz-transition: all 0.3s;
        -webkit-transition: all 0.3s;
        transition: all 0.3s;
    }
    .menu .icon:before,
    .menu .icon:after {
        content: "";
        width: 30px;
        border-top: 1px solid #000;
        position: absolute;
        -moz-transition: all 0.3s;
        -webkit-transition: all 0.3s;
        transition: all 0.3s;
        right: 0;
    }
    .menu .icon:before {
        top: -11px;
    }
    .menu .icon:after {
        bottom: -9px;
    }
    .menu .icon.active {
        border-color: #fff;
    }
    .menu .icon.active:before {
        -moz-transform: rotate(-150deg);
        -webkit-transform: rotate(-150deg);
        transform: rotate(-150deg);
        top: 0;
        right: 0;
    }
    .menu .icon.active:after {
        -moz-transform: rotate(150deg);
        -webkit-transform: rotate(150deg);
        transform: rotate(150deg);
        bottom: 0;
        right: 0;
    }

    /* ▼▼▼ メイン 「コンテンツとサイドを囲む要素」
	====================================================== */
    #header_inner,
    #main,
    #contents,
    #side,
    footer,
    #footer_inner {
        float: none;
        width: 100%;
    }
    #main {
        margin-top: 70px;
    }
    .menu_fixed {
        position: fixed;
        width: 100%;
        height: 100%;
    }
    .read {
        margin: 0 0 15px;
    }

    /* 2column の場合！！各自修正して使用してください */
    .flex_box {
        display: block;
    }

    /* ▼ パンくず
	--------------------------------------- */
    #path {
        margin-bottom: 40px;
        font-size: 12px;
    }

    /* ▼ 記事一覧
	--------------------------------------- */
    .article_list {
        margin-bottom: 50px;
    }
    .article_list li,
    .article_list li:nth-child(3n),
    .article_list li:nth-last-child(-n + 3) {
        width: 100%;
        margin: 0 auto 25px;
    }
    .article_list li:last-child {
        margin-bottom: 0;
    }
    .article_list li a {
        display: flex;
    }
    .article_list li .photo {
        width: 130px;
        margin: 0 15px 0 0;
    }
    .article_list li .txt {
        width: calc(100% - 130px);
    }
    .article_list li p {
        font-size: 12px;
    }
    /* new */
    .article_list li.new::before {
        width: 36px;
        height: 36px;
        font-size: 10px;
        top: -15px;
        left: -15px;
        z-index: 9;
    }

    /* ▼ 記事一覧-2column-
	--------------------------------------- */
    .sp_column .article_list {
        margin-bottom: 50px;
        display: flex;
        margin: 0 -10px;
    }
    .sp_column .article_list li:last-child {
        margin-bottom: 0;
    }
    .sp_column .article_list li {
        width: calc(50% - 20px);
        margin: 0 10px;
    }
    .sp_column .article_list li:nth-of-type(n + 3) {
        margin-top: 45px;
    }
    .sp_column .article_list li:nth-child(3n) {
        margin-right: 10px;
    }
    .sp_column .article_list li:nth-last-of-type(2),
    .sp_column .article_list li:last-of-type {
        margin-bottom: 35px;
    }
    .sp_column .article_list li a {
        /* display: flex; */
        display: block;
    }
    .sp_column .article_list li .photo {
        /* width: 130px; */
        width: 100%;
        /* margin: 0 15px 0 0; */
        margin: 0;
    }
    .sp_column .article_list li .photo img {
        width: 100%;
    }
    .sp_column .article_list li .txt {
        /* width: calc(100% - 130px); */
        width: 100%;
    }
    .sp_column .article_list li p {
        font-size: 12px;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 3;
        overflow: hidden;    
    }
    .sp_column .article_list li .txt p:not(.data) {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3; /* 制限したい行数が3の場合 */
    overflow: hidden;
    }
    /* .sp_column .article_list li .txt p:not(.data) {
        overflow: hidden;
        width: 100%;
        font-size: 14px;
        height: 58.8px;
        line-height: 1.4;
        position: relative;
    }
    .sp_column .article_list li .txt p:not(.data) {
        overflow: hidden;
        width: 100%;
    }
    .sp_column .article_list li .txt p:not(.data):before,
    .sp_column .article_list li .txt p:not(.data):after {
        background: #eee;
        position: absolute;
    }
    .sp_column .article_list li .txt p:not(.data):before {
        content: "...";
        top: 39.2px;
        right: 0;
    }
    .sp_column .article_list li .txt p:not(.data):after {
        content: "";
        height: 100%;
        width: 100%;

    } */

    .sp_column .article_list li p.data {
        margin-top: 10px;
        font-size: 10px;
    }
    .sp_column .article_list li p.data .article_list_cat {
        padding-left: 6px;
        margin-left: 6px;
    }
    /* ▼▼▼ フッター
	====================================================== */
    footer {
        padding: 0 15px 40px;
        font-size: 11px;
    }
    /* footer_category */
    footer .footer_category {
        margin: 0 -15px;
        margin-bottom: 35px;
        border-top: none;
    }
    footer .footer_category ul {
        border-top: solid 1px #ccc;
        border-bottom: solid 1px #ccc;
    }
    footer .footer_category ul li {
        width: 50%;
        border-right: solid 1px #cccccc;
        border-bottom: solid 1px #ccc;
    }
    footer .footer_category ul li:nth-of-type(2),
    footer .footer_category ul li:last-of-type {
        border-right: none;
    }
    footer .footer_category ul li:nth-of-type(3),
    footer .footer_category ul li:last-of-type {
        border-bottom: none;
    }
    footer .footer_category ul li a {
        text-align: left;
        font-size: 14px;
        padding: 18px 10px 15px 35px;
        line-height: 1.3;
    }
    footer .footer_category ul li a:before {
        content: "";
    }

    .follow {
        display: block;
        margin-bottom: 20px;
    }
    .follow > p {
        margin-bottom: 20px;
    }
    .follow > p::after {
        display: none;
    }
    /* 注意 */
    .caution {
        margin-bottom: 45px;
    }
    .caution ul {
        margin-right: 0;
    }
    .caution ul li:not(:last-child) {
        margin-bottom: 10px;
    }
    ul#copyright {
        justify-content: center;
    }
    ul#copyright li:not(:last-child) {
        margin-bottom: 10px;
    }
    ul#copyright li:not(:last-child)::after {
        display: none;
    }

    /* ▼ ページ上部へ戻る
	--------------------------------------- */
    .pagetop {
        width: 50px;
    }

    /* ▼ RANKING
	--------------------------------------- */
    ul.recommend_list.ranking_side li a:before {
        font-size: 10px;
        width: 22px;
        height: 21px;
        left: 5px;
        top: 5px;
        padding-top: 1px;
    }
    /* ▼ スマホ時メニュー下線
	--------------------------------------- */
    #gnav > ul > li.now::after, #gnav > ul > li:hover::after {
        width: 30%;
        left: 50%;
        transform: translateX(-50%);
        bottom: 5px;
        content: none;
    }
}

/* ▼▼▼ 〜320px
======================================================*/
@media screen and (max-width: 320px) {
    #gnav > ul > li > a {
        padding: 16px;
    }
}
