@charset "utf-8";

/*
Site Name: チャンスイットPC
Description: いぬのきもち
Last Update: 2024/05/31 m-ido
*/

/*-------------------------------------------*/
/*  CONTENTS:
/*--------------------------------------------
1.0 - 汎用
    1.1 - ヘッダー
    1.2 - ボタン
2.0 - トップページ
    2.1 - 記事一覧
    2.2 - ページャー
    2.3 - 注意事項
3.0 - 個別記事ページ
    3.1 - ヘッダー
    3.2 - コンテンツ
4.0 - スタンプページ
5.0 - フッター
---------------------------------------------*/

/*-------------------------------------------*/
/*  1.0 - 汎用
/*-------------------------------------------*/

#wrapper {
    font-family: "Meiryo","メイリオ","ＭＳ　Ｐゴシック","Hiragino Kaku Gothic Pro","ヒラギノ角ゴ Pro W3",sans-serif;
}
#contents {
    width: 950px;
    margin: 20px auto 0;
    overflow: hidden;
    font-size: 14px;
}
#contents a {
    color: #4d4d4d;
}
.mainImage {
    margin-bottom: 30px;
}

/*  1.1 - ヘッダー
-------------------------------------------- */
#header {
    margin: 0;
    border-bottom: 1px solid #d8d8d8;
}
#header .navi_area {
    height: 130px;
}
#header h1.header_title {
    padding: 5px 0 9px;
}
.navi_area div {
    width: 950px;
    display: inline-block;
    position: relative;
}
.navi_area p.top {
    margin-top: 10px;
    float: left;
}
.navi_area p.ci_top {
    position: absolute;
    right: 0;
    top: 0;
}
p.home {
    width: 950px;
    margin: 5px auto;
    text-align: right;
    font-size: 14px;
}
p.home a {
    text-decoration: none;
    color: #04c;
    font-weight: bold;
}
p.home a:hover {
    color: #6cf;
}

/*  1.2 - ボタン
-------------------------------------------- */
.btn, span.btn {
    display: block;
    padding: 15px 0;
    margin: 0 auto;
    box-sizing: border-box;
    border-radius: 5px;
    font-weight: bold;
    font-size: 18px;
    text-decoration: none;
}
#contents .read_more,
.stampPage a.read_more {
    width: 450px;
    background: #3dba8f;
    color: #fff;
}
#contents .get_stamp {
    width: 450px;
    background: #fecc1d;
    color: #63473c;
    border: none;
}
#contents a.page_back {
    width: 450px;
    background: #c9c9c9;
    color: #4d4d4d;
}
#contents a.login {
    margin-bottom: 15px;
    width: 450px;
    background: #fecc1d;
    color: #63473c;
}
.btn {
    display: block;
    position: relative;
    text-align:center;
    text-decoration:none;
    cursor: pointer;
}
.btn::before,
.btn::after{
    display: block;
    content: "";
    position: absolute;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    top: 50%;
    width: 8px;
    height: 8px;
    margin-top: -4px;
}
.btn.read_more::before {
    right: 17px;
    background: #fff;
}
.btn.read_more::after {
    right: 20px;
    background: #3dba8f;
}
.btn.get_stamp::before {
    right: 17px;
    background: #fff;
}
.btn.get_stamp::after {
    right: 20px;
    background: #f8587e;
}
.btn.page_back::before {
    right: 17px;
    background: #4d4d4d;
}
.btn.page_back::after {
    right: 20px;
    background: #c9c9c9;
}
.category .btn::before {
    right: 17px;
    background: #4d4d4d
}
.category .btn::after {
    right: 20px;
    background: #fff;
}


/*-------------------------------------------*/
/*  2.0 - トップページ
/*-------------------------------------------*/

.mainContents {
    width: 620px;
    float: left;
}
.rightColumn {
    width: 300px;
    float: right;
}

/*  2.1 - 記事一覧
-------------------------------------------- */
.category_title {
    margin-bottom: 30px;
    padding-bottom: 5px;
    font-size: 28px;
    border-bottom: 2px solid #cbe758;
}
.no_data {
    padding: 30px 10px;
    text-align: center;
    border: 1px solid #4d4d4d;
    border-radius: 5px;
}
.latest_article {
    position: relative;
    margin-bottom: 30px;
}
.latest_article a {
    display: block;
    text-decoration: none;
}
.latest_article .figure img {
    object-fit: cover;
}
.latest_article .txt {
    width: 100%;
    position: absolute;
    bottom: 0;
    padding: 10px 20px;
    box-sizing: border-box;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.2);
    color: #fff;
    font-size: 28px;
    text-align: left;
    height: 100px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}
.articleList li {
    padding: 20px;
    overflow: hidden;
    border-top: 1px solid #ccc;
}
.articleList li.read {

    position: relative;
    background: #eee;
}
.articleList li:last-child {
    border-bottom: 1px solid #ccc;
}
.articleList li a {
    display: block;
}
.articleList li a:hover {
    opacity: 0.8;
}
.articleList img {
    float: left;
}
.articleList img.articleImg {
    width: 200px;
    height: 130px;
    object-fit: cover;
}
.articleList img.stamp {
    display: none;
}
.latest_article.read img.stamp,
.articleList li.read img.stamp {
    display: block;
    position: absolute;
    top: 10px;
    left: 10px;
}
.articleList .summary {
    width: 340px;
    float: right;
    text-align: left;
}
.articleList .summary h2 {
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: bold;
}
.articleList .summary p {
    font-size: 14px;
}

