@charset "UTF-8";
/* CSS Document */

/* 記述項目順序
    * reset
    * Header Footer Common
    * Common
    * Form
    * Thanks
    各項目ごとにPC・SP共通記述　その後ろにメディアクエリでSP版・PC版の順に記述
*/


/*------------------------------------------------------------
reset
------------------------------------------------------------*/
/* http://meyerweb.com/eric/tools/css/reset/
v2.0 | 20110126
License: none (public domain)
*/
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
    background: transparent;
}
  /* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section, main {
    display: block;
}
section, header, footer, nav, div, ul, ol, li, a, p, span, h1, h2, h3, h4, h5, h6, dl, dt, dd {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}
body {
    line-height: 1;
}
ol, ul {
    list-style: none;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after, q:before, q:after {
    content: '';
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
img {
    vertical-align: bottom;
    font-size: 0;
    line-height: 0;
}
/*box-sizingを全ブラウザに対応*/
*, *:before, *:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
}



/* ---------------------------------------------------------
   Header Footer Common
--------------------------------------------------------- */

/* ヘッダーロゴ 確認画面・完了画面にてメインビジュアルがない際に表示　＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */

#header a {
    display: block;
    height: 100%;
    width: 100%;
}
#header h1 {
    width: 200px;
}
@media screen and (max-width: 600px) {
    #header {
        padding: 5px;
    }
    #header h1 {
        line-height:1em;
        width: 116px;
    }
    /* #header > a {
        width:40px;
        height:40px;
        display:block;
    } */
    #header > a >img {
        width:100%;
        height:100%;
    }
}

@media screen and (min-width: 601px) {
    #header {
        padding: 20px 35px 15px;
    }
}

/* ここまでヘッダーロゴ 確認画面・完了画面にてメインビジュアルがない際に表示　＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */

/* フッター　＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */

/* footer中央寄せ　footerのリンクを文字色と同じに変更 */
#footer {
    background: #fa2c2c;
    color: #fff;
    font-size: 10px;
    text-align: center;
}
#footer a {
    color: #fff;
}

@media screen and (max-width: 600px) {
    #footer{
        margin-top:10%;
    }
    .bnr_box {
        margin: 0 6%;
    }  
}

@media screen and (min-width: 601px) {
    #footer{
        margin-top: 50px;
    }
    .bnr_box {
        text-align: center;
        margin: 80px 0 0 ;
    }
}

/* ここまでフッター　＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */


/* ページを閉じるボタン　＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */

/* このページを閉じる */
#close {
    margin: 0 auto;
    text-align: center;
}
#close a {
    display: block;
    height: 100%;
    width: 100%;
}

@media screen and (max-width: 600px) {
    #close {
        margin-top: 8%;
        width: 56%;
    }
}

@media screen and (min-width: 601px) {
    #close {
        margin-top: 30px;
        width: 250px;
    }
}

/* ここまでページを閉じるボタン　＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */



/* ---------------------------------------------------------
   Common
--------------------------------------------------------- */

/* PCSP 共通設定 テキストの色や背景色・共通余白など　＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
/* メインカラー #fa2c2c */
/* 背景色 #fff */

body {
	width:100%;
	height:100%;
	min-height:100%;
    margin:0;
	color:#333;
    background:#fff;
	font-size:16px;
	line-height:1.7em;
	font-family:'Noto Sans JP',"メイリオ",Meiryo,"ＭＳ Ｐゴシック","MS PGothic","ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro",Verdana,"Lucida Grande",sans-serif;
	/* mac 不適応 \*/
	/* letter-spacing:1px; */
	/* ここまで */
}
img {
	vertical-align:text-bottom;
	max-width: 100%;
	width:auto; /*IE8のみ適用*/
    height: auto;
}

