@charset "utf-8";

/* CSS reset
---------------------------*/
html, body, h1, h2, h3, p, ul, li, img, table, tr, th, td {
    margin: 0;
    padding: 0;
    line-height: 1.0;
    font-family: 'Kosugi Maru', sans-serif;
    font-size: 16px;
    color: #212121;
}

h2, .contact {
    font-family: 'Luckiest Guy', cursive;
    letter-spacing: 3px;

}

@media screen and (max-width: 767px) {
    html, body, h1, h2, h3, p, ul, li, img {
        font-size: 14px;
    }
}

body {
    background: #fff;
}

img {
    display: block;
    vertical-align: bottom;
    max-width: 100%;
    height: auto;
}

ul, li {
    list-style: none;
}

a {
    color: inherit;
    text-decoration: none;
}

a:hover {
    opacity: 0.6;
}

/*　レイアウト
----------------------------*/
.container_hd {
    background: #222;
}

.container_hd__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 5px;
    flex-wrap: nowrap;
    align-items: flex-end;
}

.container {
    max-width: 1024px;
    margin: 0 auto;
    padding: 0 5px;
    background: #fff;
}

/*　float　*/
.float_l {
    float: left;
    width: 77%;
}

.float_r {
    float: right;
    width: 22%;
}

.overflow_hdn {
    overflow: hidden;
}

@media screen and (max-width: 767px) {
    .float_l {
        float: none;
        width: 100%;

    }

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

    .overflow-hdn {
        overflow: visible;
    }
}


