@charset "utf-8";
/* CSS Document */

/*------------------------------*
 
 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;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}
body {

}
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;
}

/*------------------------------------/*
 
 @common
 
\*------------------------------------*/

html, body {
    margin: 0;
    height: 100%;
    font-family: Avenir , "Open Sans" , "Helvetica Neue" , Helvetica , Arial , Verdana , Roboto , "游ゴシック" , "Yu Gothic" , "游ゴシック体" , "YuGothic" , "ヒラギノ角ゴ Pro W3" , "Hiragino Kaku Gothic Pro" , "Meiryo UI" , "メイリオ" , Meiryo , sans-serif;
    color: #666666;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}


html {
    font-size: 62.5%;/* 16px x 0.625 = 10px(=1rem) */
}

body {
    font-size: 14px;/* IE 8.0 */
    font-size: 1.4rem;/* 14px */
    line-height: 1.3;
}


p {
    margin: 20px 0 0;
    line-height: 2;
    letter-spacing: 2px;
}

@media screen and (max-width: 599px){
    p {
        letter-spacing: normal;
    }
}

hr {
    margin: 0;
    border: 1px solid #dddddd;
}

@media screen and (max-width:768px){
    img {
        width: auto;
        max-width: 100%;
        height: auto;
    }
}

/*================aタグ================*/

a {
    text-decoration: none;
}

a {
    -moz-transition: .5s;
    -webkit-transition: .5s;
    -o-transition: .5s;
    -ms-transition: .5s;
    transition: .5s;
}

a:hover{
    /*opacity: 0.75;
     -moz-opacity: 0.75;
     filter: alpha(opacity=75);*/
    -moz-filter: brightness(150%);
    -webkit-filter: brightness(150%);
    -o-filter: brightness(150%);
    -ms-filter: brightness(150%);
    filter:brightness(150%);
}

/*================hタグ================*/

.hl {
    margin: 0 0 40px;
	font-size: 36px;
	font-size: 3.6rem;
    	font-weight: normal;
	letter-spacing: 8px;
	line-height: 40px;
	text-align: center;
}

@media screen and (max-width:599px){
    .hl {
        margin: 0 0 20px;
        color: #C30D23;
        font-size: 2rem;
        letter-spacing: normal;
        line-height: 1.3;
        border: 1px #C30D23 solid;
        padding: 8px 1% 5px;
    }
}

/* ヘッダーのアイコン画像 */
.hl img {
    vertical-align: top;
    padding: 0 10px 0 0;
}

@media screen and (max-width:599px){
    .hl img {
        display: none;
    }
}

.hl2 {
	margin: 0;
	font-size: 30px;
	font-size: 3rem;
    font-weight: normal;
	letter-spacing: 4px;
	line-height: 30px;
}

@media screen and (max-width:599px){
    .hl2 {
        font-size: 2rem;
        line-height: 1.3;
        letter-spacing: normal;
    }
}

/* ヘッダーのアイコン画像 */
.hl2 img {
    vertical-align: text-top;
    margin: 0 1% 0 0;
}

@media screen and (max-width:599px){
    .hl2 img {
        height: 2.3rem;
    }
}

.hl3 {
    font-size: 20px;
    font-size: 2rem;
}

@media screen and (max-width:599px){
    .hl3 {
        font-size: 1.6rem;
    }
}

.hl4 {
    font-size: 16px;
    font-size: 1.6rem;
    margin: 0 0 10px;
}

/*================テキスト関連================*/

.txt_bl {
    color: #5691CD;
}

.txt_gr {
    color: #72BD70;
}

.txt_pl {
    color: #D0437E;
}

.txt_rd {
    color: #C30D23;
}

.catch {
	font-size: 24px;
	font-size: 2.4rem;
	letter-spacing: 4px;
	line-height: 24px;
	color: #c30d23;
}


@media screen and (max-width:599px){
    .catch {
        font-size: 2rem;
        line-height: 1.3;
        letter-spacing: normal;
    }
}

.subcatch {
    font-size: 16px;
    font-size: 1.6rem;
    letter-spacing: 4px;
    line-height: 1.6;
    color: #c30d23;
}


@media screen and (max-width:599px){
    .subcatch {
        letter-spacing: normal;
    }
}

.attention {
	margin: 10px 0 0 0;
	font-size: 10px;
	font-size: 1rem;
	line-height: 10px;
	color: #999999;
}

/*------------------------------------/*
 
 @layaut
 
\*------------------------------------*/

.right {
    float: right;
}

.left {
    float: left;
}


.right img {
    margin: 0 0 0 20px;
    display: block;
}

.left img {
    margin: 0 20px 0 0;
    display: block;
}

@media screen and (max-width:768px){
    .right img,
    .left img {
        margin: 0 auto;
    }
}

.fixed{
	position: fixed;
	top: 0px;
	z-index: 9999;
}

.flexCont {
    margin: 20px 0 0;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: flex;
    -webkit-align-items: center; /* 縦方向中央揃え（Safari用） */
    align-items: center; /* 縦方向中央揃え */
    -webkit-justify-content: flex-start; /* 横方向中央揃え（Safari用） */
    justify-content: flex-start;
}

@media screen and (max-width:768px){
    #useLeft .flexCont,
    #useRight .flexCont {
        -webkit-justify-content: center; /* 横方向中央揃え（Safari用） */
        justify-content: center;
    }
}