/* コンテンツ全体調整 */
#main {
	width:100%;
	max-width:800px;
	margin:0 auto;
}
#container {
	width:100%;
	height:100%;/* for IE6 */
	min-height:100%;
	/* text-align:center; */
}
/* タグ要素を消す */
#tag {
	width:1px;
	height:1px;
	overflow:hidden;
	position:absolute;
	top:0;
	left:0;
}
#box_tag {
    width:1px;
    height:1px;
    overflow:hidden;
    position:absolute;
    top:0;
    left:0;
}
/* IE6 IE7 IE8の時表示 */
#browser_security {
    width: 100%;
    height: 100%;
    filter:progid:DXImageTransform.Microsoft.Gradient(GradientType=0,StartColorStr=#99000000,EndColorStr=#99000000);/*IE8以下用*/
    background: rgba(0, 0, 0, 0.6);
    text-align: center;
    opacity: 1;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 500;
    display:none;
    font-size:14px;
}
#browser_security div {
    width: 600px;
    margin-left: -300px;
    background:#FFF;
    position: absolute;
    top: 200px;
    left:50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 700;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
    border-radius: 8px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    text-align:left;
}
#browser_security dl {
    padding:20px;
}
#browser_security dt {
    font-weight:bold;
    margin-bottom:10px;
}
#browser_security ul {
    padding-left:20px;
}
#browser_security li {
    margin-bottom:5px;
    list-style:disc outside;
}

/* コンテンツ全体左寄せに */
#main {
    text-align: left;
}
/* メインビジュアル直下 中央寄せに */
.top_area {
    text-align: center;
}
/* コンテンツ全体調整ここまで */


/* PC・SP全体共通のパーツレイアウト */

/* テキストリンクの色・挙動 */
a {
    color: #333;
}
a:hover {
    opacity: 0.7;
    transition-duration: .3s;
}


/* 共通記述系 */
/* clearfix */
.clearfix::after {
    content: "";
    display: block;
    clear: both;
}
/* strongタグで強調 */
strong {
    font-weight:bold;
}
/* 注意喚起のフォントカラー */
.caution, .error {
    color: #f00;
}
/* インデント設定 */
.indent {
    padding-left:1em;
    text-indent:-1em;
}
/* 共通記述系ここまで */


/* 見出しレイアウト系 */
/* メインビジュアル直下 タイトルのスタイル */
.top_area .top_title {
    background-color: #fa2c2c;
    color: #fff;
    font-weight: bold;
}
/* 下線大見出しタイトル */
.top_border_title {
    border-bottom: 5px solid #fa2c2c;
    color:#fa2c2c;
    font-size: 18px;
    font-weight:bold;
}

/* フォーム見出しタイトル */
.form_title {
    background:#fa2c2c;
    font-weight:bold;
    color:#fff;
}
/* フォーム項目内下線見出しタイトル */
.form_border_title {
    border-bottom: 3px solid #fa2c2c;
    color:#fa2c2c;
    font-weight:bold;
    padding-left: 1rem;
}
/* 質問の中に質問 */
#form_area .form_text .form_inner_box .form_inner_title {
    color: #fa2c2c;
    font-weight: bold;
}
/* 見出しレイアウト系ここまで */

/* サイト特定レイアウト系 */
/* 応募パターン */
#form_area .pattern dt {
    border-bottom: 3px solid #666;
    color: #666;
    font-weight: bold;
}
/* グループサイト */
#form_area .group_site {
    background: #eee;
}
#form_area .group_site dt {
    color: #fa2c2c;
    font-weight: bold;
}
/* サイト特定レイアウト系ここまで */


