﻿@charset "utf-8";
/* ----------------------------------------------------------------------------------
  初期設定はあまり触ることをおすすめしません
  数行下にあるカスタマイズ領域から編集可能となっております
  @media screen and (max-width: 798px)と
  @media screen and (max-width: 480px)は
  タブレットとスマートフォン用の設定です
  スマートフォンでは通常の文字が小さく見えるので、大きめに設定しています
---------------------------------------------------------------------------------- */

/* ********************************************************* */
/* 初期設定 */
/* ********************************************************* */
* {
    margin: 0;
    padding: 0;
    font-weight: 400;
    font-style: normal;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    word-break: break-all;
    vertical-align: baseline;
}

html,body {
    width: 100%;
    font-size: 100%;
    font-family: 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic ProN', 'Osaka', 'メイリオ', 'Meiryo', 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
    text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    margin: 0 auto;
    padding: 0;
    color: #523400;
    letter-spacing: .06em;
}

img {
    border: none;
    max-width: 100%;
    height: auto;
    -ms-interpolation-mode: bicubic;
}

li {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    margin: 0;
    padding: 0;
    border: 0;
    font-style: normal;
    font-weight: normal;
    font-size: 100%;
    vertical-align: baseline;
}

.clear {
    clear: both;
}


.tappu_menu {/* スマホメニュー用 消さないでください */
    display: none;
}


/* ↓↓ カスタマイズ領域開始 ↓↓
/* ********************************************************* */
/* 共通デザイン　1/4　背景色、リンク色、ハイライト色
/* ********************************************************* */
/*------------------------------------------------------------
 背景色
------------------------------------------------------------ */
body {
    background: #ffeaea;
}

/*------------------------------------------------------------
 全体のリンク色
------------------------------------------------------------ */
a:link,a:visited,a:active {
    color: #e73562;/*リンクが貼ってある文字の色 */
    text-decoration: none;
}

a:hover {
    color: #9f166a;/*リンクが貼ってある文字の上にマウスを乗せたときの色 */
    text-decoration: none;
}

/*------------------------------------------------------------
 ハイライト色
 文章をマウスでハイライトしたときの文字色と背景色
 両方揃える
------------------------------------------------------------ */
::selection {
    background: #444;
    color: #eee;
}

::-moz-selection {
    background: #444;
    color: #eee;
}


/* ********************************************************* */
/* 共通デザイン 2/4　フォームレイアウト・デザイン
/* ********************************************************* */
/*------------------------------------------------------------
 フォームの幅と装飾
------------------------------------------------------------ */
form {
    padding: 0;
    margin: 0 auto;
    line-height: 160%;
}

textarea,input[type=text],input[type=reset],input[type=submit],input[type=button],button,select {
    font-family: 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic ProN', 'Osaka', 'メイリオ', 'Meiryo', 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
    margin: 0.125em;
    padding: 3px .313em;
    clear: both;
    display: inline;
    outline: none;
    font-size: .9em;
    background: #fff;
    color: #523400;
    border: 0;
    border-radius: 5px;
}

textarea,input[type=text],input[type=reset],input[type=submit],input[type=button],button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

input[type=reset],input[type=submit],input[type=button],button,select {
    cursor: pointer;
}

textarea {
    width: 70%;
    height: 100px;
}

input[type=text] {
    width: 35%;
}




/*------------------------------------------------------------
 名前変換フォームの幅と装飾
------------------------------------------------------------ */
.design input[type=text] {
    width: 110px;
    margin: 3px 0;
}

.design input[type=button] {
    padding: 3px 15px;
    margin: 3px 0;
}

.design .submit {
    display: inline-block;
}

/*------------------------------------------------------------
 FC2やshinobiからレンタルしたフォームの装飾 削除可
------------------------------------------------------------ */
/*↓fc2メールフォーム用 要らなければ削除可↓ */
#fc2form #coution2 {
    color: #C1443C !important;
    font-family: Verdana;
}

#fc2form .submit .button {
    width: 65px;
}
/*↑fc2メールフォーム用 要らなければ削除可↑ */

/*↓shinobiメールフォーム用 要らなければ削除可↓ */
#shinobi_jp_text {
    width: 100% !important;
}