.lineframe {
	border:1px solid #cccccc;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
	-moz-border-radius:6px;
	-webkit-border-radius:6px;
	border-radius:6px;
	padding: 20px;
}

.dotframe {
    border: 2px dotted #999;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
    border-radius: 10px;
    
}

.discList {
    list-style: disc inside;
    padding: 0 0 0 0.3em;
}


/*------------------------------------/*
 
 @Frame
 index.html, ad.html
 
\*------------------------------------*/


#contain {
    margin: 60px auto 0;
    width: 100%;
    min-width: 1280px;
    min-height: 100%;
}

@media screen and (max-width:768px){
    #contain {
        width: 100%;
        min-width:initial;
        min-width: 100%;
    }
}

#headerBg {
	width: 100%;
	background: rgb(255, 255, 255); /* IE 8.0 */
	background: rgba( 255, 255, 255, 0.8 );
    	position: fixed;
    	top: 0;
    	z-index: 9999;
	-moz-box-shadow:0px 3px 3px 0px rgba( 0, 0, 0, 0.3 );
	-webkit-box-shadow:0px 3px 3px 0px rgba( 0, 0, 0, 0.3 );
	box-shadow:0px 3px 3px 0px rgba( 0, 0, 0, 0.3 );
}

#main {
	margin: 0 auto 60px;
	padding: 40px 0 0 0;
	width: 1160px;
	text-align: center;
}

@media screen and (max-width:768px){
    #main {
        margin: 0 5% 40px;
        width: 90%;
    }
}

#howto {
	margin: 0 auto 60px;
	width: 1040px;
    	overflow: hidden;
}

@media screen and (max-width:768px){
    #howto {
        margin: 40px 2%;
        width: 96%;
    }
}

#visualize {
    margin: 60px auto;
    width: 1160px;
}


#others,
#example {
    margin: 60px auto;
    width: 1200px;
}

#add,
#targeting,
#delivery,
#dsp,
#linkArea,
#info,
#faq {
    margin: 60px auto;
    width: 1160px;
    overflow: hidden;
}

@media screen and (max-width:768px){
    #visualize,
    #others,
    #example,
    #add,
    #targeting,
    #delivery,
    #dsp,
    #linkArea,
    #info,
    #faq {
        margin: 40px 5%;
        width: 90%;
        -moz-box-sizing: border-box;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
    }
}


/*------------------------------------/*
 
 @Parts common
  index.html, ad.html
 
\*------------------------------------


/*================ヘッダー================*/

#header_contents {
	margin: 0 auto;
	padding: 10px;
    	overflow: hidden;
    	line-height: 1;
}

@media screen and (max-width:768px){
    header_contents {
        width: 100%;
    }
}

#header_contents .logo {
    margin: 10px;
    float: left;
    line-height: 0;
}

@media screen and (max-width:768px){
    #header_contents .logo {
            margin: 0 auto 10px;
            float: none;
            width: 100%;
            text-align: center;
    }
}

#header_contents .gnav {
    float: left;
}

#header_contents .gnav ul {
	margin: 5px 0 0 0;
    overflow: hidden;
}

@media screen and (max-width:768px){
    #header_contents .gnav{
        float: none;
        width: 100%;
        text-align: center;
    }
}

#header_contents .gnav li {
    display: inline-block;
}

#header_contents .gnav li.spot {
    background: #fdcfd5 none repeat scroll 0 0;
    -moz-border-radius:15px;
    -webkit-border-radius:15px;
    border-radius:15px;
}

#header_contents .gnav li a {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0 13px;
    display: block;
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 30px;
    color: #666;
}

#header_contents .gnav li a:hover {
	text-decoration: underline;
}

@media screen and (max-width:599px){
    #header_contents .gnav li a {
            padding: 4px 6px;
            line-height: 1.3;
    }
}

#header_contents .btnArea {
    float: right;
}

@media screen and (max-width:768px){
    #header_contents .btnArea {
        display: none;
    }
}

#header_contents .btnArea a {
    display: block;
    line-height: 0;
}


/*================ #main メインビジュアル ================*/

#main div {
	margin: 40px 0 0 0;
}