/* スマートフォン用設定　＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
@media screen and (max-width: 600px) {

    /* SP版 パーツ */
    /* SP時のみ左右に余白  */
    .sp_inner {
        padding: 0 3%;
    }
    /* SP時のみ表示・非表示  */
    .pc_obj {
        display: none;
    }
    .sp_obj {
        display:block;
    }

    #contents {
        width:100%;
    }

    /* 画像設定 */
    img {
        width:100%;
        height: auto;
    }

    /* 見出しレイアウト系 */
    /* メインビジュアル直下 ページタイトル */
    .top_area .top_title {
        font-size: 20px;
        padding: 5% 0;
    }
    /* メインビジュアル直下 */
    .top_area .top_text {
        font-size: 16px;
        line-height: 1.6;
        margin-top: 10%;
    }
    /* 見出しレイアウト系ここまで */

    /* 余白調整 */
    #form_area {
        margin-top: 10%;
    }
    /* .term_area設定 */
    #form_area .top_border_title, #form_area .form_title{
        padding:3% 3%;
    }
    #form_area .top_border_title {
        text-align: center;
    }
    /* フォーム回答部分の余白 */
    #form_area .form_text{
        padding:8% 3% 10%;
    }
    /* 余白調整ここまで */


    /* サイト特定レイアウト系 */
    /* 質問の中に質問 */
    #form_area .form_text .form_inner_box + .form_inner_box {
        margin-top: 5%;
    }
    #form_area .form_text .form_inner_box .form_inner_title {
        margin-bottom:3%;
    }
    #form_area .form_text .form_inner_box .radio_text input[type="text"] {
        margin-top: 3%;
    }
    /* 応募パターン */
    #form_area .pattern {
        margin-top: 5%;
    }
    #form_area .pattern dt{
        margin-top: 5%;
    }
    /* グループサイト */
    #form_area .group_site {
        margin-top: 5%;
        padding: 3% 5%;
    }
    #form_area .group_site dt {
        margin-bottom: 2%;
    }
    #form_area .group_site dd ul li a {
        font-size: 15px;
    }
    /* サイト特定レイアウト系ここまで */

}


/* iPhone5s SE 個別レイアウト　＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
@media screen and (max-width: 320px) {
    /* メインビジュアル直下 */
    .top_area .top_text {
        font-size: 14px;
    }
    /* フォーム内の文字小さく */
    #form_area .form_text{
        font-size: 14px;
    }
}


/* PC用 余白や幅などの個別レイアウト　＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
@media screen and (min-width: 601px) {
    /* PC版 パーツ */
    /* PC時のみ表示・非表示  */
    .pc_obj{
        display: block;
    }
    .sp_obj{
        display:none;
    }
    /* PC版 背景レイアウト */
    body{
        background:#fff;
    }
    #contents {
        background: #fff;
        box-shadow:0px 0px 15px -5px #666666;
        margin: 0 auto;
        width:800px;
    }

    /* 見出しレイアウト系 */
    /* メインビジュアル直下 ページタイトル */
    .top_area .top_title {
        font-size: 24px;
        padding: 20px 0;
    }
    /* メインビジュアル直下 */
    .top_area .top_text {
        line-height: 1.6;
        margin-top: 50px;
    }
    /* 見出しレイアウト系ここまで */


    /* 余白調整 */
     #form_area {
        margin-top: 50px;
    }
    /* .term_area設定 */
    #form_area{
        padding:0 20px;
    }
    #form_area .top_border_title, #form_area .form_title {
        padding:5px 20px;
    }
    #form_area .form_title {
        /* インデント対策 */
        padding-left: 40px;
        text-indent: -1.5rem;
    }
    /* フォーム回答部分の余白 */
    #form_area .form_text {
        padding: 20px 20px 30px;
    }
    /* 余白調整ここまで */



    /* サイト特定レイアウト系 */
    /* 質問の中に質問 */
    #form_area .form_text .form_inner_box + .form_inner_box {
        margin-top: 20px;
    }
    #form_area .form_text .form_inner_box .radio_text {
        margin-top: 5px;
    }
    /* 応募パターン */
    #form_area .pattern {
        margin-top: 30px;
    }
    #form_area .pattern + .pattern {
        margin-top: 20px;
    }
    #form_area .pattern dd {
        margin-top: 10px;
    }
    /* グループサイト */
    #form_area .group_site {
        margin-top: 30px;
        padding: 20px;
    }
    #form_area .group_site dt {
        margin-bottom: .5rem;
    }
    #form_area .group_site dd ul li {
        float: left;
        margin-right: 10px;
        width: 210px;
    }
    #form_area .group_site dd ul li.last {
        margin-right: 0;
    }
    #form_area .group_site dd ul li a {
        font-size: 13px;
    }
    /* サイト特定レイアウト系ここまで */


}



