@charset "utf-8";


/*------------------------------------
リセット
------------------------------------*/
/* すべての要素の余白をリセット */
body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,code,form,fieldset,legend,input,textarea,p,blockquote,th,td,figure{
  margin:0;
  padding:0;
  box-sizing: border-box; /*幅の計算を「borderもpaddingも入れてちょうど」にする*/
}

/* リストのスタイルを消す */
ul, ol {
  list-style: none;
}

/* リンクの下線を消す */
a {
  text-decoration: none;
  color: inherit; /* 親の色を引き継ぐ */
}

a:visited, a:hover{
  text-decoration: none;
}

/* 見出しや段落の余白を消す */
h1, h2, h3, h4, h5, h6, p {
  margin: 0;
  padding: 0;
  font-size:100%;
  font-weight:normal;
  line-height: 1.7;
}

/* 罫線をくっつけてセルの隙間をなくす */
table{
    border-collapse:collapse;
    border-spacing:0
}

/* 画像のpaddingを消す */
[class*="acms-col"] {
    padding-left: 0;
    padding-right: 0;
}



/*------------------------------------
共通cssの調整
------------------------------------*/
@media screen and (max-width: 810px){
    #contents {
        margin-top: 3rem;
    }
}

@media screen and (max-width: 810px){
    #contents {
        margin-top: 3.7rem;
    }
}

.topicpath {
    margin-bottom: 5px;
    padding: 5px 0;
    width: 950px;
    margin: 0 auto;
    background: #fff;
    position: relative;
    z-index: 1;
}




/*------------------------------------
ベース
------------------------------------*/
#contents{
    width: auto;
}

@media screen and (max-width: 767px) {
    #contents {
        padding-right: 0;
        padding-left: 0;
    }
}

#campaign{
    background: #EFEFEF;
    font-family: "あおとゴシック R", "Aoto Gothic Regular", /* タイプスクエア */
    "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", /* macOS/iOS対応 */
    "メイリオ", "Meiryo",  /* Windows対応 */ 
    "Osaka",  /* 古いMac用 レガシー対応 */
    "ＭＳ Ｐゴシック", "MS PGothic", /* 古いWindows対応（半角スペース注意） */
    sans-serif; /* 最終手段：汎用ゴシック体 */;
}

.camContainer{
    max-width: 500px;
    margin: 0 auto;
    padding: 25px 25px 50px;
    background: #fff;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.05);
}

#campaign img{
    width: 100%;
    height: auto;
}

#campaign a{
    transition: all .3s;
    color: #333;
}

#campaign a:hover{
    opacity: 0.8;
}

/* 上余白 */
#campaign h2,
.customConts{
    margin-top: 50px;
}


@media screen and (max-width: 500px){
    .camContainer {
        padding: 0 25px 50px;
        box-shadow: none;
    }
}


/*------------------------------------
テキストユニット
------------------------------------*/
#campaign h1,
#campaign h2, 
#campaign h3,
strong{
    font-family: "あおとゴシック B", "Aoto Gothic Bold";
    font-weight: bold;
}

#campaign h1,
#campaign h2, 
#campaign h3{
    line-height: 1.5;
}


#campaign h3{
    margin-top: 25px;
}

#campaign p{
    margin-top: 15px;
}

/* 画像 */
[class*=column-media]{
    margin-top: 25px;
    margin-bottom: 0;
}

/* 画像キャプション */
.column-media-auto :not([href*=media-download]):not([href*=storage]) + .caption {
    text-align: left;
}

#campaign h2{
    font-size: 26px;
    background: #EFEFEF;
    border-left: #333 7px solid;
    padding: 15px 15px 15px 22px;
}

#campaign h3{
    font-size: 22px;
}



/*------------------------------------ 
カスタムユニット
------------------------------------*/
/* グレー背景 */
.gray-bk{
    background-color: #EFEFEF;
    padding: 50px 30px 45px;
}

.gray-bk h2{
    background: none !important;
    border-left: none !important;
    padding: 0 !important;
    margin-top: 0 !important;
    text-align: center;
}

.linkBtn{
    text-decoration: none !important;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 80px;
    font-size: 18px;
    font-family: "あおとゴシック B", "Aoto Gothic Bold";
    font-weight: bold;
    background: #fff;
    border: #ccc 1.5px solid;
    border-radius: 50px;
    text-align: center;
    padding: 0 30px;
}


/*ご購入はこちら
------------------------------------*/
.shopLink-area li{
    margin-bottom: 20px;
}

.shopLink-area li:last-child{
    margin-bottom: 0;
}

.shopLink-area li:first-child{
    margin-top: 25px;
}

.shopLink-area a img{
    height: 40px !important;
    width: auto !important;
}


/*タイトル
------------------------------------*/
h1{
    font-size: 28px;
    padding: 25px 0;
    border-top: #333 solid 3px;
    border-bottom: #333 solid 3px;
    text-align: center;
}

@media screen and (max-width: 500px){
    h1{
        text-align: left;
    }
}


/*キャンペーン概要
------------------------------------*/
.summary-area dl{
    border-bottom: 1px solid #ccc;
    padding-bottom: 20px;
    margin-top: 25px;
}

.summary-area dt{
    font-size: 18px;
    font-family: "あおとゴシック B", "Aoto Gothic Bold";
    font-weight: bold;
    margin-bottom: 10px;
}

.summary-area dt::before{
    content: "■";
    color: #333;
    padding-right: 3px;
}




/*応募規約
------------------------------------*/
.agreement-area .box{
    height: 350px;
    overflow-y: auto;
    padding: 30px;
    margin-top: 25px;
    background-color: #F5F5F5;
    text-align: left;
}

.agreement-area .linkBtn{
    background: #333;
    color: #fff !important;
    font-size: 28px;
    margin-top: 50px;
    height: 100px;
    border: none;
}



/*お問い合わせ
------------------------------------*/
.contact-area .linkBtn{
    margin-top: 25px;
}

.contact-area p{
    text-align: center;

}

.contact-area p.contactTel{
    font-size: 28px;
    font-family: "あおとゴシック B", "Aoto Gothic Bold";
    font-weight: bold;
    line-height: 1;
    margin-top: 25px !important;
}


/*ブランドページ
------------------------------------*/
.bnrLink-area .bnrLink{
    margin-top: 25px;
}