@media screen and (max-width:768px){
    #main div {
        margin: 20px 0 0;
    }
}

@media screen and (max-width:768px){
    #main p {
        text-align: left;
    }
}


/*================フッター================*/


#footer {
	width: 100%;
	background-color: #ffffff;
	font-size: 10px;
	line-height: 10px;
	color: #999999;
}

#footer img {
	margin: 0;
	padding: 10px;
	vertical-align: middle;
}

@media screen and (max-width:768px){
    #footer {
        margin: 0 0 10px;
        text-align: center;
        font-size: 0.8em;
    }
}

@media screen and (max-width:768px){
    #footer img {
        margin: 0 auto;
        display: block;
    }
}


/*------------------------------------/*
 
 @Parts 
  index.html
 
\*------------------------------------
 
 /*================ #howto どんなサービス================*/


@media screen and (max-width:768px){
    #howto .right {
        float: none;
    }
}

#howto h1 {
    margin: 10px 0 0;
    width: 390px;
    font-size: 36px;
    font-size: 3.6rem;
    letter-spacing: 8px;
}

@media screen and (max-width:768px){
    #howto h1 {
        margin: 20px auto;
        width: 100%;
        text-align: center;
    }
}

@media screen and (max-width:599px){
    #howto h1 {
        font-size: 2rem;
        letter-spacing: normal;
    }
}

#howto img {
    margin: 0 0 0 20px;
    float: right;
    display: block;
}

@media screen and (max-width:768px){
    #howto img {
        float: none;
        margin: 0 auto;
    }
}

/*================ #visualize お客様情報の可視化================*/

@media screen and (max-width:768px){
    #visualize {
        text-align: center;
    }
}

@media screen and (max-width:768px){
    #visualize .right,
    #visualize .left {
        float: none;
    }
}

.contents1, .contents2 {
    width: 1160px;
    margin: 0 0 30px;
    overflow: hidden;
}

@media screen and (max-width:768px){
    .contents1, .contents2 {
        margin: 0 auto 40px;
        width: 100%;
        height: auto;
        -moz-box-sizing: border-box;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
    }
}

.contents1 h1, .contents2 h1 {
    margin: 10px 0 0;
    font-size: 30px;
    font-size: 3rem;
    font-weight: normal;
    letter-spacing: 6px;
}

@media screen and (max-width:768px){
    .contents1 h1, .contents2 h1 {
        margin: 20px auto 0;
        width: 100%;
        position: relative;
        top: 0;
        left: 0;
    }
}

@media screen and (max-width:599px){
    .contents1 h1, .contents2 h1 {
        font-size: 2rem;
        text-align: left;
        line-height: 1.3;
        letter-spacing: normal;
    }
}

@media screen and (max-width:768px){
    .contents1 p, .contents2 p {
        margin: 20px auto;
        width: 100%;
        text-align: left;
    }
}


/*================ #others その他機能=================*/

#function {
	height: 660px;
	position: relative;
}

@media screen and (max-width:768px){
    #function {
        height: auto;
    }
}

#function p {
    width: 360px;
    font-size: 16px;
    font-size: 1.6rem;
}

@media screen and (max-width:768px){
    #function p {
        width: 100%;
    }
}

#pc {
	width: 796px;
	height: 660px;
	background: url(../../../../../assets/img/parlour/lp/smt/pc.png) no-repeat left top;
	position: absolute;
	top: 0;
	right: 0;
}

@media screen and (max-width:768px){
    #pc {
        display: none;
    }
}

#screen {
	width: 727px;
	height: 435px;
	margin: 31px 0 0 33px;
}

#descriptionMenu dt {
    width: 320px;
    margin: 20px 0 0 0;
    padding: 10px 20px;
    border: 1px solid #2485d2;
	font-size: 20px;
	font-size: 2rem;
	letter-spacing: 4px;
	color: #2485d2;
    cursor: pointer;
	background:#fff;
}

#descriptionMenu dd{
    width: 320px;
	display:none;
	margin: 0;
    	padding: 20px;
	color: #2485d2;
	line-height: 20px;
	letter-spacing: 3px;
	background:#e5f2fb;
	display: block;
}

@media screen and (max-width:768px){
    #descriptionMenu dt, #descriptionMenu dd {
        width: 100%;
        -moz-box-sizing: border-box;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
    }
}

@media screen and (max-width:599px){
    #descriptionMenu dt, #descriptionMenu dd {
        width: 100%;
        letter-spacing: normal;
    }
}

#function .spImg {
    display: none;
}

@media screen and (max-width:768px){
    #function .spImg {
        display: block;
        margin: 0 auto 20px;
        -moz-box-sizing: border-box;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        text-align: center;
        line-height: 0;
        border: 1px solid #ccc;
    }
}

/*================ #example 活用イメージ ================*/