/* ---------------------------------------------------------
   Form
--------------------------------------------------------- */

/* フォームに関する記述のみ　＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */

/*------------------------------------------------------------
reset
------------------------------------------------------------*/

/* フォームタグのフォント設定を合わせる */
button, input, select, textarea {
    font-family : inherit;
    font-size   : 16px;/* SP版ズーム防止 */
}
/* フォームタグのborder-radiusを消す */
input, button, textarea, select {
    border-radius: 0;
}
/* 一部フォームタグのデフォルトCSSを初期化 */
input[type="text"], input[type="email"], input[type=number], input[type=tel], input[type=password], input[type="button"], button, textarea {
    margin: 0;
    padding: 0;
    background: none;
    border: none;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
/* ボーダーの色とpaddingはつけておく */
input[type="text"], input[type="email"], input[type=number], input[type=tel], input[type=password], input[type="button"], button, textarea, select {
    border: 1px solid #666;
	padding: 3px 5px;
}
/* ボタン型のinputは背景色をつけておく */
input[type="button"] {
    background: #eee;
}
input[type="button"], label {
    cursor: pointer;
}
input:placeholder-shown{color:#c3c3c3}
input::-webkit-input-placeholder{color:#c3c3c3}
input:-moz-placeholder{color:#c3c3c3;opacity:1}
input::-moz-placeholder{color:#c3c3c3;opacity:1;}
/* ボタンのホバー */
input[type="submit"]:hover, input[type="button"]:hover, button:hover {
    opacity: 0.7;
    transition-duration: .3s;
}


/* PCSP 共通設定 テキストの色や背景色・共通余白など　＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */

/* テキストエリアを横幅いっぱいに */
textarea {
	resize: none;
    width: 100%;
}
/* labelの文章が落ちないようinline-blockにしておく */
label {
    display: inline-block;
    margin-top: 5px;
	padding-right: .5rem;
}
label input{
	margin-right: .2rem;
}

/* ボタンレイアウト */
/* button　cssのリセット */
.submit_area input[type="button"], .submit_area input[type="submit"], .submit_area button {
    margin: 0;
    padding: 0;
    background: none;
    border: none;
    border-radius: 0;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
.submit_area input[type="button"], .submit_area input[type="submit"], .submit_area button, .submit_area a.back {
    display: block;
    font-size: 113%;
    font-weight: bold;
    line-height: 1;
    text-align: center;
    padding: 5% 3%;
    cursor: pointer;
    width: 100%;
}
/* 戻る or リセット */
.submit_area .button_reset input[type="submit"], .submit_area .button_reset input[type="button"], .submit_area .button_reset button, .submit_area a.back {
    background: #EEE;
    color: #666;
}
/* 進む or サブミット */
.submit_area .button_submit input[type="submit"], .submit_area .button_submit input[type="button"], .submit_area button {
    background-color: #fa2c2c;
    color: #FFF;
}
/* ボタンがa要素だった場合の対応 */
.submit_area a.back {
    text-decoration: none;
}
/* ボタンレイアウトここまで */

/* フォーム設定 */
/*  名前入力 */
#form_area .name_input ul li.title {
    font-weight: bold;
}

/*  注文情報入力 */
#form_area .order_input dl dt {
    font-weight: bold;
}

/* 「必須」レイアウト */
.required {
    /* background: #ffff00; */
    color: #ffff00;
    display: inline-block;
    line-height: 1.8;
    font-size: 14px;
    margin-left: 1rem;
    text-align: center;
    text-indent: 0;
    width: 35px;
}

/* フォーム submitボタンのレイアウト */
.submit_area .button_reset, .submit_area .button_submit {
    width: 100%;
}
/* スタッフ画像 ご協力ありがとうございました */
.thanks_staff p {
    font-size: 28px;
    font-weight: bold;
    line-height: 1.5em;
    text-align: center;
    color: #fa2c2c;
    font-weight: bold;
}

/* エラー文言をボックス表示する場合 */
#form_area #box_error {
    border: 1px solid #f00;
    color: #f00;
}
#form_area #box_error li {
    text-indent: -1em;
    padding-left: 1em;
}
#form_area #box_error li::before {
    content: "・";
}
#form_area #box_error li + li {
    margin-top: 5px;
}