#default_top input {
    font-size: 1em !important;
}

#default_top br {
    display: none;
}
/*↑shinobiメールフォーム用 要らなければ削除可↑ */


/*------------------------------------------------------------
 フォームに書かれてある初期名詞などの文字色。すべて同じ色で揃える
------------------------------------------------------------ */
::-webkit-input-placeholder {
    color: silver;
}

::-moz-placeholder {
    color: silver;
}

input:-ms-input-placeholder {
    color: silver;
}






/* ********************************************************* */
/* 共通デザイン 3/4　ヘッダー、メニュー、トップ画像レイアウト
/* ********************************************************* */
/*------------------------------------------------------------
 ヘッダー枠とサイト名の装飾
------------------------------------------------------------ */
header {
    width: 100%;
    padding: 15px 3px;
    margin: 10px 0;
}

h1 {/*サイト名 文字の大きさなど*/
    float: left;
    font-size: 1.1em;
    line-height: 160%;
    width: 30%;
}


/*------------------------------------------------------------
 メニューレイアウト
------------------------------------------------------------ */
#menu {
    float: right;
    line-height: 160%;
}

#menu li {
    float: left;
    font-size: .9em;
    text-align: center;
    padding: 2px 4px 0 4px;
}

#menu ul li {
    float: none;
    text-align: left;
}

#menu ul {
    display: none;
    width: auto;
    position: absolute;
    background: #ffeaea;
}

#menu li a:link,#menu li a:visited,#menu li a:active,#menu .mega {/* メニューのリンクレイアウト マウスが当たっていない時*/
    padding: 2px 4px 0 4px;
    border-top: 2px solid transparent;
    cursor:pointer; 
}

#menu li a:hover,#menu .mega:hover {/* メニューのリンクレイアウト マウスが当たっている時*/
    border-top: 2px solid #e73562; 
}


/*------------------------------------------------------------
 トップ画像レイアウト
------------------------------------------------------------ */
#image {
    margin: 0 auto;
}

#image img {
    max-height: 100%;
    max-width: 100%;
    border: 0px #808000 solid;
    margin: 0 auto;
}



/* ********************************************************* */
/* 共通デザイン 4/4　主に使われている枠とメイン見出し　小説ページ抜き
/* ********************************************************* */
/*------------------------------------------------------------
 主に使われている枠
------------------------------------------------------------ */
#main {
    max-width: 770px;/* サイトの横幅 */
    min-height: 100%;
    margin: 0 auto;
    padding: 0;
}

.kakoi {/* 内容が書かれてある部分の枠 */
    margin: 5px 20px 40px 20px;
    font-size: .9em;
    padding: 10px 0 10px 15px;
    line-height: 160%;
}

.kakoi.blue{/*左側の線 青*/
    border-left: 3px #47A396 solid;
}

.kakoi.brown {/*左側の線 茶色*/
    border-left: 3px #523400 solid;
}

.kakoi.red {/*左側の線 赤*/
    border-left: 3px #C1443C solid;
}

.divide {/* 枠を二分割する */
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
}

.hako {/* 枠を二分割する */
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    width: 50%;
}

/*------------------------------------------------------------
 トップなどで多用されている見出し
------------------------------------------------------------ */
h3 {
    font-size: .9em;
    padding: 5px 10px;
    border-radius: 5px 5px 5px 5px;
    color: #fff;/*文字の色 */
    letter-spacing: 8px;
    font-weight: bold;/*太文字指定*/
    margin: 3px 0;
}

h3.brown{/* 茶色 */ 
    background: #523400;
}

h3.red {/* 赤 */ 
    background: #C1443C;
}

h3.blue {/* 青 */ 
    background: #47A396;
}




/* ********************************************************* */
/* 更新履歴・メイン目次・連載個別目次レイアウト
/* ********************************************************* */
/*------------------------------------------------------------
 更新履歴レイアウト
------------------------------------------------------------ */
.update {
    height: 150px;
    line-height: 150%;
    overflow: auto;
    width: auto;
    -webkit-overflow-scrolling: touch;
}

.date {
    display: inline-block;
    padding: 0 10px 0 0;
}