#use {
	margin: 0 auto;
    overflow: hidden;
}

#useLeft {
    width: 570px;
	padding: 116px 0 0 0;
    background: url(../../../../../assets/img/parlour/lp/smt/01.png) no-repeat top left;
    float: left;
}

#useRight {
    width: 570px;
	padding: 116px 0 0 0;
	background: url(../../../../../assets/img/parlour/lp/smt/02.png) no-repeat top left;
    float: right;
}

@media screen and (max-width:768px){
    #useLeft,
    #useRight {
        width: 100%;
        margin: 20px 0 0;
        padding: 0;
        background-size: 20%;
        float: none;
    }
}

#useCol {
    margin: 60px 0 0;
    padding: 116px 0 0 0;
    background: url(../../../../../assets/img/parlour/lp/smt/03.png) no-repeat top left;
    float: right;
}

@media screen and (max-width:768px){
    #useCol {
        padding: 0;
        background-size: 20%;
    }
}

@media screen and (max-width:768px){
    #use .hl2 {
        padding: 15% 0 0;
    }
}

#use p {
    line-height: 24px;
    letter-spacing: 2px;
    display:block;
    text-align: left;
}

@media screen and (max-width:599px){
    #use p {
        letter-spacing: normal;
    }
}

#useLeft .imgArea .leftCont img,
#useLeft .imgArea .rightCont img {
    width: 240px;
}

@media screen and (max-width:599px){
    #useLeft .imgArea .leftCont img,
    #useLeft .imgArea .rightCont img {
        width: 100%;
    }
}

#example #use .catch {
    margin: 20px 0 0 0;
}


@media screen and (min-width: 600px) and (max-width: 768px) {
    #example #use .catch {
        text-align: center;
    }
}

#example #use .switchImg {
    width: 60px;
    height: 200px;
    background: url(../../../../../assets/img/parlour/lp/smt/c3-3.png) no-repeat center;
}

#example #use .switchImg img {
    display:none;
}

@media screen and (max-width:599px){
    #example #use .switchImg {
        width: auto;
        height: auto;
        background: none;;
    }
}

@media screen and (max-width:599px){
    #example #use .switchImg img {
        display: block;
        margin: 0 auto 10px;
    }
}

#use .detailList {
    text-align: left;
    line-height: 1em;
}

#use .detailList dt {
    margin: 20px 0 10px;
	padding: 5px;
	width: 240px;
	border: 1px solid #dddddd;
}

#use .detailList dt:first-child {
    margin: 0 0 10px;
}

@media screen and (max-width:768px){
    #use .detailList dt {
        width: auto;
        padding: 2%;
        line-height: 1.3;
    }
}

#use .detailList dd {
	margin: 15px 0;
	padding: 0;
}

#use .detailList dd:last-child {
    margin: 15px 0 0;
    padding: 0;
}

#use .imgArea {
    margin: 40px 0 0;
    overflow: hidden;
}


#useRight .imgArea {
    margin: 40px 0 34px;
}

@media screen and (max-width: 599px){
    #useLeft .imgArea,
    #useRight .imgArea {
        margin: 40px 0 0;
        display: block;
    }
}

@media screen and (max-width: 599px){
    #useLeft .imgArea {
        text-align: center;
    }
}

#useLeft .imgArea .caption {
    margin: 0 0 10px;
    text-align: center;
}

#useRight .imgArea .leftCont {
        margin: 0 10px 0 -88px;
}

@media screen and (max-width: 599px){
    #useRight .imgArea .leftCont {
        margin: 0 0 20px ;
        text-align: center;
    }
}



/*------------------------------------/*
 
 @form 
  index.html, ad.html
 
\*------------------------------------*/




#formBg {
	width: 100%;
    background-image: url(../../../../../assets/img/parlour/lp/smt/bg_form.gif);
	background-repeat: repeat;
}

#form {
	margin: 0 auto;
	padding: 60px 0;
	width: 1160px;
}

@media screen and (max-width:768px){
    #form {
        width: 90%;
        padding: 40px 0;
        -moz-box-sizing: border-box;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
    }
}



#form .hl {
    line-height: 1.6;
}

@media screen and (max-width:768px){
    #form .hl {
        font-size: 2rem;
    }
}

@media screen and (max-width:599px){
    #form .hl {
        margin: 0;
        color: #666;
        border: none;
        padding: 0;
    }
}


#form .caption {
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 24px;
    text-align: center;
}

#form p {
    font-size: 16px;
    font-size: 1.6rem;
}

@media screen and (max-width:768px){
    #form p {
        font-size: 1.6rem;
        line-height: 1.3;
    }
}

@media screen and (max-width:599px){
    #form .hl,
    #form .caption,
    #form p {
        text-align: left;
    }
}