/*　flex　*/
.flex_btw {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.flex_nml {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
}

.flex_cnt {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}


/*　PC用・スマホ用　*/
.pc {
    display: block;
}

.sp {
    display: none;
}

@media screen and (max-width: 767px) {
    .pc {
        display: none;
    }

    .sp {
        display: block;
    }
}




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

/*　見出しスタイル　*/
.h1-style {
    max-width: 320px;
    width: 30%;
    height: auto;
}

.h2-style {
    margin-bottom: 10px;
    padding: 10px 0 8px 22px;
    background: #ff83bc;
    color: #fff;
    font-size: 26px;
    border-radius: 5px;
}

.h2-style_category {
    margin-top: 10px;
}

.h2-style_news {
    margin: 1%;
}

.float_r .h2-style {
    padding-left: 0;
    text-align: center;
    font-size: 20px;
}

@media screen and (max-width: 767px) {
    .h1-style {
        width: 50%;
        height: auto;
    }

    .float_r .h2-style {
        margin-bottom: 10px;
        padding: 10px 0 8px 22px;
        background: #ff83bc;
        color: #fff;
        font-size: 26px;
        border-radius: 5px;
        text-align: left;
    }
}

/*検索*/
.search {
    margin-top: 10px;
    max-width: 30%;
}

.search form {
    margin: 0 29px 0 0;
    position: relative;
}

.search form .keywords {
    width: 180px;
    padding: 4px 0 4px 13px;
    border: none;
    border-radius: 13px;
    font-size: 14px;
}

.i_search {
    position: absolute;
    top: 1px;
    margin-left: 5px;
    background-color: transparent;
    border: none;
    cursor: pointer;
    outline: none;
    padding: 0;
    width: 24px;
    height: 24px;
    background: url(../images/common/search.png) no-repeat;
    background-size: contain;
}

@media screen and (max-width:767px) {
    .search {
        max-width: 50%;
    }

    .search form .keywords {
        width: 120px;
        padding: 4px 0 4px 13px;
        border: none;
        border-radius: 13px;
        font-size: 12px;
    }
}


/*バナー*/
.banner_468x60 img, .banner_300x250 img {
    display: block;
    margin: 0 auto;
    padding: 10px;
    box-sizing: border-box;
}

.banner_468x60 img {
    padding: 10px 5px;
}

.banner_300x250 img {
    width: 33.33%;
    padding: 5px;
}

/*RSSエリア
-----------------------------*/
.rss {
    padding: 5px 0;
}

.rss li {
    width: 24%;
    position: relative;
    margin: 2.5px;
}

.rss li img {}

.rss p {
    position: absolute;
    display: inline-block;
    bottom: 0;
    max-width: 180px;
    height: 36px;
    margin: auto;
    padding: 0;
    background: rgba(100, 100, 100, 0.8);
    color: #fff;
    font-size: 12px;
    line-height: 1.5;
}

@media screen and (max-width:767px) {
    .rss li {
        width: 48%;
        position: relative;
        margin: 2.5px;
    }
}

/* header.php
-----------------------------*/
.container_hd__inner .banner_468x60 {
    width: 40%;
}

/*　カテゴリー　*/
.category {
    margin-bottom: 30px;
    text-align: center;
}


.category li {
    text-align: center;
    margin-bottom: 5px;

}

.category li a {
    width: 90%;
    display: block;
    margin: 0 auto;
    padding: 10px 0;
    background: #222;
    color: #fff;
}

@media screen and (max-width:767px) {
    .category {
        margin-bottom: -5px;
        text-align: center;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        flex-wrap: wrap;
    }

    .category li {
        display: inline-block;
        width: 33.33%;
        text-align: center;
        margin-bottom: 5px;
    }

    .category li a {
        width: 100%;
        display: block;
        margin: 0 auto;
        padding: 5px 0;
        background: #222;
        border-radius: 20px;
        color: #fff;
        border: 5px double #fff;
        font-weight: bold;
        box-sizing: border-box;
    }
}


/*　新着情報　*/
.news li {
    line-height: 1.2;
    border-bottom: 1px dotted #ff83bc;
}

.news li:hover {
    color: #ff83bc;
    border-bottom: 1px solid #ff83bc;
}

.news li a:hover {
    opacity: 1;
}

/* フッター
-----------------------------*/
.link {
    margin-bottom: 20px;
}

.link li {
    width: 100%;
    margin: 5px;
    border-bottom: 1px dotted #222;
}

.link li:hover {
    color: #ff83bc;
    border-bottom: 1px solid #ff83bc;
}

.link li a:hover {
    opacity: 1;
}

footer {
    margin: 30px auto 0;
    padding: 10px 5px;
    box-sizing: border-box;
    background: #222;
}

footer p {
    text-align: center;
    margin: 20px 0 10px;
    color: #fff;
}


/* コンテンツ一覧
-----------------------------*/
.art_content {
    width: 33.33%;
    margin-top: 25px;
    padding: 2px;
    box-sizing: border-box;
}

.art_content__inner {
    position: relative;
    padding: 5px;
    border: 1px dotted #ff0b7b;
    border-top-right-radius: 8px 6px;
    border-bottom-left-radius: 8px 6px;
    border-bottom-right-radius: 8px 6px;

    box-sizing: border-box;
}

.content__image {
    max-width: 100%;
    height: 200px;
    margin-bottom: 10px;
    background: #fff;
}

.content__name {
    margin: 5px 0 10px;
    font-size: 16px;
    line-height: 1.2;
    /*font-weight: bold;*/
}

.content__date {
    position: absolute;
    left: -1px;
    bottom: 100%;
    background: #ff83bc;
    color: #fff;
    padding: 5px;
    font-size: 14px;
    border-top-left-radius: 8px 6px;
    border-top-right-radius: 8px 6px;
}

.content__table th {
    padding-bottom: 5px;
    font-size: 14px;
    font-weight: normal;
    text-align: left;
}

.content__table tr {
    display: block;
    padding: 5px 0;
}

.content__table td {
    display: inline-block;
    padding-top: 5px;
}

.content__table td a {
    padding: 2px 4px;
    font-size: 12px;
    border-radius: 4px;
    font-weight: bold;
    margin: 0 0 0 2px;
}

.table__category td a {
    background: #222;
    color: #fff;
}

.table__tag a {
    border: 1px dotted #ff83bc;
    color: #ff83bc;
}

.share-sns {
    margin-bottom: 10px;
    text-align: right;
}

.share-sns a {
    display: inline-block;
    margin-right: 10px;
    padding: 5px 10px 5px 30px;
    color: #fff;
    font-size: 12px;
    border-radius: 4px;
}

.twitter {
    background-color: #37c1ff;
    background-image: url(../images/common/twitter.png);
    background-repeat: no-repeat;
    background-position: 10px center;
    background-size: 15px auto;

}




/*↓　コンテンツ画像中央配置　↓*/
.content__image {
    position: relative;
    margin-right: auto;
    margin-left: auto;
}

.content__image img {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    display: block;
    max-width: 100%;
    max-height: 200px;
}

.content__lead {
    line-height: 1.5;
}

/*↑　コンテンツ画像中央配置　↑*/

@media screen and (max-width:767px) {
    .content__name {
        margin-bottom: 5px;
    }

    .content__image {
        height: 260px;
    }
}

/*ページネーション*/
.pagination {
    margin: 15px auto 15px;
    box-sizing: border-box;
}

.page:last-child {
    border-right: none;
}

.page {
    padding: 8px 10px 6px;
    color: #222;
    /*border-right: 1px solid #ff0b7b;*/
}

.page_active {
    background: #222;
    color: #fff;
    font-weight: bold;
    box-sizing: border-box;
}


@media screen and (max-width: 767px) {
    .art_content {
        float: none;
        width: 100%;
    }

    .share-sns {
        margin-bottom: 0;
    }

    .share-sns a {
        margin-right: 0;
    }

    .page {
        margin: 2.5px;
    }
}

/*詳細
-----------------------------*/
.detail {
    width: 100%;
    margin-top: 25px;
    padding: 2px;
    box-sizing: border-box;
}

.h2-style_detail {
    margin: 10px 0;
    text-align: left;
    line-height: 1.2;
    font-size: 24px;
}

.detail__image {
    max-width: 426px;
    height: 320px;
    margin-bottom: 10px;
    background: #fff;
}

.detail__image:last-child {
    margin-bottom: 0;
}

.wrap_detail__image {
    margin-bottom: 10px;
    padding: 20px 0;
    /*background: #ff0b7b;*/
    border-radius: 10px;
}



/*↓　詳細画像中央配置　↓*/
.detail__image {
    position: relative;
    margin-right: auto;
    margin-left: auto;
}

.detail__image img {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    /*margin: auto;*/
}

@media screen and (max-width:767px) {
    .h2-style_detail {
        font-size: 20px;
        line-height: 1.2;
        text-align: left;
    }

    .detail__image {
        height: 260px;
    }

    .detail__lead {
        text-align: left;
    }
}

/*↑　コンテンツ画像中央配置　↑*/


/*免責事項　エラー共通
-----------------------------*/
.text {
    margin-bottom: 30px;
    font-size: 16px;
    line-height: 1.5;
}

/*問い合わせ
-----------------------------*/
.contact {
    display: block;
    width: 150px;
    margin: 10px auto 0;
    padding: 10px 0 8px;
    text-align: center;
    background: #222;
    color: #fff;
    font-size: 15px;
    border-radius: 5px;
    line-height: 1.0;
}

/*エラー
-----------------------------*/
.h2-style_error {
    margin: 20px auto 0;
    padding: 20px 10px 10px;
    font-size: 24px;
    background: #ff83bc;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.text_error {
    padding: 0 10px 20px;
    text-align: left;
    background: #ff83bc;
    font-weight: bold;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

@media screen and (max-width:767px) {
    .text_error {
        margin-left: 0px;
        text-align: center;
    }
}
