﻿@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: #555;
    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;
}


/* ↓↓ カスタマイズ領域開始 ↓↓
/* ********************************************************* */
/* 共通デザイン　1/4　空白と背景、リンク色、ハイライト色
/* ********************************************************* */
/*------------------------------------------------------------
 ページ下の空白と背景色
------------------------------------------------------------ */
body {
    background: #f5f5f5;/*背景の色*/
    margin: 0 0 15% 0;/*ページ下の空白*/
    position: relative;
}

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

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

a:link img {
    -webkit-transition-duration: 0.3s;/*徐々に変化を与える*/
    transition-duration: 0.3s;/*徐々に変化を与える*/
}

a:hover img {
    opacity: .5;
}


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

::-moz-selection {
    background: #f8cfdf;
    color: #000;
}


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

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

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


/* ********************************************************* */
/* 共通デザイン 3/4　ヘッダー、メニュー、トップ画像レイアウト
/* ********************************************************* */
/*------------------------------------------------------------
 ヘッダー枠とサイト名の装飾
------------------------------------------------------------ */
header {
    height: 80px;
    width: auto;
    background: #fff;/*サイト名がある場所の白い背景*/
}

h1 {
    max-width: 770px;/*サイト名 最大枠幅*/
    margin: 0 auto;
    padding: 30px 10px 10px 0;
    font-size: 1.1em;/*サイト名 文字サイズ*/
}

h1 a:link,h1 a:visited,h1 a:active {
    color: #eb6ea0;/*サイト名 文字色*/
    height: 80px;
}

h1 a:hover {
    color: #ccc;/*サイト名 文字色 マウスを当てた時*/
}


/*------------------------------------------------------------
 メニューレイアウト
------------------------------------------------------------ */
#menu {
    background: #fff;
    width: 17%;
    margin: 10px 0;
    border-radius: 5px;
    float: left;
    line-height: 160%;
    font-size: .875em;
}

#menu li {
    display: block;
    text-align: center;
    padding: 3px 0;
}

#menu li a:link,#menu li a:visited,#menu li a:active,#menu .mega {/* メニューのリンク装飾 マウスが当たっていない時*/
    padding: 5px 0;
    display: block;
    cursor:pointer;
}

#menu .mega:hover{
    color: #eb6ea0;/*メガメニュー用 マウスを当てた時の色 */
}

#menu ul {
    display: none;
}

.tappu_menu {
    display: none;
}


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

.kakoi {/*内容を囲っている白の箱 */
    float: right;
    padding: 10px 8px;
    background: #fff;/*背景色*/
    margin: 10px 0;
    border-radius: 5px;/*箱の角の丸み*/
    width: 82%;/*箱の大きさ*/
}

.naiyou {
    margin: 15px;
    line-height: 180%;
}

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

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


/*------------------------------------------------------------
 トップなどで多用されている見出し
------------------------------------------------------------ */
h3 {
    color: #aaa;/*文字の色*/
    font-size: 1.2em;/*文字の大きさ*/
    line-height: 90%;
    letter-spacing: 5px;
    border-bottom: dashed 0.5px #eb6ea0;
    padding: 0 0 2px 2px;
    margin: 5px 5px 10px 5px;
}

h4{
    color: #aaa;/*文字の色*/
    font-size: 1em;/*文字の大きさ*/
    line-height: 120%;
    letter-spacing: 2px;
    padding: 0;
    margin: 10px 0;
}

h5{
    color: #eb6ea0;/*文字の色*/
    font-size: 1.1em;/*文字の大きさ*/
    line-height: 100%;
    letter-spacing: 2px;
    padding: 0;
    margin: 0 0 10px;
}

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

.date {
    margin: 0 10px 0 5px;
    display: inline-block;
    color: #f5b6cf;/*日付の色 */;
}

/*------------------------------------------------------------
 メイン目次レイアウト
------------------------------------------------------------ */
.more {/* 夢小説の詳細を表示する文字 .8em以上にする場合vertical-align:top;を削除 */
    font-size: .8em;/*文字の大きさ*/
    color: #aaa;/*文字の色*/
    line-height: 80%;
    vertical-align: top;
}

.name {
    color: #555;/*文字の色*/
    font-size: 1.1em;/*文字の大きさ*/
    border-bottom: dotted 0.5px #eb6ea0;
    line-height: 180%;
    letter-spacing: 3px;
    padding: 5px 5px 2px 5px;
    margin: 1px;
}

.cl {
    text-align:center;
}


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

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

/* ヘッダー調整
--------------------------------------------- */
    header {
        height: 60px;
        width: auto;
        background: #fff;/*背景色*/
        padding: 0;
        margin: 0 0 15px 0;
    }

/* スマホとタブレットメニュー
--------------------------------------------- */
    #menu {
        display: none;
    }

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

    .tappu_btn {
        position: relative;
        display: block;
        vertical-align: middle;
        float: right;
        line-height: 1.125em;
        cursor: pointer;
        text-decoration: none;
        border-radius: 4px;
        background: #eb6ea0;/*3本バーの背景色 */
        margin: 8px 3px 6px;
        padding: 10px;
    }

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

    .tappu_icon {
        float: left;
        margin: 3px 0 0 .438em;
    }

    .tappu_icon-bar {
        display: block;
        width: 1.125em;
        height: .125em;
        border-radius: 1px;
        background: #fff;/* 3つのバーの色 */
    }

    .tappu_menu {
        display: inline-block;
        float: right;
        width: 100%;
        font-size: 16px;
        padding: 5px;
    }

    .tappu_menutxt {
        display: block;
        line-height: 13px;
        float: left;
        color: #FFF;
        font-weight: 700;
    }

    .tappu_no-text {
        margin: 0;
    }

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

    .tappu_item {
        cursor: pointer;
    }

    .tappu_nav {
        clear: both;
        font-size: .875em;
        color: #555;
        border-radius: 5px;
        border: 1px solid #ccc;
        background: #fff;
    }

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

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

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

    .tappu_row {
        display: block;
        margin: 2px 5px;
        padding: 5px 10px;
    }

    .tappu_txtnode {
        margin-left: 15px;
    }

    .tappu_nav a {
        display: block;
        margin: 2px 5px;
        padding: 8px 10px;
    }

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

    .tappu_nav a:hover,.tappu_nav .tappu_row:hover {
        border-radius: 6px;/*マウスが当たっている時の背景の角の丸み */
        background: #eb6ea0;/*マウスが当たっている時の背景色 */
        color: #fff;/*マウスが当たっている時の文字の色 */
    }

/* 枠設定と見出し
--------------------------------------------- */
    .kakoi {
        float: none;
        padding: 5px;
        margin: 0 auto 15px auto;
        background: #fff;
        border-radius: 5px;
        width: 92%;
    }

    .divide {
        display: -webkit-inline;
        display: -ms-inline;
        display: -webkit-inline;
        display: inline;
    }

    .hako {
        width: 100%;
    }

    h1 {
        position: relative;
        float: left;
        z-index: 1;
        width: 80%;
        margin: 0 auto;
        padding: 16px 10px 10px 10px;
        font-size: 1.1em;
    }
}


}