#formArea {
	margin: 0 auto;
	padding: 0;
	width: 640px;
}

@media screen and (max-width:768px){
    #formArea {
        width: 100%;
    }
}

#form .msg {
	margin: 0 auto;
	padding: 40px 0 60px 0;
	width: 640px;
	font-size: 14px;
	line-height: 24px;
	letter-spacing: 2px;
	text-align: center;
	
}

.must {
	font-size: 10px;
	vertical-align: middle;
	color: #fff;
	padding: 2px;
	background-color: #e25966;
	border:solid 1px #e25966;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	border-radius: 3px;
}

.alert {
	font-size: 16px;
	font-weight: bold;
	vertical-align: middle;
	color: #e25966;
	padding: 2px;
}

input[type="text"] {
	margin: 0;
	padding: 5px;
	width: 640px;
	height: 20px;
	border:solid 1px #ccc;
	-moz-border-radius:4px;
	-webkit-border-radius:4px;
	border-radius:4px;
}

@media screen and (max-width:768px){
    input[type="text"] {
	width: 100%;
    margin: 5px 0 0;
	padding: 5px 0;
    display: block;
    }
}

input[type="radio"] {
	margin: 20px 0 0 20px;
	padding: 5px;
}



textarea {
	margin: 0 0 0 10px;
	padding: 5px 0 0 5px;
	width: 220px;
	height: 20px;
	resize: none;
	vertical-align: middle;
	border:solid 1px #ccc;
	-moz-border-radius:4px;
	-webkit-border-radius:4px;
	border-radius:4px;
}

/*================要件================*/

select {
    -webkit-appearance: button;
    -moz-appearance: button;
    appearance: button;
    text-indent: 5px;
    background:#fff url(../../../../../assets/img/parlour/lp/smt/form_arrow.png) no-repeat;
    background-size:24px 16px;
    background-position: right center;
    width: 200px;
	height: 30px;
    line-height: 30px;
    font-size: 16px;
    vertical-align: middle;
    margin: 0;
	padding: 0;
	border:solid 1px #ccc;
	-moz-border-radius:4px;
	-webkit-border-radius:4px;
	border-radius:4px;
}
@-moz-document url-prefix() { /* for firefox */
    select {
        background:none;
        background-color: #fff;
    }
}

/*================個人情報のチェックボックス================*/

.agree {
    text-align: center;
}

input[type="checkbox"] {
	display: none;
}

label {
	position: relative;
	display: inline-block;
	padding: 3px 3px 3px 22px;
	cursor: pointer;
	-webkit-transition: all .2s;
	transition: all .2s;
}
label::before,
label::after {
	position: absolute;
	content: '';
	-webkit-transition: all .2s;
	transition: all .2s;
}
label::before {
	top: 50%;
	left: 0;
	width: 14px;
	height: 14px;
	margin-top: -8px;
	background: #f4f4f4;
	border: 1px solid #ccc;
	border-radius: 3px;
}
label::after {
	opacity: 0;
	top: 50%;
	left: 3px;
	width: 8px;
	height: 4px;
	margin-top: -4px;
	border-left: 2px solid #3498db;
	border-bottom: 2px solid #3498db;
	-webkit-transform: rotate(-45deg) scale(.5);
	transform: rotate(-45deg) scale(.5);
}
label:hover::before {
	background: #fff;
}
input[type="checkbox"]:checked + label::before {
	background: #fff;
	border: 1px solid #3498db;
}
input[type="checkbox"]:checked + label::after {
	opacity: 1;
	-webkit-transform: rotate(-45deg) scale(1);
	transform: rotate(-45deg) scale(1);
}

/*================確認・送信================*/

.btnGo {
	display: block;
	width: 360px;
	height: 60px;
	margin: 0 auto;
	padding: 0;
	background:#1667B3 url(../../../../../assets/img/parlour/lp/smt/icon_go.png) no-repeat;
	background-position: center right;
    background-size:44px 24px;
	width: 360px;
	height: 60px;
    line-height: 60px;
	letter-spacing: 20px;
    font-size: 24px;
	color: #fff;
	border: none;
	-moz-border-radius:6px;
	-webkit-border-radius:6px;
	border-radius:6px;
	cursor: pointer;
	outline: none;
	-moz-transition: .2s;
    -webkit-transition: .2s;
    -o-transition: .2s;
    -ms-transition: .2s;
    transition: .2s;
}

@media screen and (max-width:768px){
    .btnGo {
        width: 80%;
    }
}

.btnGo:hover {
	-moz-filter: brightness(150%);
    -webkit-filter: brightness(150%);
    -o-filter: brightness(150%);
    -ms-filter: brightness(150%);
    filter:brightness(150%);
}

