/* 【スマートフォン対応CSS】 */

@charset "UTF-8";

/* 480px以下の場合に当スタイルシート適用 */
@media only screen and (max-width:480px){


/*---------------------------【ページ共通設定】---*/

body {
    font-family:"メイリオ" , Meiryo ,Avenir , "Open Sans" , "Helvetica Neue" , Helvetica , Arial , Verdana , Roboto , "游ゴシック" , "Yu Gothic" , "游ゴシック体" , "YuGothic" , "ヒラギノ角ゴ Pro W3" , "Hiragino Kaku Gothic Pro" ,   "ＭＳ Ｐゴシック" , "Meiryo UI" ,"MS PGothic" , sans-serif;
    background-color:#fcfffe; /* 背景色の設定 */
    line-height: 1.5;         /* 行間の設定 */
}



/*-----------------------------【ヘッダ設定】---*/

#top{
    width:100%;
    background-color:#3BA797;
}


#header {
    clear:both;
    height:auto;
    width:100%;
    text-align: center;
    margin: 0 auto;

}

/* ヘッダ内の中央寄せ用 */
#head-box{
    margin: 0 auto;
    width:100%;
}


/* ロゴ */
#header img {
  float:none;
  margin:10px;
}


/* タイトル */
#header h1 {
  float:none;
  margin:10px;
  font-size: 1.2em;
  line-height: 40px;
}

/* サービス名表示 */
#serviceName {
    clear:both;
    font-size: 1.0rem;
    margin: 0 auto;
    width:100%;
    text-align:center;    /* 内容を中央寄せ */
    padding: 10px 0px 10px 0px;
}

/* 空間調整 */
.clearBoth {
    clear: both;
}

/*---------------------------【ぱんくず設定】---*/

/* ぱんくず共通 */
#bread-crumb {
    margin: 0 auto;
    width:100%;
    height:auto;
    padding:5px;
    text-align:center;    /* 内容を中央寄せ */
    color:#fff;
}


#bread-crumb-none {
    height:0px;
}


/*----------------------------【エリア設定】---*/


/* メインエリア */
#mainArea {
    margin: 0 auto;     /* 中央揃え */
    margin-bottom:10px;
    padding:10px;
    height:auto;
    width:90%;
}


/* ボタン配置用エリア（内容中央寄せ） */
#buttonArea {
    margin: 0 auto;     /* 中央揃え */
    margin-bottom:10px;
    padding:10px;
    height:auto;
    width:80%;
    text-align:center;    /* 内容を中央寄せ */
}





/*------------------------------【ボックス設定】---*/

.inBox{
    margin: 0 auto;
    margin-top:5px;
    padding:5px;
    width: 90%;
    border-bottom:1px solid #868686;
    background-color:#FFF;
}

.inBox-skeleton{
    margin: 0 auto;
    margin-top:5px;
    width: 90%;
    text-align:center;    /* 内容を中央寄せ */
}

.flowBox{
    margin: 0 auto;
    margin-top:5px;
    padding:10px;
    width: 90%;
    background-color:#f9d9a0;
}

.centerBox{
    margin: 0 auto;
    width: 100%;
    text-align:center;    /* 内容を中央寄せ */
    }



/*-----------------------------【フッター設定】---*/

#foot-logo {
    margin-top:40px;
    text-align: center;     /* 左右中央 */
    whidth:100%;
}

#foot {
    width:100%;
    background-color:#3BA797;
    text-align: center;
    vertical-align:middle;
}



/*--------------------------【テーブル設定】---*/

table {
    margin:20px 0px 40px 0px;
    width: 100%;
}

th, td {
    width: 80%;
    margin:5px;
    padding: 5px;
    text-align:left;
    vertical-align:middle;
    display: block;
    float: left; /* IE用 */
    border: 0px dashed #dcdcdc;
}

th:before{
    content:"\FFA0";
    color:#3BA797;
    padding-right:5px;
}


th{
    border-top: 1px dashed #868686;
}


/*--------------------------------【ボタン設定】---*/


/* サブミットボタン(buttonType) */
button#submit_button {
    margin: 5px 20px;
    padding: 10px 20px;
    width: 200px;
    color: #fff;
    background: linear-gradient(to right, #f3aa27, #efc378 150%);
    border-style: none;
}

/* サブミットボタン(オンマウス時処理) */
button#submit_button:hover {
    background: #efc378;
}





/*-------------------------------【その他設定】---*/

/* 見出し */
p.headline {
    margin:10px 0px;
    padding:10px;
    /*border-bottom:1px solid #3BA797;
    border-left:10px solid #3BA797;*/
}

/* テキストエリア */
.textArea {
    margin-bottom:5px;
    width:90%;
}

/* 赤文字 */
.c-red {
    color: #ff0000;
}

/* 太字 */
.bold {
    font-weight:bold;
}

/* コピーライト文字設定 */
p.copyRight{
    color:#FFFFFF;
    font-size:0.6rem;
    line-height: 20px;    //フッタ要素の高さと同じ高さを指定
}

/* 表示・非表示切り替え */
.mode-pc{
    display: none;
}

.mode-sp{
    margin: 0 auto;
    padding-top:10px;
    text-align:center;    /* 内容を中央寄せ */
    vertical-align: middle;    /* 上下中央 */
    display: block;
    width:80%;
    height:30px;
    background: transparent url("../img/bk.png") no-repeat scroll center;
}

.mode-sp-button {
    display: block;
}


/* SP独自 */
.text-br{
    display: block;
}

/* フォントサイズ1.5em */
.fontSize1_5 {
    font-size:1.5em;
}