/*------------------------------------------------------------
 メイン目次レイアウト
------------------------------------------------------------ */
h4 {/* 相手の名の見出し */
    margin: 0;
    padding: 0;
}

h5 {/* 作品の長さの見出し 短編・中編・長編 */
    margin: 0 0 0 22px;
    padding: 0;
    font-size: .9em;
}

.rensai {/* 連載リスト */
    margin: 0 0 0 34px;
}

.rensai a:link {
    word-break: break-all;
    display: inline-block;
}

.rensai a:link img{
    width:100%;
}

.tanpen {/* 短編リスト */
    margin: 0 0 0 34px;
}

.tanpen li {
    word-break: keep-all;
    display: inline-block;
}

.tate {/* 目次・縦表示 */
    margin: 0 5px 10px 20px;
}

.shousai {/* 夢小説の詳細を表示する文字 .8em以上にする場合vertical-align:top;を削除 */
    font-size: .8em;/*文字の大きさ*/
    color: #a78764;/*文字の色*/
    vertical-align: top;
}


/*------------------------------------------------------------
 連載/長編個別目次レイアウト
------------------------------------------------------------ */
.chapter {
    margin: 0 0 0 10px;
    padding: 0;
}

.serial {
    margin: 0 0 0 20px;
}

.serial li {
    display: inline-block;
    margin: 0 10px 0 0;
}


/* ********************************************************* */
/* 小説ページレイアウト
/* ********************************************************* */
/*------------------------------------------------------------
 小説ページのタイトル見出し
------------------------------------------------------------ */
h2 {
    font-size: 1.4em;
}

h2.brown {/*茶色*/
    color: #523400;
}

h2.red {/*赤*/
    color: #C1443C;
}

h2.blue {/*青*/
    color: #47A396;
}

h2.orange {/*オレンジ*/
    color: #ffa500;
}
/*------------------------------------------------------------
 小説ページ枠
------------------------------------------------------------ */
#box {
    margin: 0;
}

#box2 {
    margin: 0 auto;
    padding: 30px 15px 0 15px;
    max-width: 680px;/*枠の最大横幅 */
    border-left: 3px solid #f5b2b2;/*小説の左の縦線*/
}

#story {
    padding: 1% 1% 0 1%;
    font-size: .9em;/*文字の大きさ*/
    line-height: 185%;
    line-break: strict;/*小説の禁則処理 */
    word-break: normal;/*小説の禁則処理 */
}

/*------------------------------------------------------------
 前項・目次・次項 ページめくりレイアウト
------------------------------------------------------------ */
#page {/*中央にしたい場合、text-align:left;をtext-align:center;にしてください。右にしたい場合はtext-align:right;  */
    padding: 10px 0;
    text-align: left;
    font-size: 1em;
}



/* ********************************************************* */
/* その他レイアウト　linkページ、Galleryページ
/* ********************************************************* */
/*------------------------------------------------------------
 linkページ
------------------------------------------------------------ */
.link li {
    margin: 5px 3px;
    display: inline-block;
}

.link img {
    vertical-align: bottom;
}

/*------------------------------------------------------------
 Galleryページ
------------------------------------------------------------ */
.popup img {
    border: 1px solid #ccc;
}




/* ********************************************************* */
/* 広告サイト利用者専用 FC2と忍者ツールズ　いらなければ完全削除推奨
/* ********************************************************* */