.btnGo:active {
	-moz-filter: brightness(200%);
    -webkit-filter: brightness(200%);
    -o-filter: brightness(200%);
    -ms-filter: brightness(200%);
    filter:brightness(200%);
}

/*================戻る================*/

.btnBack {
	display: block;
	width: 360px;
	height: 60px;
	margin: 0 auto;
	padding: 0;
	background:#1667B3 url(../../../../../assets/img/parlour/lp/smt/icon_back.png) no-repeat;
	background-position: center left;
    background-size:44px 24px;
	width: 360px;
	height: 60px;
    line-height: 60px;
	letter-spacing: 20px;
	text-align: center;
    font-size: 24px;
	color: #fff;
	border: none;
	-moz-border-radius:6px;
	-webkit-border-radius:6px;
	border-radius:6px;
	cursor: pointer;
	outline: none;
	-moz-transition: .2s;
    -webkit-transition: .2s;
    -o-transition: .2s;
    -ms-transition: .2s;
    transition: .2s;
}

.btnBack:hover {
	-moz-filter: brightness(150%);
    -webkit-filter: brightness(150%);
    -o-filter: brightness(150%);
    -ms-filter: brightness(150%);
    filter:brightness(150%);
}

.btnBack:active {
	-moz-filter: brightness(200%);
    -webkit-filter: brightness(200%);
    -o-filter: brightness(200%);
    -ms-filter: brightness(200%);
    filter:brightness(200%);
}

/*================連絡先================*/

#information {
    margin: 60px 0 0;
    text-align: center;">
}

#information p {
    margin: 0 0 5px;
    font-size: 24px;
    color: #1667B3;
}

@media screen and (max-width:768px){
    #information p {
        font-size: 1.6em;
    }
}

/*================ページTOPへ戻る================*/

#to_top {
    position:fixed;
    bottom: 0;
    right: 0;
	margin:10px;
}

#to_top a {
	width: 26px;
    height: 26px;
	text-decoration: none;
    -webkit-transition: 1s;
    -moz-transition: 1s;
    transition: 1s;
}

#to_top a:hover span {
    background-color: #eeeeee;
}

#to_top span {
    width: 26px;
    height: 26px;
    display: block;
    padding: 13px;
    background: rgba(150, 150, 150, 0.3) ;
    /* rounded corners */
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
}


/*------------------------------------/*
 
 @Parts 
  ad.html
 
\*------------------------------------*/

/*================ #add 来店集計================*/

@media screen and (min-width:600px){
    #add p {
        text-align: center;
    }
}

#add .flexCont {
    width: 1020px;
    margin: 20px auto 0;
}

@media screen and (max-width:768px){
    #add .flexCont {
        display: block;
        width: 100%;
    }
}

#add .flexCont .switchImg {
    width: 217px;
    height: 229px;
    background: url(../../../../../assets/img/parlour/lp/smt/ad_c1-8.png) no-repeat center;
    
}

#add .flexCont .switchImg img {
    display:none;
}

@media screen and (max-width:768px){
    #add .flexCont .switchImg {
        width: auto;
        height: auto;
        background: none;
    }
}

@media screen and (max-width:768px){
    #add .flexCont .switchImg img {
        display: block;
        margin: 0 auto;
        width: 60%;
    }
}

@media screen and (max-width:768px){
    #add .rightCont {
        text-align: center;
    }
}

/*================ #targeting 来店集計================*/

.contLeft, .contRight {
    width: 560px;
    float: left;
}

.contLeft {
    margin: 0 40px 0 0;
}

@media screen and (max-width:768px){
    .contLeft, .contRight {
        float: none;
        width: 100%;
        margin: 0;
    }
}
.target {
    margin: 0 0 40px;
    text-align: center;
}

@media screen and (max-width:768px){
    .target {
        margin: 0 0 20px;
    }
}

@media screen and (max-width:768px){
    .contRight .target {
        margin: 20px 0;
    }
}

.target .hl3 {
    margin: 10px;
    padding: 10px;
    background: #CEE7F6;
    text-align: center;
}

.target p {
    font-size: 1rem;
    font-size: 1.6rem;
    margin: 0 20px 10px;
    line-height: 1.3;
}

.extraction {
    overflow: hidden;
}

.extraction .imgArea {
    text-align: center;
    
}

.extraction p {
    overflow: hidden;
}

@media screen and (max-width:768px){
    .extraction p {
        margin: 20px 0 0;
    }
}

@media screen and (max-width:768px){
    .extraction .left {
        float: none;
        
    }
}

.extraction .subcatch {
    margin: 0 0 20px;
}


/*================ #delivery 広告配信の流れ================*/


@media screen and (max-width:768px){
    #delivery .flexCont {
        display: block;
    }
}

@media screen and (max-width:768px){
    #delivery .flexCont .leftCont {
        text-align: center;
        
    }
}