/* スマートフォン用設定　＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
@media screen and (max-width: 600px) {

    /* タグなどの個別調整 */

    #form_area dd input, #form_area dd select {
        width: 100%
    }
    #form_area dd input.postal, #form_area dd button.postal {
        width: 35%;
    }
    #form_area dd input[type=radio], #form_area dd input[type=checkbox] {
        margin: 0 .2rem 0 0;
        width: auto;
    }

    /* タグなどの個別調整ここまで */



    /* 余白・サイズなど設定 */

    /* 下線見出しとフォームがくっつく場合 */
    #form_area .form_entry .top_border_title + .form_box {
        margin-top: 5%;
    }

    /*  名前入力が姓名で分かれる場合 */
    #form_area .name_input ul li + li {
        margin-top: 3%;
    }

    /*  注文情報入力エリア */
    #form_area .order_input dl + dl {
        margin-top: 10px;
    }
    #form_area .order_input dl dt, #form_area .order_input dl dd {
        width: 100%;
    }
    #form_area .order_input dl dd {
        margin-top: 5px;
    }

    /* 余白・サイズなど設定ここまで */



    /* 次ページ遷移 ボタンエリア レイアウト */
    .submit_area {
        margin-top: 5%;
    }
    .submit_area .button_submit {
        margin-top: 10px;
    }
    /* 次ページ遷移 ボタンエリア レイアウトここまで */



    /* エラー文言をボックス表示する場合 */
    #form_area #box_error {
        margin: 0 3% 8%;
        padding: 5% 3%;
    }
    #form_area #box_error li {
        font-size: 14px;
    }

}


/* PC用 フォームの個別レイアウト　＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
@media screen and (min-width: 601px) {

    /* タグなどの個別調整 */

    #form_area dd input, #form_area dd select {
        width: 300px;
    }
    #form_area dd input[type=radio], #form_area dd input[type=checkbox] {
        width: auto;
    }
    #form_area dd.lot_choice label {
        width: 220px;
    }
    #form_area dd input.postal, #form_area dd button.postal {
        width: 120px;
    }
    #form_area dd input.medium {
        width: 550px;
    }
    #form_area dd input.long {
        width: 100%;
    }

    /* タグなどの個別調整ここまで */



    /* 余白・サイズなど設定 */

    #form_area .form_entry .top_border_title + .form_box {
        margin-top: 20px;
    }

    /*  名前入力が姓名で分かれる場合 */
    #form_area .name_input ul li {
        float: left;
        width: 50%;
    }
    #form_area .name_input ul li + li.title {
        margin-top: 10px;
    }
    #form_area .name_input ul li.title {
        width: 100%;
    }

    /*  注文情報入力 */
    #form_area .order_input .form_title {
        padding-left: 20px;
        text-indent: 0;
    }
    #form_area .order_input dl + dl {
        margin-top: 10px;
    }
    #form_area .order_input dl dt, #form_area .order_input dl dd {
        float: left;
    }
    #form_area .order_input dl dt {
        width: 30%;
    }
    #form_area .order_input dl dd {
        width: 70%;
    }
    #form_area .order_input dl dd input {
        width: 470px;
    }

    /* 余白・サイズなど設定 */



    /* 次ページ遷移 ボタンエリア レイアウト */
    .submit_area {
        margin: 20px auto 0;
        width: 600px;
    }
    .submit_area.only {
        margin: 20px auto 0;
        width: 290px;
    }
    .submit_area .button_reset {
        float: left;
    }
    .submit_area .button_submit {
        float: right;
    }
    .submit_area .button_reset, .submit_area .button_submit {
        width: 290px;
        height: 50px;
    }
    /* button　PCのみ高さ指定 */
    .submit_area input[type="button"], .submit_area input[type="submit"] {
        height: 100%;
        padding: 0;
    }
    /* 次ページ遷移 ボタンエリア レイアウトここまで */



    /* エラー文言をボックス表示する場合 */
    #form_area #box_error {
        margin-bottom: 30px;
        padding: 20px;
    }

}