/*  2.2 - 右カラム
-------------------------------------------- */
.rightColumn .stamp_status p{
    margin-bottom: 30px;
    padding: 10px;
    border-radius: 5px;
    color: #4d4d4d;
    font-weight: bold;
    text-align: center;
}
.rightColumn p.less_stamp {
    background: #CBE758;
    color: #333;
}
.rightColumn p.less_stamp span {
    font-size: 18px;
    font-weight: bold;
}
.rightColumn p.all_stamp {
    background: #fff;
    border: 1px solid #4d4d4d;
}
.rightColumn h4 {
    padding: 10px;
    background: #e6fb97;
    border-bottom: solid 3px #cbe758;
    color: #333;
    font-weight: bold;
    font-size: 16px;
}
.rightColumn .category {
    margin-bottom: 30px;
}
.rightColumn .category li {
    margin-bottom: 5px;
    border-bottom: 1px dashed #d8d8d8;
}
.rightColumn .category a {
    position: relative;
    padding: 10px 25px;
    font-weight: bold;
    font-size: 16px;;
    text-align: left;
    text-decoration: none;
}

/*  2.3 - ページャー
-------------------------------------------- */
.pager {
    margin: 20px 0 0;
    padding: 0 0 3px;
    text-align: center;
}
.pager li {
    margin-left: 4px;
    display: inline-block;
    line-height: 1.4;
    color: #ff6600;
}
.pager li:first-child {
    margin-left: 0;
}
.pager li.back {
    margin-right: 4px;
}
.pager li.next {
    margin-left: 4px;
}
.pager li.select {
    padding:5px 10px 4px;
    -webkit-border-radius: 2px;
    border-radius:2px;
    background: #555555;
    border: 1px solid #555555;
    font-weight: bold;
    color: #fff;
}
.pager li a {
    padding:5px 10px 4px;
    display:inline-block;
    vertical-align: middle;
    background:#fff;
    border:1px solid #dcdcdc;
    -webkit-border-radius: 2px;
    border-radius:2px;
    text-decoration:none;
}
.pager li a:hover {
    background: #FFF8D8;
}
.pager li.back a:hover,
.pager li.next a:hover {
    background: #fff;
}
.pager li.back a,
.pager li.next a {
    padding: 0;
    border: none;
}

/*  2.3 - 注意事項
-------------------------------------------- */
.note {
    width: 950px;
    margin: 20px auto;
    padding: 20px;
    box-sizing: border-box;
    background: #f0f0f0;
    text-align: left;
}
.note h4 {
    margin-bottom: 5px;
    font-size: 16px;
    font-weight: bold;
}
.note li {
    margin-bottom: 10px;
}


/*-------------------------------------------*/
/*  3.0 - 個別記事ページ
/*-------------------------------------------*/

.articlePage {
    text-align: center;
    font-size: 18px;
    margin-bottom: 40px;
}
.articlePage h1 {
    margin: 0 0 10px;
    font-size: 28px;
    font-weight: bold;
    text-align: left;
}
.articlePage p.pub_date {
    text-align: left;
    font-size: 16px;
}
.articlePage > div.ad {
    display: inline-block;
    width: 300px;
    margin: 20px 3px 40px;
    text-align: center;
}
.articlePage .description p {
    margin-bottom: 30px;
    text-align: left;
}
.articlePage .description div.ad {
    margin-bottom: 20px;
    display: inline-block;
}
.articlePage .description img {
    max-width: 100%;
    margin: 40px 0;
}
.articlePage .description h1,
.articlePage .description h2 {
    text-align: left;
    font-size: 24px;
    font-weight: bold;
    border-left: solid 10px #e6fb97;
    padding-left: 20px;
    margin-top: 100px;
}

/*-------------------------------------------*/
/*  4.0 - スタンプページ
/*-------------------------------------------*/

.stampPage#wrapper {
    text-align: center;
    padding: 0 0 330px
}
.stampArea {
    margin: 0 0 20px;
    padding: 20px 0;
    background-image: linear-gradient(
    -45deg,
    #eeeeec 25%,
    #e9e9e9 25%, #e9e9e9 50%,
    #eeeeec 50%, #eeeeec 75%,
    #e9e9e9 75%, #e9e9e9
    );
    background-size: 8px 8px;
}
.stampArea h2 {
    margin-bottom: 30px;
}
.stampArea .stamp_card {
    width: 800px;
    height: 327px;
    margin: 0 auto 20px;
    background: url(../../img/article/dog/bg_stampcard.png) no-repeat;
}
.stamp_card ul {
    width: 650px;
    margin: 0 auto;
    padding: 55px 0 0;
}
.stamp_card li {
    width: 125px;
    height: 125px;
    display: inline-block;
    margin-bottom: 10px;
    background: url(../../img/article/dog/stamp_empty.png) no-repeat 9px 0px;
}
.stamp_card li.empty img {
    display: none;
}
.stampArea span {
    text-align: center;
    font-size: 11px;
    color: #7c7c7c;
}
.stampPage a.read_more {
    margin: 0 auto 15px;
}
.stampPage a.external_link {
    color: #2a7eb9;
}
.stampPage a.external_link:hover {
    text-decoration: none;
}
.stampPage div.ad {
    margin-bottom: 20px;
    display: inline-block;
}

/* 他記事コンテンツへの誘導バナー */

.stampPage .other_contents {
    margin: 0 0 15px;
}
.stampPage .other_contents p {
    margin-bottom: 15px;
    font-weight: bold;
    font-size: 18px;
}
.stampPage .other_contents ul {
    width: 840px;
    margin: 0 auto 5px;
    display: flex;
    justify-content: space-around;
}
.stampPage .other_contents a {
    display: block;
}


/*-------------------------------------------*/
/*  5.0 - フッター
/*-------------------------------------------*/
.ad {
    margin-bottom: 30px;
}
#footer {
    left:0;
    right:0;
    margin: 0 auto;
}