#delivery .flexCont .switchImg {
    width: 110px;
    height: 260px;
    background: url(../../../../../assets/img/parlour/lp/smt/arrow_right.png) no-repeat center;
    
}

#delivery .flexCont .switchImg img {
    display:none;
}

@media screen and (max-width:768px){
    #delivery .flexCont .switchImg {
        width: auto;
        height: auto;
        background: none;
    }
}

@media screen and (max-width:768px){
    #delivery .flexCont .switchImg img {
        display: block;
        margin: 0 auto;
    }
}



#delivery .flexCont .rightCont {
    width: 500px;
    overflow:hidden;
}

@media screen and (max-width:768px){
    #delivery .flexCont .rightCont {
        width: 100%;
        
    }
}

#delivery .dotframe {
    padding: 20px;
}

@media screen and (max-width:768px){
    #delivery .rightCont img {
        margin: 0 0 0 5%;
    }
}

/*================ #dsp DSPとは？================*/

.dspFlow .imgArea {
    margin: 20px 0 0;
    line-height: 0;
}


#dsp .description {
    padding: 20px;
    width: 60%;
    text-align: center;
    margin: 0 auto 40px;
}

@media screen and (max-width:768px){
    #dsp .description {
        width: 100%;
    }
}

@media screen and (max-width:599px){
    #dsp .description p {
        text-align: left;
    }
}


#dsp .dspFlow .hl2 {
    padding: 2px 10px;
    background: #666;
    color: #fff;
    font-size: 16px;
    font-size: 1.6rem;
}

#dsp .dspFlow .imgArea {
    text-align: center;
}


#dsp .dspFlow .point {
    margin: 20px 0 0;
    padding: 20px;
}

@media screen and (max-width:768px){
    #dsp .dspFlow .point {
        padding: 20px 2%;
    }
}

#dsp .dspFlow .point li {
    line-height: 1.3;
    list-style: outside disc;
    margin: 0 0 1rem 20px;
}

#dsp .dspFlow .point li:last-child {
    margin: 0 0 0 20px;
}


#dsp .dspFlow .contLeft {
    width: 420px;
}

#dsp .dspFlow .contRight {
    width: 700px;
    color: #C30D23;
}

@media screen and (max-width:768px){
    #dsp .dspFlow .contLeft,
    #dsp .dspFlow .contRight {
        width: 100%;
    }
}

@media screen and (max-width:768px){
    #dsp .dspFlow .contRight {
        margin: 40px 0 0;
    }
}


#dsp .dspFlow .contRight .hl2 {
    background: #C30D23;
}

#dsp .dspFlow .contRight .dotframe {
    border: 2px dotted #C30D23;
}

/*================ #linkArea ================*/


.btnSmp,
.btnAd {
    display: block;
    width: 60%;
    margin: 0 auto;
    padding: 20px;
    border: 4px solid #C30D23;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -moz-border-radius:6px;
    -webkit-border-radius:6px;
    border-radius:6px;
    cursor: pointer;
    -moz-transition: .2s;
    -webkit-transition: .2s;
    -o-transition: .2s;
    -ms-transition: .2s;
    transition: .2s;
    text-align: center;
    font-size: 20px;
    font-size: 2.4rem;
    letter-spacing: 8px;
}

.btnSmp {
    background:#fff url(../../../../../assets/img/parlour/lp/smt/icon_smp.png) no-repeat 98% center;
    color: #C30D23;
}

.btnAd {
    background:#C30D23 url(../../../../../assets/img/parlour/lp/smt/icon_ad.png) no-repeat 98% center;
    color: #fff;
}

@media screen and (max-width:768px){
    .btnSmp,
    .btnAd {
        width: 100%;
        letter-spacing: 0;
        font-size: 1.6rem;
        padding: 10px 30px 10px 2%;
        text-align:left;
    }
}

.btnSmp:hover,
.btnAd:hover {
    -moz-filter: brightness(150%);
    -webkit-filter: brightness(150%);
    -o-filter: brightness(150%);
    -ms-filter: brightness(150%);
    filter:brightness(150%);
}

.btnGo:active,
.btnGo:hover {
    -moz-filter: brightness(200%);
    -webkit-filter: brightness(200%);
    -o-filter: brightness(200%);
    -ms-filter: brightness(200%);
    filter:brightness(200%);
}

/*================ #info 注意書き ================*/

.cost {
    margin: 0 0 60px;
}

@media screen and (max-width:768px){
    .cost {
        margin: 0 0 40px;
    }
}

.caution {
    padding: 30px;
    background: #C30D23;
    color: #fff;
}

@media screen and (max-width:599px){
    .caution {
        padding: 5%;
    }
}

.caution .hl2 {
    text-align: center;
}