/* フォーム下 注意事項等 */

/* 個人情報の取扱いについて同意エリア */
.concent_area {
    border: 1px solid #eee;
    text-align: center;
}
.concent_area .concent_title {
    border-bottom: 1px solid #eee;
    font-weight: bold;
    padding-bottom: .5rem;
    position: relative;
    text-align: left;
}
.concent_area .concent_detail {
    cursor: pointer;
    background: #fa2c2c;
    color: #fff;
    display: block;
    font-size: 82%;
    font-weight: bold;
    padding: 0 .2rem;
    position: absolute;
    right: 0;
    bottom: .5rem;
    top: 0;
}

/* 個人情報の取り扱いについて iframe */
.concent_area .concent_iframe {
    display: none;
    border: 1px solid #eee;
    border-top: none;
}
.concent_area .concent_iframe, .concent_area .concent_iframe iframe {
    width:100%;
}
.concent_area .concent_while {
    margin-top: 10px;
}
/* 個人情報の取り扱いについて 「同意する」「同意しない」フォントサイズ */
.concent_area .concent_while, .concent_area .concent_button label{
    font-size: 88%;
}

/* 注意事項エリア */
.attention_area .attention_title {
	border-bottom:1px solid #CCC;
	color:#333;
    font-size: 113%;
    font-weight:bold;
	text-align:center;
}
.attention_area li{
    font-size: 88%;
    line-height: 1.6;
	padding-left:1.5em;
	text-indent:-1.2em;
    margin:0 0 1rem 0;
}

#finish_box p.effective {
    text-align:center;
    font-size:14px;
}


@media screen and (max-width: 600px) {

    /* 個人情報の取扱いについて同意エリア */
    .concent_area {
        margin: 5% 3% 8%;
        padding: 3%;
    }

    /* 注意事項エリア */
    .attention_area {
        margin-top: 8%;
    }
    .attention_area .attention_title {
        margin:0 0 5% 0;
        padding: 2% 3%;
    }
}


@media screen and (min-width: 601px) {
    /* 個人情報の取扱いについて同意エリア */
    .concent_area {
        margin: 0 auto;
        padding: 20px;
    }

    /* 注意事項エリア */
    .attention_area {
        margin: 40px 0;
    }
    .attention_area .attention_title {
        margin:0 0 30px 0;
        padding: 20px;
    }

}

/* ここまでフォームに関する記述のみ　＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */



/* ---------------------------------------------------------
   Thanks
--------------------------------------------------------- */

/* 完了画面　＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */

.thanks_area {
    text-align: center;
}

@media screen and (max-width: 600px) {
    .thanks_area {
        margin-top: 8%;
    }
}

@media screen and (min-width: 601px) {
    .thanks_area {
        margin-top: 40px;
    }
}

/* ここまで完了画面　＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */



/* ---------------------------------------------------------
   End
--------------------------------------------------------- */

/* 応募終了画面　＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */

@media screen and (max-width: 600px) {
    .top_area.end {
        margin-top: 13%;
    }
}