/* ********************************************************* */
/* タブレット用のレイアウト指定 */
/* ********************************************************* */
@media screen and (min-width: 1px) and (max-width:798px) {

/* 文字の大きさ設定　拡大
--------------------------------------------- */
    body {
        font-size: 110%;
    }

/* メールフォーム
--------------------------------------------- */
    textarea {
        width: 75%;
        height: 100px;
    }

    input[type=text] {
        width: 35%;
    }

/* ヘッダーメインサイト名見出し
--------------------------------------------- */
    h1 {
        padding: 0 0 3px 5px;
        margin: -12px 0 0 0;
        position: relative;
        z-index: 1;
        width: 80%;
        line-height: 1.3em;
    }

    header {
        width: 100%;
    }


/* スマホとタブレットメニュー
--------------------------------------------- */
    #menu {/*大画面用のメニュー非表示へ*/
        display: none;
    }

    #menu li {
        padding: 0;
        margin: 0;
    }

    #smart {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
    }

    .tappu_menu {
        display: inline-block;
        float: right;
        width: 100%;
    }

    .tappu_btn {
        position: relative;
        display: block;
        float: right;
        line-height: 1.125em;
        cursor: pointer;
        text-decoration: none;
        border-radius: 4px;
        background: #380039;/*四角いボタンの色*/
        margin: 8px 10px 6px;
        padding: 10px;
        font-size:.9em;
    }

    .tappu_menutxt {
        display: block;
        padding:0 5px 0 0;
        line-height: 13px;
        float: left;
        font-size:.6em;
        color: #FFF;
        font-weight: 700;
    }
    
    .tappu_icon-bar {
        display: block;
        width: 1.125em;
        height: .135em;
        border-radius: 1px;
        background: #fff;/* 3つのバーの色 */
    }
    
    .tappu_icon {
        float: left;
        margin: 0;
    }

    .tappu_no-text {
        margin: 0;
    }

    .tappu_btn .tappu_icon-bar + .tappu_icon-bar {
        margin-top: 3px;
    }

    .tappu_arrow {
        font-size: .8em;
        margin: 0 0 0 .4em;
    }

    .tappu_item {
        cursor: pointer;
    }

    .tappu_row {
        display: block;
        padding: 5px 10px;
    }
 
    .tappu_nav {
        margin: 0;
        padding: 0;
        clear: both;
        font-size: .875em;/*文字の大きさ*/
        background: #380039;/*メニュー背景色*/
        color: #fff;/*メニュー文字の色 リンクがない時*/
        display: block;
    }

    .tappu_nav ul,.tappu_nav li {
        display: block;
    }

    .tappu_nav a {
        display: block;
        color: #fff;/*メニュー文字の色 リンクがある時*/
        padding: 8px 10px;
    }

    .tappu_item a,.tappu_parent-link a {
        display: inline;
        margin: 0;
        padding: 0;
    }

    .tappu_nav,.tappu_nav ul {
        overflow: hidden;
    }

    .tappu_nav ul {
        margin: 0;
        padding: 0;
    }

    .tappu_nav a:hover {
        background: #fff;/*メニュー背景色 マウスを当てた時*/
        color: #392400;/*メニュー文字の色 マウスを当てた時*/
    }

    .tappu_nav ul a {/*メガメニュー背景色*/
        background: #52002a;
    }


/* メイン画像設定
--------------------------------------------- */
    #image img {
        max-height: 100%;
        max-width: 100%;
        border-right: 0px;
        border-left: 0px;
        border-top: 1px solid #523400;
        border-bottom: 1px solid #523400;
        margin: 0;
    }


/* 枠設定と見出し
--------------------------------------------- */
    #box2 {
        border-left: 0;
    }
    
    .kakoi {
        margin: 5px 20px 40px 10px;
        padding: 0 0 0 10px;
    }

    .divide {/* 二分割していたのを一つに */
        display: -webkit-inline;
        display: -ms-inline;
        display: -webkit-inline;
        display: inline;
    }

    .hako {/* 二分割していたのを一つに */
        width: 100%;
    }

    h3 {/*見出し 丸い角を四角に*/
        width: auto;
        margin: 0 auto;
        border-radius: 0;
    }

}








/* ********************************************************* */
/* スマートフォン用のレイアウト指定 */
/* ********************************************************* */
@media screen and (max-width: 480px) {

/* メールフォーム
--------------------------------------------- */
    textarea {
        width: 95%;
        height: 100px;
    }

    input[type=text] {
        width: 55%;
    }

/* 名前変換フォーム
--------------------------------------------- */
    .design textarea,.design input[type=text] {
        display: block;
        margin: 4px auto;
    }

    .design input[type=text] {
        width: 125px;
        margin: 10px auto;
    }

    .design .submit {
        text-align: center;
        display: block;
    }

    .design br {
        display: none;
    }


/* linkのバナーを改行
--------------------------------------------- */
    .link img {
        display: block;
    }
}


/* 広告位置制御
--------------------------------------------- */
body {
    padding: 0!important;
    padding-bottom: 0!important;
}
.fc2ad * {
    position: static!important;
}