.caution p {
    font-size: 16px;
    font-size: 1.6rem;
}

@media screen and (max-width:599px){
    .caution p {
        font-size: 14px;
        font-size: 1.4rem;
        line-height: 1.6;
    }
}

/*------------------------------------/*
 
 @Parts
 faq.html
 
 \*------------------------------------*/

/*================ #main メイン================*/

.faqs #main .hl {
    margin: 20px 0 0;
}

.faqs #main .hl .sub {
    display: block;
    font-size: 2rem;
}

@media screen and (max-width:599px){
    .faqs #main .hl .sub {
        display: inline;
        padding: 0 0 0 10px;
    }
}


/*================ #tabs タブメニュー================*/
#tabs {
    border-bottom: 1px solid #C30D22;
    margin: 0 0 40px;
}

.tabsMenu {
    width: 1000px;
    margin: 0 auto;
    overflow: hidden;
}

@media screen and (max-width:768px){
    .tabsMenu {
        width: 90%;
        display: -webkit-flex;
        display: -moz-flex;
        display: -ms-flex;
        display: flex;
    }
}

.tabsMenu li {
    display: block;
    width: 480px;
    float: left;
    margin: 0 10px;
    padding: 10px;
    background: #fff;
    border-top: 1px solid #C30D22;
    border-left: 1px solid #C30D22;
    border-right: 1px solid #C30D22;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -moz-border-radius: 6px 6px 0 0;
    -webkit-border-radius: 6px 6px 0 0;
    border-radius: 6px 6px 0 0;
    color:#C30D22;
    font-size: 2rem;
    text-align: center;
    cursor: pointer;
}

@media screen and (max-width:768px){
    .tabsMenu li {
        width: 48%;
        margin: 0 1%;
        padding: 14px 1%;
        font-size: 1.6rem;
    }
}

@media screen and (max-width: 599px){
    .tabsMenu li {
        width: 48%;
        margin: 0 1%;
        padding: 4px 4%;
        font-size: 1.6rem;
    }
}

.tabsMenu li.active,
.tabsMenu li:hover {
    background: #C30D22;
    border-top: 1px solid #C30D22;
    border-left: 1px solid #C30D22;
    border-right: 1px solid #C30D22;
    color: #fff;
}


/*================ #FAQ タブコンテンツ================*/

#tabContent div {
    display: none;
}

#tabContent div.active {
    display: block;
}

.faqCategory {
    width: 960px;
    margin: 10px auto;
    overflow: hidden;
    text-align: center;
    font-size: 1.6rem;
    letter-spacing: 4px;
}

@media screen and (max-width:768px){
    .faqCategory {
        width: 100%;
        font-size: 1.4rem;
        letter-spacing: 0;
    }
}

.faqCategory a {
    color: #2485d2;
    background: url(../../../../../assets/img/parlour/lp/smt/icon_faq.png) no-repeat left center;
    padding: 0 0 0 20px;
}

#faq .hl2 {
    text-align: center;
}

#faq .hl3 {
    margin: 0 auto 40px;
    padding: 10px 20px;
}

@media screen and (max-width:768px){
    #faq .hl3 {
        margin: 20px auto;
        padding: 6px 2%;
    }
}

.QAlist {
    padding: 0 0 20px;
}

.QAlist > dt,
.QAlist > dd {
    line-height: 1.6;
    position:relative;
    cursor: pointer;
    
}

.QAlist > dt {
    margin: 0 0 30px 50px;
    padding: 0 20px 0 0;
    border-bottom: 1px dashed #ccc;
    background: url(../../../../../assets/img/parlour/lp/smt/icon_arrow_up.png) no-repeat 98% center;
    font-size: 2rem;
}

@media screen and (max-width:768px){
    .QAlist > dt {
        font-size: 1.4rem;
        font-weight: bold;
    }
}

.QAlist > dt.close {
    background: url(../../../../../assets/img/parlour/lp/smt/icon_arrow_down.png) no-repeat 98% center;
}

.QAlist > dt.active {
    background: url(../../../../../assets/img/parlour/lp/smt/icon_arrow_up.png) no-repeat 98% center;
}

.QAlist > dd {
    margin: 0 0 60px 50px;
}

.QAlist > dd:last-child {
    margin: 0 0 30px 50px;
}

.QAlist > dt::before,
.QAlist > dd::before {
    margin: -20px 10px 0 -50px;
    position: absolute;
    top: 50%;
}

.QAlist > dt::before {
    content: url(../../../../../assets/img/parlour/lp/smt/icon_q.png);
}

.QAlist > dd::before {
    content: url(../../../../../assets/img/parlour/lp/smt/icon_a.png);
}

@media screen and (max-width:599px){
    .QAlist > dd::before {
        top: 20px;
    }
}

/*--------------------END-----------------------*/