@media screen and (min-width: 601px) {
    .top_area.end .top_text {
        font-size: 20px;
    }
}

/* 応募終了画面　＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
































































/* 年末アンケートキャンペーンのみ　TOP下　＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */

/* インフォメーションエリア */
.information_area {
	/* text-align: center; */
	position: relative;
}
#form_area .information_area strong {
    font-weight: bold;
}
#form_area .information_area .information_title {
    font-weight: bold;
}
#form_area .information_area .information_winning {
    font-weight: bold;
    color: #fa2c2c;
}
.information_period {
    background: #fa2c2c;
    border-radius: 3px;
    color: #fff;
    display: inline-block;
    letter-spacing: .15rem;
    font-weight: bold;
}

@media screen and (max-width: 600px) {

    /* インフォメーションエリア */
    #form_area .information_area {
        margin-bottom: 10%;
		padding: 0 3%;
    }
    #form_area .information_area .information_title {
    }
    #form_area .information_area .information_winning {
        font-size: 20px;
        margin: 3% 0;
    }
    .information_period {
        line-height: 1;
        margin: 8% 0 2%;
        padding: .5rem 1rem .8rem;
    }
    .information_caution {
        font-size: 12px;
        line-height: 1.8;
    }
	/* 抽選画面について */
	.column_box {
		display: block;
	}
	.column_box + .column_box {
		margin-top: 10%;
	}
	.column_box .column_left,
	.column_box .column_right {
		width: 100%;
	}
	.column_box .column_right {
		margin-top: 3%;
	}

}

@media screen and (min-width: 601px) {

    /* インフォメーションエリア */
    #form_area .information_area {
        margin-bottom: 40px;
    }
    #form_area .information_area .information_title {
        font-size: 20px;
    }
    #form_area .information_area .information_winning {
        font-size: 26px;
        margin: 15px 0;
    }
    .information_period {
        margin-top: 25px;
        padding: 5px 15px;
    }
    .information_caution {
        font-size: 12px;
	}
	/* 抽選画面について */
	.column_box {
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
	}
	.column_box + .column_box {
		margin-top: 20px;
	}
	.column_box .column_left,
	.column_box .column_right {
		width: 45%;
	}

}



/* 年末アンケートキャンペーンLPのみ　お客様のお声関連　＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */

/* 当選者様のお声はこちら */
#cmt {
	position: absolute;
}
#comment_area #omedeto * {
	box-sizing: border-box;
}
.t_koe:after {
	content: url(../images/spacer.gif);
	display: block;
	clear: both;
}
.t_koe {
	display: inline-block;
	position:relative;
}
.t_koe {
	display: block;
	overflow:hidden;
}
/* おめでとうございます！ */
.t_koe_h {
	overflow:hidden;
	text-indent:-9999px;
}
/* お声中 */
.t_koe_m {
	position: relative;
	float: left;
}
/* お声下 */
.t_koe_b {
	overflow:hidden;
	float: left;
}
/* お声名前 */
.t_name {
	padding-top: 3px;
	color:#333333;
	border-bottom: #FF3300 solid 1px;
}
/* お声日時 */
.t_date {
	font-size:12px;
	text-align:right;
    float:right;
}
/* お声コメント */
.t_cmt {
    font-size: 12px;
    line-height: 1.58;
}
/* お声はがき */
.box_design {
	text-align:center;
	float:right;
}
/* お声はがき画像 */
.t_cmt img {
	border:#CCC solid 1px !important;
}


@media screen and (max-width: 600px) {

	/* 当選者様のお声はこちら */
	#cmt {
		position: absolute;
		right: 3%;
		bottom: 0;
		width: 37%;
	}

	/* お客さまの声 */
	#comment_area #omedeto {
		margin: 8% 0 10%;
		width: 100%;
	}
	.t_koe {
		margin-bottom: 3%;
		width:100%;
	}
	.t_koe {
		margin-left: 5%;
		width: 94%;
	}
	/* おめでとうございます！ */
	.t_koe_h {
		width:96%;
		height:17vw;
		background-image:url(../images/sheet_h.gif);
		background-size: 100%;
		background-repeat:no-repeat;
	}
	/* お声中 */
	.t_koe_m {
		width:96%;
		background-image:url(../images/sheet_m.gif);
		background-size: 100%;
		background-repeat:repeat-y;
		padding: 2%;
		position: relative;
		float: left;
	}
	/* お声下 */
	.t_koe_b {
		width:96%;
		height:6vw;
		background-image:url(../images/sheet_b.gif);
		background-size: 100%;
		background-repeat:no-repeat;
		overflow:hidden;
		float: left;
	}
	/* お声名前 */
	.t_name {
		width: 97%;
		padding-top: 3px;
		float:left;
		font-size:14px;
		margin-bottom: 10px;
	}
	/* お声日時 */
	.t_date {
		font-size:12px;
		text-align:right;
		float:right;
	}
	/* お声コメント */
	.t_cmt {
		width:90%;
	}
	/* お声はがき */
	.box_design {
		margin-left: 5%;
		width:30%;
	}
	/* お声はがき画像 */
	.box_design table {
		width: 100%;
	}
	.t_cmt img {
		width: 100%;
	}
	/* お客さまが選んだデザイン */
	.box_design table td.font10 {
		line-height: 1.2;
		word-break: keep-all;
	}

}

@media screen and (min-width: 601px) {

	/* 当選者様のお声はこちら */
	#cmt {
		position: absolute;
		right: 140px;
		bottom: 60px;
	}

	/* お客さまの声 */
	#comment_area #omedeto {
		margin: 0 auto;
		width: 730px;
		margin-top: 20px;
	}
	.t_koe {
		width:360px;
		margin-bottom:10px;
	}
	.t_koe {
		width:360px;
		padding-left:5px;
		float:left;
	}
	/* おめでとうございます！ */
	.t_koe_h {
		width:360px;
		height:70px;
		background-image:url(../images/sheet_h.gif);
		background-repeat:no-repeat;
	}
	/* お声中 */
	.t_koe_m {
		width:360px;
		min-height:149px;
		background-image:url(../images/sheet_m.gif);
		background-repeat:repeat-y;
		padding: 15px 20px 0 10px;
	}
	/* お声下 */
	.t_koe_b {
		width:360px;
		height:20px;
		background-image:url(../images/sheet_b.gif);
		background-repeat:no-repeat;
	}
	/* お声名前 */
	.t_name {
		width: 330px;
        font-size:16px;
        margin-bottom: 10px;
	}
	/* お声日時 */
	.t_date {
		font-size:12px;
		text-align:right;
		float:right;
	}
	/* お声コメント */
	.t_cmt {
		width:330px;
		clear:both;
	}
	/* お声はがき */
	.box_design {
		width:145px;
	}
}



/* 年末アンケートLPフッター　＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */


.ftag {
    width:1px;
    height:1px;
    overflow:hidden;
    position:absolute;
    top:0;
    left:0;
}

/*** Page Top ボタン ***/
#btn_top {
	display:none;
	line-height:28px;
	text-align:center;
	position:fixed;
	right:10px;
	bottom:30px;
	z-index:1000;
}
#btn_top a {
	padding:0 6px;
	display:inline-block;
	color:#FFF;
    background:#333;
    font-size: 12px;
	opacity:0.7;
	text-decoration:none;
}
#btn_top a span {
	line-height: 1;
	color: #FFF;
}

@media screen and (max-width: 600px) {
	.pagetop {
		margin: 0 3% 0 0;
		text-align: right;
	}
}

@media screen and (min-width: 601px) {
	.pagetop {
		margin: 20px 20px 0 0;
	}
	.pagetop a {
		font-size: 12px;
	}
}


/* ここまで年末アンケートLPフッター　＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
